joggle 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +20 -0
- data/README +212 -0
- data/Rakefile +120 -0
- data/TODO +36 -0
- data/bin/joggle +6 -0
- data/lib/joggle/Session.vim +1223 -0
- data/lib/joggle/cli/option-parser.rb +139 -0
- data/lib/joggle/cli/runner.rb +47 -0
- data/lib/joggle/commands.rb +163 -0
- data/lib/joggle/config-parser.rb +37 -0
- data/lib/joggle/engine.rb +276 -0
- data/lib/joggle/jabber/client.rb +82 -0
- data/lib/joggle/pablotron/cache.rb +131 -0
- data/lib/joggle/pablotron/observable.rb +104 -0
- data/lib/joggle/runner/pstore.rb +252 -0
- data/lib/joggle/store/pstore/all.rb +26 -0
- data/lib/joggle/store/pstore/cache.rb +65 -0
- data/lib/joggle/store/pstore/message.rb +54 -0
- data/lib/joggle/store/pstore/user.rb +96 -0
- data/lib/joggle/twitter/engine.rb +186 -0
- data/lib/joggle/twitter/fetcher.rb +123 -0
- data/lib/joggle/version.rb +6 -0
- data/setup.rb +1596 -0
- data/test/test_cli.rb +10 -0
- data/test/test_runner.rb +10 -0
- metadata +131 -0
@@ -0,0 +1,1223 @@
|
|
1
|
+
let SessionLoad = 1
|
2
|
+
if &cp | set nocp | endif
|
3
|
+
let s:cpo_save=&cpo
|
4
|
+
set cpo&vim
|
5
|
+
imap <C-Tab> :tabnext
|
6
|
+
imap <C-S-Tab> :tabprevious
|
7
|
+
inoremap <S-Tab> =InsertTabWrapper ("backward")
|
8
|
|
9
|
+
imap <Nul>
|
10
|
+
nmap :tabnew
|
11
|
+
nmap e :new | vimshell bash
|
12
|
+
nmap :vnew | vimshell bash
|
13
|
+
vmap ,S <Plug>VSurround
|
14
|
+
vmap ,s <Plug>Vsurround
|
15
|
+
nmap ,ci :w
|
16
|
+
vmap ," c""<Left>"
|
17
|
+
vmap ,) v`<i(`>a)
|
18
|
+
vmap ,( v`<i(`>a)
|
19
|
+
vmap ,Sws :%s/ /_/g
|
20
|
+
nmap ,Sws :%s/ /_/g
|
21
|
+
map ,u :source ~/.vimrc
|
22
|
+
map ,v :e ~/.vimrc
|
23
|
+
map ,ml :.!markdown-links %
|
24
|
+
vmap ,dr :!tr A-Za-z N-ZA-Mn-za-m
|
25
|
+
map ,E 0/\$
|
26
|
+
nmap :E :e
|
27
|
+
nmap :X :x
|
28
|
+
nmap :wQ :wq
|
29
|
+
nmap :Q :q
|
30
|
+
nmap :W :w
|
31
|
+
vmap [% [%m'gv``
|
32
|
+
vmap ]% ]%m'gv``
|
33
|
+
vnoremap _< :call CommentifyAutomatic(0)
|
34
|
+
vnoremap _> :call CommentifyAutomatic(1)
|
35
|
+
vmap a% [%v]%
|
36
|
+
nmap cs <Plug>Csurround
|
37
|
+
nmap ds <Plug>Dsurround
|
38
|
+
nmap gx <Plug>NetrwBrowseX
|
39
|
+
nmap ySS <Plug>YSsurround
|
40
|
+
nmap ySs <Plug>YSsurround
|
41
|
+
nmap yss <Plug>Yssurround
|
42
|
+
nmap yS <Plug>YSurround
|
43
|
+
nmap ys <Plug>Ysurround
|
44
|
+
nnoremap <silent> <Plug>NetrwBrowseX :call netrw#NetBrowseX(expand("<cWORD>"),0)
|
45
|
+
map <C-Tab> :tabnext
|
46
|
+
map <C-S-Tab> :tabprevious
|
47
|
+
map <F12> :cn
|
48
|
+
map <F11> :cp
|
49
|
+
map <F10> :cl
|
50
|
+
map <F9> :silent grep <cword> %
|
51
|
+
map <F8> :Tlist
|
52
|
+
map <F7> :silent !ctags %:p
|
53
|
+
map <F6> :!edit_commit.sh
|
54
|
+
map <F5> :w!
|
55
|
+
map <F3> :!%:p
|
56
|
+
map <F2> \K
|
57
|
+
imap S <Plug>ISurround
|
58
|
+
imap s <Plug>Isurround
|
59
|
+
inoremap =InsertTabWrapper ("forward")
|
60
|
+
imap <Plug>Isurround
|
61
|
+
imap :tabnew
|
1
62
|
|
63
|
+
cmap ,rcm %s/
|
64
|
+
abbr Xmas Christmas
|
65
|
+
abbr xmas christmas
|
66
|
+
abbr sunday Sunday
|
67
|
+
abbr saturday Saturday
|
68
|
+
abbr friday Friday
|
69
|
+
abbr thursday Thursday
|
70
|
+
abbr wednesday Wednesday
|
71
|
+
abbr tuesday Tuesday
|
72
|
+
abbr monday Monday
|
73
|
+
abbr yuor your
|
74
|
+
abbr yuo you
|
75
|
+
abbr ytou you
|
76
|
+
abbr yeras years
|
77
|
+
abbr yera year
|
78
|
+
abbr wya way
|
79
|
+
abbr wtih with
|
80
|
+
abbr wroking working
|
81
|
+
abbr wrod word
|
82
|
+
abbr wriet write
|
83
|
+
abbr woudl would
|
84
|
+
abbr wokr work
|
85
|
+
abbr wohle whole
|
86
|
+
abbr woh who
|
87
|
+
abbr wnats wants
|
88
|
+
abbr wnated wanted
|
89
|
+
abbr wnat want
|
90
|
+
abbr wiull will
|
91
|
+
abbr withe with
|
92
|
+
abbr windoes windows
|
93
|
+
abbr wiht with
|
94
|
+
abbr wihch which
|
95
|
+
abbr wierd weird
|
96
|
+
abbr wief wife
|
97
|
+
abbr whta what
|
98
|
+
abbr whihc which
|
99
|
+
abbr whic which
|
100
|
+
abbr whcih which
|
101
|
+
abbr wehn when
|
102
|
+
abbr watn want
|
103
|
+
abbr waht what
|
104
|
+
abbr vrey very
|
105
|
+
abbr veyr very
|
106
|
+
abbr useing using
|
107
|
+
abbr tyhe the
|
108
|
+
abbr tyhat that
|
109
|
+
abbr truely truly
|
110
|
+
abbr towrad toward
|
111
|
+
abbr tonihgt tonight
|
112
|
+
abbr tongiht tonight
|
113
|
+
abbr todya today
|
114
|
+
abbr tlaking talking
|
115
|
+
abbr tkaing taking
|
116
|
+
abbr tkaes takes
|
117
|
+
abbr tkae take
|
118
|
+
abbr tjhe the
|
119
|
+
abbr tje the
|
120
|
+
abbr timne time
|
121
|
+
abbr tihs this
|
122
|
+
abbr thta that
|
123
|
+
abbr thsoe those
|
124
|
+
abbr thsi this
|
125
|
+
abbr thnigs things
|
126
|
+
abbr thnig thing
|
127
|
+
abbr thne then
|
128
|
+
abbr thna than
|
129
|
+
abbr thme them
|
130
|
+
abbr thier their
|
131
|
+
abbr thge the
|
132
|
+
abbr thgat that
|
133
|
+
abbr theri their
|
134
|
+
abbr themselfs themselves
|
135
|
+
abbr thansk thanks
|
136
|
+
abbr tghe the
|
137
|
+
abbr tehy they
|
138
|
+
abbr teh the
|
139
|
+
abbr tath that
|
140
|
+
abbr talekd talked
|
141
|
+
abbr taht that
|
142
|
+
abbr tahn than
|
143
|
+
abbr swiming swimming
|
144
|
+
abbr sucess success
|
145
|
+
abbr struggel struggle
|
146
|
+
abbr strentgh strength
|
147
|
+
abbr stpo stop
|
148
|
+
abbr stoyr story
|
149
|
+
abbr stopry story
|
150
|
+
abbr stnad stand
|
151
|
+
abbr statment statement
|
152
|
+
abbr soudns sounds
|
153
|
+
abbr soudn sound
|
154
|
+
abbr sohw show
|
155
|
+
abbr soem some
|
156
|
+
abbr smoe some
|
157
|
+
abbr smae same
|
158
|
+
abbr similiar similar
|
159
|
+
abbr shoudl should
|
160
|
+
abbr shiped shipped
|
161
|
+
abbr shineing shining
|
162
|
+
abbr seperate separate
|
163
|
+
abbr sentance sentence
|
164
|
+
abbr selectoin selection
|
165
|
+
abbr seh she
|
166
|
+
abbr rythm rhythm
|
167
|
+
abbr rwite write
|
168
|
+
abbr religous religious
|
169
|
+
abbr recrod record
|
170
|
+
abbr reconize recognize
|
171
|
+
abbr recomend recommend
|
172
|
+
abbr recieved received
|
173
|
+
abbr recieve receive
|
174
|
+
abbr receieve receive
|
175
|
+
abbr reccommend recommend
|
176
|
+
abbr reccomend recommend
|
177
|
+
abbr questoin question
|
178
|
+
abbr quater quarter
|
179
|
+
abbr pwoer power
|
180
|
+
abbr puting putting
|
181
|
+
abbr protoge protege
|
182
|
+
abbr probelm problem
|
183
|
+
abbr porblem problem
|
184
|
+
abbr poeple people
|
185
|
+
abbr pleasent pleasant
|
186
|
+
abbr perhpas perhaps
|
187
|
+
abbr perhasp perhaps
|
188
|
+
abbr peopel people
|
189
|
+
abbr owrk work
|
190
|
+
abbr otu out
|
191
|
+
abbr otehr other
|
192
|
+
abbr orginized organized
|
193
|
+
abbr opperation operation
|
194
|
+
abbr optoins options
|
195
|
+
abbr optoin option
|
196
|
+
abbr onyl only
|
197
|
+
abbr omre more
|
198
|
+
abbr ohter other
|
199
|
+
abbr oging going
|
200
|
+
abbr ocur occur
|
201
|
+
abbr occurrance occurrence
|
202
|
+
abbr occurence occurrence
|
203
|
+
abbr occassion occasion
|
204
|
+
abbr ocasion occasion
|
205
|
+
abbr nwo now
|
206
|
+
abbr nwe new
|
207
|
+
abbr nkow know
|
208
|
+
abbr necesary necessary
|
209
|
+
abbr neccessary necessary
|
210
|
+
abbr myu my
|
211
|
+
abbr mysefl myself
|
212
|
+
abbr mroe more
|
213
|
+
abbr moeny money
|
214
|
+
abbr mkaing making
|
215
|
+
abbr mkaes makes
|
216
|
+
abbr mkae make
|
217
|
+
abbr makeing making
|
218
|
+
abbr lonly lonely
|
219
|
+
abbr loev love
|
220
|
+
abbr liveing living
|
221
|
+
abbr liuke like
|
222
|
+
abbr littel little
|
223
|
+
abbr likly likely
|
224
|
+
abbr liev live
|
225
|
+
abbr liekd liked
|
226
|
+
abbr liek like
|
227
|
+
abbr librery library
|
228
|
+
abbr librarry library
|
229
|
+
abbr libary library
|
230
|
+
abbr levle level
|
231
|
+
abbr konws knows
|
232
|
+
abbr konw know
|
233
|
+
abbr knwos knows
|
234
|
+
abbr knwo know
|
235
|
+
abbr jsut just
|
236
|
+
abbr iwth with
|
237
|
+
abbr iwll will
|
238
|
+
abbr inthe in the
|
239
|
+
abbr insted intead
|
240
|
+
abbr indecate indicate
|
241
|
+
abbr immediatly immediately
|
242
|
+
abbr ihs his
|
243
|
+
abbr idaes ideas
|
244
|
+
abbr idae idea
|
245
|
+
abbr hvaing having
|
246
|
+
abbr hvae have
|
247
|
+
abbr htis this
|
248
|
+
abbr htink think
|
249
|
+
abbr hting thing
|
250
|
+
abbr htey they
|
251
|
+
abbr htere there
|
252
|
+
abbr hte the
|
253
|
+
abbr hsi his
|
254
|
+
abbr hsa has
|
255
|
+
abbr hismelf himself
|
256
|
+
abbr hge he
|
257
|
+
abbr herat heart
|
258
|
+
abbr helpfull helpful
|
259
|
+
abbr hda had
|
260
|
+
abbr haveing having
|
261
|
+
abbr happend happened
|
262
|
+
abbr haev have
|
263
|
+
abbr grwo grow
|
264
|
+
abbr gruop group
|
265
|
+
abbr govenment government
|
266
|
+
abbr gonig going
|
267
|
+
abbr goign going
|
268
|
+
abbr giveing giving
|
269
|
+
abbr geting getting
|
270
|
+
abbr gerat great
|
271
|
+
abbr fwe few
|
272
|
+
abbr frmo from
|
273
|
+
abbr freind friend
|
274
|
+
abbr foward forward
|
275
|
+
abbr foudn found
|
276
|
+
abbr fro for
|
277
|
+
abbr foriegn foreign
|
278
|
+
abbr follwoing following
|
279
|
+
abbr follwo follow
|
280
|
+
abbr firts first
|
281
|
+
abbr fidn find
|
282
|
+
abbr fianlly finally
|
283
|
+
abbr feild field
|
284
|
+
abbr familar familiar
|
285
|
+
abbr eyt yet
|
286
|
+
abbr excitment excitement
|
287
|
+
abbr esle else
|
288
|
+
abbr equippment equipment
|
289
|
+
abbr embarass embarrass
|
290
|
+
abbr ehr her
|
291
|
+
abbr drnik drink
|
292
|
+
abbr driveing driving
|
293
|
+
abbr donig doing
|
294
|
+
abbr doller dollars
|
295
|
+
abbr doign doing
|
296
|
+
abbr doese does
|
297
|
+
abbr disatisfied dissatisfied
|
298
|
+
abbr diffrent different
|
299
|
+
abbr differnt different
|
300
|
+
abbr differant different
|
301
|
+
abbr developement development
|
302
|
+
abbr develope develop
|
303
|
+
abbr definately definitely
|
304
|
+
abbr danceing dancing
|
305
|
+
abbr cxan can
|
306
|
+
abbr cpoy copy
|
307
|
+
abbr coudl could
|
308
|
+
abbr cotten cotton
|
309
|
+
abbr conected connected
|
310
|
+
abbr comunity community
|
311
|
+
abbr comunicate communicate
|
312
|
+
abbr completly completely
|
313
|
+
abbr compleated completed
|
314
|
+
abbr compair compare
|
315
|
+
abbr committy committee
|
316
|
+
abbr committe committee
|
317
|
+
abbr commitee committee
|
318
|
+
abbr comittee committee
|
319
|
+
abbr comapny company
|
320
|
+
abbr comany company
|
321
|
+
abbr colection collection
|
322
|
+
abbr cna can
|
323
|
+
abbr claerly clearly
|
324
|
+
abbr claer clear
|
325
|
+
abbr circut circuit
|
326
|
+
abbr cheif chief
|
327
|
+
abbr charector character
|
328
|
+
abbr charecter character
|
329
|
+
abbr charachter character
|
330
|
+
abbr changeing changing
|
331
|
+
abbr bve be
|
332
|
+
abbr boxs boxes
|
333
|
+
abbr beleive believe
|
334
|
+
abbr begining beginning
|
335
|
+
abbr befoer before
|
336
|
+
abbr becuse because
|
337
|
+
abbr becuase because
|
338
|
+
abbr becomeing becoming
|
339
|
+
abbr becasue because
|
340
|
+
abbr beacuse because
|
341
|
+
abbr bcak back
|
342
|
+
abbr baout about
|
343
|
+
abbr balence balance
|
344
|
+
abbr bakc back
|
345
|
+
abbr awya away
|
346
|
+
abbr audiance audience
|
347
|
+
abbr audeince audience
|
348
|
+
abbr artical article
|
349
|
+
abbr aplyed applied
|
350
|
+
abbr appeares appears
|
351
|
+
abbr andthe and the
|
352
|
+
abbr anbd and
|
353
|
+
abbr amke make
|
354
|
+
abbr alwasy always
|
355
|
+
abbr alreayd already
|
356
|
+
abbr alot a lot
|
357
|
+
abbr almsot almost
|
358
|
+
abbr allready already
|
359
|
+
abbr ahve have
|
360
|
+
abbr ahppen happen
|
361
|
+
abbr agian again
|
362
|
+
abbr adn and
|
363
|
+
abbr acomodate accommodate
|
364
|
+
abbr acommodate accommodate
|
365
|
+
abbr acn can
|
366
|
+
abbr acheiving achieving
|
367
|
+
abbr acheive achieve
|
368
|
+
abbr accomodate accommodate
|
369
|
+
abbr accesories accessories
|
370
|
+
iabbr _cvs * =strftime("%a %b %d %T %Y")
|
371
|
+
iabbr _ts =strftime("%Y-%m-%d")
|
372
|
+
iabbr _w3c =strftime("%Y-%m-%dT%H:%M:%SZ")
|
373
|
+
iabbr _date =strftime("%a %b %d %T %Y")
|
374
|
+
iabbr _time =strftime("%H:%M")
|
375
|
+
abbr _full Paul Duncan <pabs@pablotron.org>
|
376
|
+
abbr _me Paul Duncan
|
377
|
+
abbr _web http://pablotron.org/
|
378
|
+
abbr _mail pabs@pablotron.org
|
379
|
+
abbr _email pabs@pablotron.org
|
380
|
+
let &cpo=s:cpo_save
|
381
|
+
unlet s:cpo_save
|
382
|
+
set background=dark
|
383
|
+
set backspace=2
|
384
|
+
set complete=.,w,b,u,t,i,k
|
385
|
+
set dictionary=/usr/share/dict/words
|
386
|
+
set expandtab
|
387
|
+
set history=50
|
388
|
+
set ignorecase
|
389
|
+
set laststatus=2
|
390
|
+
set mouse=a
|
391
|
+
set paste
|
392
|
+
set pastetoggle=<F1>
|
393
|
+
set printoptions=paper:a5
|
394
|
+
set runtimepath=~/.vim,/var/lib/vim/addons,/usr/share/vim/addons,/usr/share/vim/vimfiles,/usr/share/vim/vim71,/usr/share/vim/vimfiles/after,/usr/share/vim/addons/after,/var/lib/vim/addons/after,~/.vim/after
|
395
|
+
set shiftwidth=2
|
396
|
+
set showcmd
|
397
|
+
set smartcase
|
398
|
+
set smartindent
|
399
|
+
set smarttab
|
400
|
+
set nostartofline
|
401
|
+
set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc
|
402
|
+
set tabstop=2
|
403
|
+
set viminfo='20,\"50
|
404
|
+
let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0
|
405
|
+
let v:this_session=expand("<sfile>:p")
|
406
|
+
silent only
|
407
|
+
cd ~/hg/joggle/lib/joggle
|
408
|
+
if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''
|
409
|
+
let s:wipebuf = bufnr('%')
|
410
|
+
endif
|
411
|
+
set shortmess=aoO
|
412
|
+
badd +1 ~/hg/jitter/lib/jitter/socket-observable.rb
|
413
|
+
badd +1 ~/hg/jitter/lib/jitter/runner.rb
|
414
|
+
badd +1 ~/hg/jitter/lib/jitter/monitor/socket.rb
|
415
|
+
badd +37 ~/hg/jitter/lib/jitter/monitor/jabber.rb
|
416
|
+
badd +23 ~/hg/jitter/lib/jitter/monitor/message.rb
|
417
|
+
badd +54 ~/hg/jitter/lib/jitter/monitor/commands.rb
|
418
|
+
badd +24 ~/hg/jitter/lib/jitter/tweeter.rb
|
419
|
+
badd +102 ~/hg/jitter/lib/pablotron/cache.rb
|
420
|
+
badd +61 ~/hg/jitter/lib/pablotron/observable.rb
|
421
|
+
badd +1 ~/twitter.json
|
422
|
+
badd +12 ~/hg/jitter/lib/jitter/fetcher.rb
|
423
|
+
badd +1 store/cache/pstore.rb
|
424
|
+
badd +1 store/message/pstore.rb
|
425
|
+
badd +18 store/user/pstore.rb
|
426
|
+
badd +1 ~/hg/jitter/lib/jitter/engine.rb
|
427
|
+
badd +20 ~/hg/jitter/lib/jitter/store/pstore/cache.rb
|
428
|
+
badd +31 ~/hg/jitter/lib/jitter/store/pstore/message.rb
|
429
|
+
badd +1 ~/hg/jitter/lib/jitter/store/pstore/user.rb
|
430
|
+
badd +16 ~/hg/jitter/lib/jitter/store/pstore/all.rb
|
431
|
+
badd +21 ~/hg/jitter/lib/jitter/twitter/fetcher.rb
|
432
|
+
badd +91 ~/hg/jitter/lib/jitter/twitter/engine.rb
|
433
|
+
badd +69 ~/hg/jitter/lib/jitter/commands.rb
|
434
|
+
badd +8 ~/hg/jitter/test/test_runner.rb
|
435
|
+
badd +1 ~/hg/jitter/lib/jitter.rb
|
436
|
+
badd +1 ~/hg/jitter/lib/jitter/version.rb
|
437
|
+
badd +17 ~/hg/jitter/lib/jitter/runner/pstore.rb
|
438
|
+
badd +25 ~/hg/jitter/lib/jitter/jabber/client.rb
|
439
|
+
badd +8 /usr/lib/ruby/1.8/xmpp4r/rexmladdons.rb
|
440
|
+
badd +1 /thread
|
441
|
+
badd +1 config-parser.rb
|
442
|
+
badd +90 ~/hg/jitter/lib/joggle/runner/pstore.rb
|
443
|
+
badd +25 ~/hg/jitter/lib/joggle/twitter/fetcher.rb
|
444
|
+
badd +9 ~/hg/jitter/lib/joggle/store/pstore/cache.rb
|
445
|
+
badd +48 ~/hg/jitter/lib/joggle/monitor/message.rb
|
446
|
+
badd +13 ~/hg/joggle/TODO
|
447
|
+
badd +163 commands.rb
|
448
|
+
badd +102 engine.rb
|
449
|
+
badd +181 twitter/engine.rb
|
450
|
+
badd +71 jabber/client.rb
|
451
|
+
badd +5 ~/hg/joggle/bin/joggle
|
452
|
+
badd +30 cli/runner.rb
|
453
|
+
badd +69 cli/option-parser.rb
|
454
|
+
badd +26 store/pstore/all.rb
|
455
|
+
badd +9 store/pstore/message.rb
|
456
|
+
badd +85 store/pstore/user.rb
|
457
|
+
badd +4 version.rb
|
458
|
+
badd +209 runner/pstore.rb
|
459
|
+
badd +7 store/pstore/cache.rb
|
460
|
+
badd +95 twitter/fetcher.rb
|
461
|
+
badd +3 ../../test/test_runner.rb
|
462
|
+
badd +9 ../pablotron/observable.rb
|
463
|
+
badd +10 ../../test/test_cli.rb
|
464
|
+
badd +0 ../../README
|
465
|
+
badd +13 ../../Rakefile
|
466
|
+
badd +2 ~/.joggle/joggle.cfg
|
467
|
+
badd +44 ../../technorati.gemspec
|
468
|
+
badd +47 ~/hg/ic/src/cmd.c
|
469
|
+
args ~/hg/jitter/lib/jitter/socket-observable.rb
|
470
|
+
edit ~/hg/joggle/TODO
|
471
|
+
set splitbelow splitright
|
472
|
+
wincmd _ | wincmd |
|
473
|
+
vsplit
|
474
|
+
wincmd _ | wincmd |
|
475
|
+
vsplit
|
476
|
+
2wincmd h
|
477
|
+
wincmd _ | wincmd |
|
478
|
+
split
|
479
|
+
1wincmd k
|
480
|
+
wincmd w
|
481
|
+
wincmd w
|
482
|
+
wincmd _ | wincmd |
|
483
|
+
split
|
484
|
+
1wincmd k
|
485
|
+
wincmd w
|
486
|
+
wincmd w
|
487
|
+
wincmd _ | wincmd |
|
488
|
+
split
|
489
|
+
wincmd _ | wincmd |
|
490
|
+
split
|
491
|
+
2wincmd k
|
492
|
+
wincmd w
|
493
|
+
wincmd w
|
494
|
+
set nosplitbelow
|
495
|
+
set nosplitright
|
496
|
+
wincmd t
|
497
|
+
set winheight=1 winwidth=1
|
498
|
+
exe '1resize ' . ((&lines * 76 + 40) / 80)
|
499
|
+
exe 'vert 1resize ' . ((&columns * 92 + 139) / 278)
|
500
|
+
exe '2resize ' . ((&lines * 1 + 40) / 80)
|
501
|
+
exe 'vert 2resize ' . ((&columns * 92 + 139) / 278)
|
502
|
+
exe '3resize ' . ((&lines * 38 + 40) / 80)
|
503
|
+
exe 'vert 3resize ' . ((&columns * 92 + 139) / 278)
|
504
|
+
exe '4resize ' . ((&lines * 39 + 40) / 80)
|
505
|
+
exe 'vert 4resize ' . ((&columns * 92 + 139) / 278)
|
506
|
+
exe '5resize ' . ((&lines * 1 + 40) / 80)
|
507
|
+
exe 'vert 5resize ' . ((&columns * 92 + 139) / 278)
|
508
|
+
exe '6resize ' . ((&lines * 74 + 40) / 80)
|
509
|
+
exe 'vert 6resize ' . ((&columns * 92 + 139) / 278)
|
510
|
+
exe '7resize ' . ((&lines * 1 + 40) / 80)
|
511
|
+
exe 'vert 7resize ' . ((&columns * 92 + 139) / 278)
|
512
|
+
argglobal
|
513
|
+
setlocal noautoindent
|
514
|
+
setlocal autoread
|
515
|
+
setlocal balloonexpr=
|
516
|
+
setlocal nobinary
|
517
|
+
setlocal bufhidden=
|
518
|
+
setlocal buflisted
|
519
|
+
setlocal buftype=
|
520
|
+
setlocal nocindent
|
521
|
+
setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
|
522
|
+
setlocal cinoptions=
|
523
|
+
setlocal cinwords=if,else,while,do,for,switch
|
524
|
+
setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-
|
525
|
+
setlocal commentstring=/*%s*/
|
526
|
+
setlocal complete=.,w,b,u,t,i,k
|
527
|
+
setlocal completefunc=
|
528
|
+
setlocal nocopyindent
|
529
|
+
setlocal nocursorcolumn
|
530
|
+
setlocal nocursorline
|
531
|
+
setlocal define=
|
532
|
+
setlocal dictionary=
|
533
|
+
setlocal nodiff
|
534
|
+
setlocal equalprg=
|
535
|
+
setlocal errorformat=
|
536
|
+
setlocal expandtab
|
537
|
+
if &filetype != ''
|
538
|
+
setlocal filetype=
|
539
|
+
endif
|
540
|
+
setlocal foldcolumn=0
|
541
|
+
setlocal foldenable
|
542
|
+
setlocal foldexpr=0
|
543
|
+
setlocal foldignore=#
|
544
|
+
setlocal foldlevel=0
|
545
|
+
setlocal foldmarker={{{,}}}
|
546
|
+
setlocal foldmethod=manual
|
547
|
+
setlocal foldminlines=1
|
548
|
+
setlocal foldnestmax=20
|
549
|
+
setlocal foldtext=foldtext()
|
550
|
+
setlocal formatexpr=
|
551
|
+
setlocal formatoptions=tcq
|
552
|
+
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
|
553
|
+
setlocal grepprg=
|
554
|
+
setlocal iminsert=2
|
555
|
+
setlocal imsearch=2
|
556
|
+
setlocal include=
|
557
|
+
setlocal includeexpr=
|
558
|
+
setlocal indentexpr=
|
559
|
+
setlocal indentkeys=0{,0},:,0#,!^F,o,O,e
|
560
|
+
setlocal noinfercase
|
561
|
+
setlocal iskeyword=@,48-57,_,192-255
|
562
|
+
setlocal keywordprg=
|
563
|
+
setlocal nolinebreak
|
564
|
+
setlocal nolisp
|
565
|
+
setlocal nolist
|
566
|
+
setlocal makeprg=
|
567
|
+
setlocal matchpairs=(:),{:},[:]
|
568
|
+
setlocal modeline
|
569
|
+
setlocal modifiable
|
570
|
+
setlocal nrformats=octal,hex
|
571
|
+
setlocal nonumber
|
572
|
+
setlocal numberwidth=4
|
573
|
+
setlocal omnifunc=
|
574
|
+
setlocal path=
|
575
|
+
setlocal nopreserveindent
|
576
|
+
setlocal nopreviewwindow
|
577
|
+
setlocal quoteescape=\\
|
578
|
+
setlocal noreadonly
|
579
|
+
setlocal noscrollbind
|
580
|
+
setlocal shiftwidth=2
|
581
|
+
setlocal noshortname
|
582
|
+
setlocal smartindent
|
583
|
+
setlocal softtabstop=0
|
584
|
+
setlocal nospell
|
585
|
+
setlocal spellcapcheck=[.?!]\\_[\\])'\"\ \ ]\\+
|
586
|
+
setlocal spellfile=
|
587
|
+
setlocal spelllang=en
|
588
|
+
setlocal statusline=
|
589
|
+
setlocal suffixesadd=
|
590
|
+
setlocal swapfile
|
591
|
+
setlocal synmaxcol=3000
|
592
|
+
if &syntax != ''
|
593
|
+
setlocal syntax=
|
594
|
+
endif
|
595
|
+
setlocal tabstop=2
|
596
|
+
setlocal tags=
|
597
|
+
setlocal textwidth=0
|
598
|
+
setlocal thesaurus=
|
599
|
+
setlocal nowinfixheight
|
600
|
+
setlocal nowinfixwidth
|
601
|
+
setlocal wrap
|
602
|
+
setlocal wrapmargin=0
|
603
|
+
silent! normal! zE
|
604
|
+
let s:l = 31 - ((30 * winheight(0) + 38) / 76)
|
605
|
+
if s:l < 1 | let s:l = 1 | endif
|
606
|
+
exe s:l
|
607
|
+
normal! zt
|
608
|
+
31
|
609
|
+
normal! 0
|
610
|
+
wincmd w
|
611
|
+
argglobal
|
612
|
+
edit ../../README
|
613
|
+
setlocal noautoindent
|
614
|
+
setlocal autoread
|
615
|
+
setlocal balloonexpr=
|
616
|
+
setlocal nobinary
|
617
|
+
setlocal bufhidden=
|
618
|
+
setlocal buflisted
|
619
|
+
setlocal buftype=
|
620
|
+
setlocal nocindent
|
621
|
+
setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
|
622
|
+
setlocal cinoptions=
|
623
|
+
setlocal cinwords=if,else,while,do,for,switch
|
624
|
+
setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-
|
625
|
+
setlocal commentstring=/*%s*/
|
626
|
+
setlocal complete=.,w,b,u,t,i,k
|
627
|
+
setlocal completefunc=
|
628
|
+
setlocal nocopyindent
|
629
|
+
setlocal nocursorcolumn
|
630
|
+
setlocal nocursorline
|
631
|
+
setlocal define=
|
632
|
+
setlocal dictionary=
|
633
|
+
setlocal nodiff
|
634
|
+
setlocal equalprg=
|
635
|
+
setlocal errorformat=
|
636
|
+
setlocal expandtab
|
637
|
+
if &filetype != ''
|
638
|
+
setlocal filetype=
|
639
|
+
endif
|
640
|
+
setlocal foldcolumn=0
|
641
|
+
setlocal foldenable
|
642
|
+
setlocal foldexpr=0
|
643
|
+
setlocal foldignore=#
|
644
|
+
setlocal foldlevel=0
|
645
|
+
setlocal foldmarker={{{,}}}
|
646
|
+
setlocal foldmethod=manual
|
647
|
+
setlocal foldminlines=1
|
648
|
+
setlocal foldnestmax=20
|
649
|
+
setlocal foldtext=foldtext()
|
650
|
+
setlocal formatexpr=
|
651
|
+
setlocal formatoptions=tcq
|
652
|
+
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
|
653
|
+
setlocal grepprg=
|
654
|
+
setlocal iminsert=2
|
655
|
+
setlocal imsearch=2
|
656
|
+
setlocal include=
|
657
|
+
setlocal includeexpr=
|
658
|
+
setlocal indentexpr=
|
659
|
+
setlocal indentkeys=0{,0},:,0#,!^F,o,O,e
|
660
|
+
setlocal noinfercase
|
661
|
+
setlocal iskeyword=@,48-57,_,192-255
|
662
|
+
setlocal keywordprg=
|
663
|
+
setlocal nolinebreak
|
664
|
+
setlocal nolisp
|
665
|
+
setlocal nolist
|
666
|
+
setlocal makeprg=
|
667
|
+
setlocal matchpairs=(:),{:},[:]
|
668
|
+
setlocal modeline
|
669
|
+
setlocal modifiable
|
670
|
+
setlocal nrformats=octal,hex
|
671
|
+
setlocal nonumber
|
672
|
+
setlocal numberwidth=4
|
673
|
+
setlocal omnifunc=
|
674
|
+
setlocal path=
|
675
|
+
setlocal nopreserveindent
|
676
|
+
setlocal nopreviewwindow
|
677
|
+
setlocal quoteescape=\\
|
678
|
+
setlocal noreadonly
|
679
|
+
setlocal noscrollbind
|
680
|
+
setlocal shiftwidth=2
|
681
|
+
setlocal noshortname
|
682
|
+
setlocal smartindent
|
683
|
+
setlocal softtabstop=0
|
684
|
+
setlocal nospell
|
685
|
+
setlocal spellcapcheck=[.?!]\\_[\\])'\"\ \ ]\\+
|
686
|
+
setlocal spellfile=
|
687
|
+
setlocal spelllang=en
|
688
|
+
setlocal statusline=
|
689
|
+
setlocal suffixesadd=
|
690
|
+
setlocal swapfile
|
691
|
+
setlocal synmaxcol=3000
|
692
|
+
if &syntax != ''
|
693
|
+
setlocal syntax=
|
694
|
+
endif
|
695
|
+
setlocal tabstop=2
|
696
|
+
setlocal tags=
|
697
|
+
setlocal textwidth=0
|
698
|
+
setlocal thesaurus=
|
699
|
+
setlocal nowinfixheight
|
700
|
+
setlocal nowinfixwidth
|
701
|
+
setlocal wrap
|
702
|
+
setlocal wrapmargin=0
|
703
|
+
silent! normal! zE
|
704
|
+
let s:l = 197 - ((0 * winheight(0) + 0) / 1)
|
705
|
+
if s:l < 1 | let s:l = 1 | endif
|
706
|
+
exe s:l
|
707
|
+
normal! zt
|
708
|
+
197
|
709
|
+
normal! 016l
|
710
|
+
wincmd w
|
711
|
+
argglobal
|
712
|
+
edit runner/pstore.rb
|
713
|
+
setlocal noautoindent
|
714
|
+
setlocal autoread
|
715
|
+
setlocal balloonexpr=RubyBalloonexpr()
|
716
|
+
setlocal nobinary
|
717
|
+
setlocal bufhidden=
|
718
|
+
setlocal buflisted
|
719
|
+
setlocal buftype=
|
720
|
+
setlocal nocindent
|
721
|
+
setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
|
722
|
+
setlocal cinoptions=
|
723
|
+
setlocal cinwords=if,else,while,do,for,switch
|
724
|
+
setlocal comments=:#
|
725
|
+
setlocal commentstring=#\ %s
|
726
|
+
setlocal complete=.,w,b,u,t,i,k
|
727
|
+
setlocal completefunc=
|
728
|
+
setlocal nocopyindent
|
729
|
+
setlocal nocursorcolumn
|
730
|
+
setlocal nocursorline
|
731
|
+
setlocal define=^\\s*#\\s*define
|
732
|
+
setlocal dictionary=
|
733
|
+
setlocal nodiff
|
734
|
+
setlocal equalprg=
|
735
|
+
setlocal errorformat=
|
736
|
+
setlocal expandtab
|
737
|
+
if &filetype != 'ruby'
|
738
|
+
setlocal filetype=ruby
|
739
|
+
endif
|
740
|
+
setlocal foldcolumn=0
|
741
|
+
setlocal foldenable
|
742
|
+
setlocal foldexpr=0
|
743
|
+
setlocal foldignore=#
|
744
|
+
setlocal foldlevel=0
|
745
|
+
setlocal foldmarker={{{,}}}
|
746
|
+
setlocal foldmethod=manual
|
747
|
+
setlocal foldminlines=1
|
748
|
+
setlocal foldnestmax=20
|
749
|
+
setlocal foldtext=foldtext()
|
750
|
+
setlocal formatexpr=
|
751
|
+
setlocal formatoptions=croql
|
752
|
+
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
|
753
|
+
setlocal grepprg=
|
754
|
+
setlocal iminsert=2
|
755
|
+
setlocal imsearch=2
|
756
|
+
setlocal include=^\\s*\\<\\(load\\|w*require\\)\\>
|
757
|
+
setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.rb','')
|
758
|
+
setlocal indentexpr=
|
759
|
+
setlocal indentkeys=0{,0},:,0#,!^F,o,O,e
|
760
|
+
setlocal noinfercase
|
761
|
+
setlocal iskeyword=@,48-57,_,192-255
|
762
|
+
setlocal keywordprg=ri
|
763
|
+
setlocal nolinebreak
|
764
|
+
setlocal nolisp
|
765
|
+
setlocal nolist
|
766
|
+
setlocal makeprg=
|
767
|
+
setlocal matchpairs=(:),{:},[:]
|
768
|
+
setlocal modeline
|
769
|
+
setlocal modifiable
|
770
|
+
setlocal nrformats=octal,hex
|
771
|
+
setlocal nonumber
|
772
|
+
setlocal numberwidth=4
|
773
|
+
setlocal omnifunc=rubycomplete#Complete
|
774
|
+
setlocal path=.,/usr/local/lib/site_ruby/1.8,/usr/local/lib/site_ruby/1.8/i486-linux,/usr/local/lib/site_ruby/1.8/i386-linux,/usr/local/lib/site_ruby,/usr/lib/ruby/vendor_ruby/1.8,/usr/lib/ruby/vendor_ruby/1.8/i486-linux,/usr/lib/ruby/vendor_ruby,/usr/lib/ruby/1.8,/usr/lib/ruby/1.8/i486-linux,/usr/lib/ruby/1.8/i386-linux,,/usr/lib/ruby/gems/1.8/gems/BlueCloth-1.0.0-/lib,/usr/lib/ruby/gems/1.8/gems/BlueCloth-1.0.0/lib,/usr/lib/ruby/gems/1.8/gems/FaceToFace-0.1.0/lib/,/usr/lib/ruby/gems/1.8/gems/Imlib2-Ruby-0.5.0/lib,/usr/lib/ruby/gems/1.8/gems/Imlib2-Ruby-0.5.1/lib,/usr/lib/ruby/gems/1.8/gems/MB-Ruby-0.3.0/lib,/usr/lib/ruby/gems/1.8/gems/Malicious-Gem-0.1.0/.,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.4.1/lib,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.4.1/test,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.6.3/lib,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.6.3/test,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.7.0/lib,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.7.0/test,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.7.1/lib,/usr/lib/ruby/gems/1.8/gems/Par
|
775
|
+
setlocal nopreserveindent
|
776
|
+
setlocal nopreviewwindow
|
777
|
+
setlocal quoteescape=\\
|
778
|
+
setlocal noreadonly
|
779
|
+
setlocal noscrollbind
|
780
|
+
setlocal shiftwidth=2
|
781
|
+
setlocal noshortname
|
782
|
+
setlocal smartindent
|
783
|
+
setlocal softtabstop=0
|
784
|
+
setlocal nospell
|
785
|
+
setlocal spellcapcheck=[.?!]\\_[\\])'\"\ \ ]\\+
|
786
|
+
setlocal spellfile=
|
787
|
+
setlocal spelllang=en
|
788
|
+
setlocal statusline=
|
789
|
+
setlocal suffixesadd=.rb
|
790
|
+
setlocal swapfile
|
791
|
+
setlocal synmaxcol=3000
|
792
|
+
if &syntax != 'ruby'
|
793
|
+
setlocal syntax=ruby
|
794
|
+
endif
|
795
|
+
setlocal tabstop=2
|
796
|
+
setlocal tags=
|
797
|
+
setlocal textwidth=0
|
798
|
+
setlocal thesaurus=
|
799
|
+
setlocal nowinfixheight
|
800
|
+
setlocal nowinfixwidth
|
801
|
+
setlocal wrap
|
802
|
+
setlocal wrapmargin=0
|
803
|
+
silent! normal! zE
|
804
|
+
let s:l = 216 - ((22 * winheight(0) + 19) / 38)
|
805
|
+
if s:l < 1 | let s:l = 1 | endif
|
806
|
+
exe s:l
|
807
|
+
normal! zt
|
808
|
+
216
|
809
|
+
normal! 013l
|
810
|
+
wincmd w
|
811
|
+
argglobal
|
812
|
+
edit engine.rb
|
813
|
+
setlocal noautoindent
|
814
|
+
setlocal autoread
|
815
|
+
setlocal balloonexpr=RubyBalloonexpr()
|
816
|
+
setlocal nobinary
|
817
|
+
setlocal bufhidden=
|
818
|
+
setlocal buflisted
|
819
|
+
setlocal buftype=
|
820
|
+
setlocal nocindent
|
821
|
+
setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
|
822
|
+
setlocal cinoptions=
|
823
|
+
setlocal cinwords=if,else,while,do,for,switch
|
824
|
+
setlocal comments=:#
|
825
|
+
setlocal commentstring=#\ %s
|
826
|
+
setlocal complete=.,w,b,u,t,i,k
|
827
|
+
setlocal completefunc=
|
828
|
+
setlocal nocopyindent
|
829
|
+
setlocal nocursorcolumn
|
830
|
+
setlocal nocursorline
|
831
|
+
setlocal define=^\\s*#\\s*define
|
832
|
+
setlocal dictionary=
|
833
|
+
setlocal nodiff
|
834
|
+
setlocal equalprg=
|
835
|
+
setlocal errorformat=
|
836
|
+
setlocal expandtab
|
837
|
+
if &filetype != 'ruby'
|
838
|
+
setlocal filetype=ruby
|
839
|
+
endif
|
840
|
+
setlocal foldcolumn=0
|
841
|
+
setlocal foldenable
|
842
|
+
setlocal foldexpr=0
|
843
|
+
setlocal foldignore=#
|
844
|
+
setlocal foldlevel=0
|
845
|
+
setlocal foldmarker={{{,}}}
|
846
|
+
setlocal foldmethod=manual
|
847
|
+
setlocal foldminlines=1
|
848
|
+
setlocal foldnestmax=20
|
849
|
+
setlocal foldtext=foldtext()
|
850
|
+
setlocal formatexpr=
|
851
|
+
setlocal formatoptions=croql
|
852
|
+
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
|
853
|
+
setlocal grepprg=
|
854
|
+
setlocal iminsert=2
|
855
|
+
setlocal imsearch=2
|
856
|
+
setlocal include=^\\s*\\<\\(load\\|w*require\\)\\>
|
857
|
+
setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.rb','')
|
858
|
+
setlocal indentexpr=
|
859
|
+
setlocal indentkeys=0{,0},:,0#,!^F,o,O,e
|
860
|
+
setlocal noinfercase
|
861
|
+
setlocal iskeyword=@,48-57,_,192-255
|
862
|
+
setlocal keywordprg=ri
|
863
|
+
setlocal nolinebreak
|
864
|
+
setlocal nolisp
|
865
|
+
setlocal nolist
|
866
|
+
setlocal makeprg=
|
867
|
+
setlocal matchpairs=(:),{:},[:]
|
868
|
+
setlocal modeline
|
869
|
+
setlocal modifiable
|
870
|
+
setlocal nrformats=octal,hex
|
871
|
+
setlocal nonumber
|
872
|
+
setlocal numberwidth=4
|
873
|
+
setlocal omnifunc=rubycomplete#Complete
|
874
|
+
setlocal path=.,/usr/local/lib/site_ruby/1.8,/usr/local/lib/site_ruby/1.8/i486-linux,/usr/local/lib/site_ruby/1.8/i386-linux,/usr/local/lib/site_ruby,/usr/lib/ruby/vendor_ruby/1.8,/usr/lib/ruby/vendor_ruby/1.8/i486-linux,/usr/lib/ruby/vendor_ruby,/usr/lib/ruby/1.8,/usr/lib/ruby/1.8/i486-linux,/usr/lib/ruby/1.8/i386-linux,,/usr/lib/ruby/gems/1.8/gems/BlueCloth-1.0.0-/lib,/usr/lib/ruby/gems/1.8/gems/BlueCloth-1.0.0/lib,/usr/lib/ruby/gems/1.8/gems/FaceToFace-0.1.0/lib/,/usr/lib/ruby/gems/1.8/gems/Imlib2-Ruby-0.5.0/lib,/usr/lib/ruby/gems/1.8/gems/Imlib2-Ruby-0.5.1/lib,/usr/lib/ruby/gems/1.8/gems/MB-Ruby-0.3.0/lib,/usr/lib/ruby/gems/1.8/gems/Malicious-Gem-0.1.0/.,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.4.1/lib,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.4.1/test,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.6.3/lib,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.6.3/test,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.7.0/lib,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.7.0/test,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.7.1/lib,/usr/lib/ruby/gems/1.8/gems/Par
|
875
|
+
setlocal nopreserveindent
|
876
|
+
setlocal nopreviewwindow
|
877
|
+
setlocal quoteescape=\\
|
878
|
+
setlocal noreadonly
|
879
|
+
setlocal noscrollbind
|
880
|
+
setlocal shiftwidth=2
|
881
|
+
setlocal noshortname
|
882
|
+
setlocal smartindent
|
883
|
+
setlocal softtabstop=0
|
884
|
+
setlocal nospell
|
885
|
+
setlocal spellcapcheck=[.?!]\\_[\\])'\"\ \ ]\\+
|
886
|
+
setlocal spellfile=
|
887
|
+
setlocal spelllang=en
|
888
|
+
setlocal statusline=
|
889
|
+
setlocal suffixesadd=.rb
|
890
|
+
setlocal swapfile
|
891
|
+
setlocal synmaxcol=3000
|
892
|
+
if &syntax != 'ruby'
|
893
|
+
setlocal syntax=ruby
|
894
|
+
endif
|
895
|
+
setlocal tabstop=2
|
896
|
+
setlocal tags=
|
897
|
+
setlocal textwidth=0
|
898
|
+
setlocal thesaurus=
|
899
|
+
setlocal nowinfixheight
|
900
|
+
setlocal nowinfixwidth
|
901
|
+
setlocal wrap
|
902
|
+
setlocal wrapmargin=0
|
903
|
+
silent! normal! zE
|
904
|
+
let s:l = 89 - ((15 * winheight(0) + 19) / 39)
|
905
|
+
if s:l < 1 | let s:l = 1 | endif
|
906
|
+
exe s:l
|
907
|
+
normal! zt
|
908
|
+
89
|
909
|
+
normal! 023l
|
910
|
+
wincmd w
|
911
|
+
argglobal
|
912
|
+
enew
|
913
|
+
setlocal noautoindent
|
914
|
+
setlocal autoread
|
915
|
+
setlocal balloonexpr=
|
916
|
+
setlocal nobinary
|
917
|
+
setlocal bufhidden=
|
918
|
+
setlocal buflisted
|
919
|
+
setlocal buftype=
|
920
|
+
setlocal nocindent
|
921
|
+
setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
|
922
|
+
setlocal cinoptions=
|
923
|
+
setlocal cinwords=if,else,while,do,for,switch
|
924
|
+
setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-
|
925
|
+
setlocal commentstring=/*%s*/
|
926
|
+
setlocal complete=.,w,b,u,t,i,k
|
927
|
+
setlocal completefunc=
|
928
|
+
setlocal nocopyindent
|
929
|
+
setlocal nocursorcolumn
|
930
|
+
setlocal nocursorline
|
931
|
+
setlocal define=
|
932
|
+
setlocal dictionary=
|
933
|
+
setlocal nodiff
|
934
|
+
setlocal equalprg=
|
935
|
+
setlocal errorformat=
|
936
|
+
setlocal expandtab
|
937
|
+
if &filetype != ''
|
938
|
+
setlocal filetype=
|
939
|
+
endif
|
940
|
+
setlocal foldcolumn=0
|
941
|
+
setlocal foldenable
|
942
|
+
setlocal foldexpr=0
|
943
|
+
setlocal foldignore=#
|
944
|
+
setlocal foldlevel=0
|
945
|
+
setlocal foldmarker={{{,}}}
|
946
|
+
setlocal foldmethod=manual
|
947
|
+
setlocal foldminlines=1
|
948
|
+
setlocal foldnestmax=20
|
949
|
+
setlocal foldtext=foldtext()
|
950
|
+
setlocal formatexpr=
|
951
|
+
setlocal formatoptions=tcq
|
952
|
+
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
|
953
|
+
setlocal grepprg=
|
954
|
+
setlocal iminsert=2
|
955
|
+
setlocal imsearch=2
|
956
|
+
setlocal include=
|
957
|
+
setlocal includeexpr=
|
958
|
+
setlocal indentexpr=
|
959
|
+
setlocal indentkeys=0{,0},:,0#,!^F,o,O,e
|
960
|
+
setlocal noinfercase
|
961
|
+
setlocal iskeyword=@,48-57,_,192-255
|
962
|
+
setlocal keywordprg=
|
963
|
+
setlocal nolinebreak
|
964
|
+
setlocal nolisp
|
965
|
+
setlocal nolist
|
966
|
+
setlocal makeprg=
|
967
|
+
setlocal matchpairs=(:),{:},[:]
|
968
|
+
setlocal modeline
|
969
|
+
setlocal modifiable
|
970
|
+
setlocal nrformats=octal,hex
|
971
|
+
setlocal nonumber
|
972
|
+
setlocal numberwidth=4
|
973
|
+
setlocal omnifunc=
|
974
|
+
setlocal path=
|
975
|
+
setlocal nopreserveindent
|
976
|
+
setlocal nopreviewwindow
|
977
|
+
setlocal quoteescape=\\
|
978
|
+
setlocal readonly
|
979
|
+
setlocal noscrollbind
|
980
|
+
setlocal shiftwidth=2
|
981
|
+
setlocal noshortname
|
982
|
+
setlocal smartindent
|
983
|
+
setlocal softtabstop=0
|
984
|
+
setlocal nospell
|
985
|
+
setlocal spellcapcheck=[.?!]\\_[\\])'\"\ \ ]\\+
|
986
|
+
setlocal spellfile=
|
987
|
+
setlocal spelllang=en
|
988
|
+
setlocal statusline=
|
989
|
+
setlocal suffixesadd=
|
990
|
+
setlocal swapfile
|
991
|
+
setlocal synmaxcol=3000
|
992
|
+
if &syntax != ''
|
993
|
+
setlocal syntax=
|
994
|
+
endif
|
995
|
+
setlocal tabstop=2
|
996
|
+
setlocal tags=
|
997
|
+
setlocal textwidth=0
|
998
|
+
setlocal thesaurus=
|
999
|
+
setlocal nowinfixheight
|
1000
|
+
setlocal nowinfixwidth
|
1001
|
+
setlocal wrap
|
1002
|
+
setlocal wrapmargin=0
|
1003
|
+
wincmd w
|
1004
|
+
argglobal
|
1005
|
+
enew
|
1006
|
+
setlocal noautoindent
|
1007
|
+
setlocal autoread
|
1008
|
+
setlocal balloonexpr=
|
1009
|
+
setlocal nobinary
|
1010
|
+
setlocal bufhidden=
|
1011
|
+
setlocal buflisted
|
1012
|
+
setlocal buftype=
|
1013
|
+
setlocal nocindent
|
1014
|
+
setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
|
1015
|
+
setlocal cinoptions=
|
1016
|
+
setlocal cinwords=if,else,while,do,for,switch
|
1017
|
+
setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-
|
1018
|
+
setlocal commentstring=/*%s*/
|
1019
|
+
setlocal complete=.,w,b,u,t,i,k
|
1020
|
+
setlocal completefunc=
|
1021
|
+
setlocal nocopyindent
|
1022
|
+
setlocal nocursorcolumn
|
1023
|
+
setlocal nocursorline
|
1024
|
+
setlocal define=
|
1025
|
+
setlocal dictionary=
|
1026
|
+
setlocal nodiff
|
1027
|
+
setlocal equalprg=
|
1028
|
+
setlocal errorformat=
|
1029
|
+
setlocal expandtab
|
1030
|
+
if &filetype != ''
|
1031
|
+
setlocal filetype=
|
1032
|
+
endif
|
1033
|
+
setlocal foldcolumn=0
|
1034
|
+
setlocal foldenable
|
1035
|
+
setlocal foldexpr=0
|
1036
|
+
setlocal foldignore=#
|
1037
|
+
setlocal foldlevel=0
|
1038
|
+
setlocal foldmarker={{{,}}}
|
1039
|
+
setlocal foldmethod=manual
|
1040
|
+
setlocal foldminlines=1
|
1041
|
+
setlocal foldnestmax=20
|
1042
|
+
setlocal foldtext=foldtext()
|
1043
|
+
setlocal formatexpr=
|
1044
|
+
setlocal formatoptions=tcq
|
1045
|
+
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
|
1046
|
+
setlocal grepprg=
|
1047
|
+
setlocal iminsert=2
|
1048
|
+
setlocal imsearch=2
|
1049
|
+
setlocal include=
|
1050
|
+
setlocal includeexpr=
|
1051
|
+
setlocal indentexpr=
|
1052
|
+
setlocal indentkeys=0{,0},:,0#,!^F,o,O,e
|
1053
|
+
setlocal noinfercase
|
1054
|
+
setlocal iskeyword=@,48-57,_,192-255
|
1055
|
+
setlocal keywordprg=
|
1056
|
+
setlocal nolinebreak
|
1057
|
+
setlocal nolisp
|
1058
|
+
setlocal nolist
|
1059
|
+
setlocal makeprg=
|
1060
|
+
setlocal matchpairs=(:),{:},[:]
|
1061
|
+
setlocal modeline
|
1062
|
+
setlocal modifiable
|
1063
|
+
setlocal nrformats=octal,hex
|
1064
|
+
setlocal nonumber
|
1065
|
+
setlocal numberwidth=4
|
1066
|
+
setlocal omnifunc=
|
1067
|
+
setlocal path=
|
1068
|
+
setlocal nopreserveindent
|
1069
|
+
setlocal nopreviewwindow
|
1070
|
+
setlocal quoteescape=\\
|
1071
|
+
setlocal readonly
|
1072
|
+
setlocal noscrollbind
|
1073
|
+
setlocal shiftwidth=2
|
1074
|
+
setlocal noshortname
|
1075
|
+
setlocal smartindent
|
1076
|
+
setlocal softtabstop=0
|
1077
|
+
setlocal nospell
|
1078
|
+
setlocal spellcapcheck=[.?!]\\_[\\])'\"\ \ ]\\+
|
1079
|
+
setlocal spellfile=
|
1080
|
+
setlocal spelllang=en
|
1081
|
+
setlocal statusline=
|
1082
|
+
setlocal suffixesadd=
|
1083
|
+
setlocal swapfile
|
1084
|
+
setlocal synmaxcol=3000
|
1085
|
+
if &syntax != ''
|
1086
|
+
setlocal syntax=
|
1087
|
+
endif
|
1088
|
+
setlocal tabstop=2
|
1089
|
+
setlocal tags=
|
1090
|
+
setlocal textwidth=0
|
1091
|
+
setlocal thesaurus=
|
1092
|
+
setlocal nowinfixheight
|
1093
|
+
setlocal nowinfixwidth
|
1094
|
+
setlocal wrap
|
1095
|
+
setlocal wrapmargin=0
|
1096
|
+
wincmd w
|
1097
|
+
argglobal
|
1098
|
+
edit runner/pstore.rb
|
1099
|
+
setlocal noautoindent
|
1100
|
+
setlocal autoread
|
1101
|
+
setlocal balloonexpr=RubyBalloonexpr()
|
1102
|
+
setlocal nobinary
|
1103
|
+
setlocal bufhidden=
|
1104
|
+
setlocal buflisted
|
1105
|
+
setlocal buftype=
|
1106
|
+
setlocal nocindent
|
1107
|
+
setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
|
1108
|
+
setlocal cinoptions=
|
1109
|
+
setlocal cinwords=if,else,while,do,for,switch
|
1110
|
+
setlocal comments=:#
|
1111
|
+
setlocal commentstring=#\ %s
|
1112
|
+
setlocal complete=.,w,b,u,t,i,k
|
1113
|
+
setlocal completefunc=
|
1114
|
+
setlocal nocopyindent
|
1115
|
+
setlocal nocursorcolumn
|
1116
|
+
setlocal nocursorline
|
1117
|
+
setlocal define=^\\s*#\\s*define
|
1118
|
+
setlocal dictionary=
|
1119
|
+
setlocal nodiff
|
1120
|
+
setlocal equalprg=
|
1121
|
+
setlocal errorformat=
|
1122
|
+
setlocal expandtab
|
1123
|
+
if &filetype != 'ruby'
|
1124
|
+
setlocal filetype=ruby
|
1125
|
+
endif
|
1126
|
+
setlocal foldcolumn=0
|
1127
|
+
setlocal foldenable
|
1128
|
+
setlocal foldexpr=0
|
1129
|
+
setlocal foldignore=#
|
1130
|
+
setlocal foldlevel=0
|
1131
|
+
setlocal foldmarker={{{,}}}
|
1132
|
+
setlocal foldmethod=manual
|
1133
|
+
setlocal foldminlines=1
|
1134
|
+
setlocal foldnestmax=20
|
1135
|
+
setlocal foldtext=foldtext()
|
1136
|
+
setlocal formatexpr=
|
1137
|
+
setlocal formatoptions=croql
|
1138
|
+
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
|
1139
|
+
setlocal grepprg=
|
1140
|
+
setlocal iminsert=2
|
1141
|
+
setlocal imsearch=2
|
1142
|
+
setlocal include=^\\s*\\<\\(load\\|w*require\\)\\>
|
1143
|
+
setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.rb','')
|
1144
|
+
setlocal indentexpr=
|
1145
|
+
setlocal indentkeys=0{,0},:,0#,!^F,o,O,e
|
1146
|
+
setlocal noinfercase
|
1147
|
+
setlocal iskeyword=@,48-57,_,192-255
|
1148
|
+
setlocal keywordprg=ri
|
1149
|
+
setlocal nolinebreak
|
1150
|
+
setlocal nolisp
|
1151
|
+
setlocal nolist
|
1152
|
+
setlocal makeprg=
|
1153
|
+
setlocal matchpairs=(:),{:},[:]
|
1154
|
+
setlocal modeline
|
1155
|
+
setlocal modifiable
|
1156
|
+
setlocal nrformats=octal,hex
|
1157
|
+
setlocal nonumber
|
1158
|
+
setlocal numberwidth=4
|
1159
|
+
setlocal omnifunc=rubycomplete#Complete
|
1160
|
+
setlocal path=.,/usr/local/lib/site_ruby/1.8,/usr/local/lib/site_ruby/1.8/i486-linux,/usr/local/lib/site_ruby/1.8/i386-linux,/usr/local/lib/site_ruby,/usr/lib/ruby/vendor_ruby/1.8,/usr/lib/ruby/vendor_ruby/1.8/i486-linux,/usr/lib/ruby/vendor_ruby,/usr/lib/ruby/1.8,/usr/lib/ruby/1.8/i486-linux,/usr/lib/ruby/1.8/i386-linux,,/usr/lib/ruby/gems/1.8/gems/BlueCloth-1.0.0-/lib,/usr/lib/ruby/gems/1.8/gems/BlueCloth-1.0.0/lib,/usr/lib/ruby/gems/1.8/gems/FaceToFace-0.1.0/lib/,/usr/lib/ruby/gems/1.8/gems/Imlib2-Ruby-0.5.0/lib,/usr/lib/ruby/gems/1.8/gems/Imlib2-Ruby-0.5.1/lib,/usr/lib/ruby/gems/1.8/gems/MB-Ruby-0.3.0/lib,/usr/lib/ruby/gems/1.8/gems/Malicious-Gem-0.1.0/.,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.4.1/lib,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.4.1/test,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.6.3/lib,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.6.3/test,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.7.0/lib,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.7.0/test,/usr/lib/ruby/gems/1.8/gems/ParseTree-1.7.1/lib,/usr/lib/ruby/gems/1.8/gems/Par
|
1161
|
+
setlocal nopreserveindent
|
1162
|
+
setlocal nopreviewwindow
|
1163
|
+
setlocal quoteescape=\\
|
1164
|
+
setlocal noreadonly
|
1165
|
+
setlocal noscrollbind
|
1166
|
+
setlocal shiftwidth=2
|
1167
|
+
setlocal noshortname
|
1168
|
+
setlocal smartindent
|
1169
|
+
setlocal softtabstop=0
|
1170
|
+
setlocal nospell
|
1171
|
+
setlocal spellcapcheck=[.?!]\\_[\\])'\"\ \ ]\\+
|
1172
|
+
setlocal spellfile=
|
1173
|
+
setlocal spelllang=en
|
1174
|
+
setlocal statusline=
|
1175
|
+
setlocal suffixesadd=.rb
|
1176
|
+
setlocal swapfile
|
1177
|
+
setlocal synmaxcol=3000
|
1178
|
+
if &syntax != 'ruby'
|
1179
|
+
setlocal syntax=ruby
|
1180
|
+
endif
|
1181
|
+
setlocal tabstop=2
|
1182
|
+
setlocal tags=
|
1183
|
+
setlocal textwidth=0
|
1184
|
+
setlocal thesaurus=
|
1185
|
+
setlocal nowinfixheight
|
1186
|
+
setlocal nowinfixwidth
|
1187
|
+
setlocal wrap
|
1188
|
+
setlocal wrapmargin=0
|
1189
|
+
silent! normal! zE
|
1190
|
+
let s:l = 4 - ((0 * winheight(0) + 0) / 1)
|
1191
|
+
if s:l < 1 | let s:l = 1 | endif
|
1192
|
+
exe s:l
|
1193
|
+
normal! zt
|
1194
|
+
4
|
1195
|
+
normal! 0
|
1196
|
+
wincmd w
|
1197
|
+
4wincmd w
|
1198
|
+
exe '1resize ' . ((&lines * 76 + 40) / 80)
|
1199
|
+
exe 'vert 1resize ' . ((&columns * 92 + 139) / 278)
|
1200
|
+
exe '2resize ' . ((&lines * 1 + 40) / 80)
|
1201
|
+
exe 'vert 2resize ' . ((&columns * 92 + 139) / 278)
|
1202
|
+
exe '3resize ' . ((&lines * 38 + 40) / 80)
|
1203
|
+
exe 'vert 3resize ' . ((&columns * 92 + 139) / 278)
|
1204
|
+
exe '4resize ' . ((&lines * 39 + 40) / 80)
|
1205
|
+
exe 'vert 4resize ' . ((&columns * 92 + 139) / 278)
|
1206
|
+
exe '5resize ' . ((&lines * 1 + 40) / 80)
|
1207
|
+
exe 'vert 5resize ' . ((&columns * 92 + 139) / 278)
|
1208
|
+
exe '6resize ' . ((&lines * 74 + 40) / 80)
|
1209
|
+
exe 'vert 6resize ' . ((&columns * 92 + 139) / 278)
|
1210
|
+
exe '7resize ' . ((&lines * 1 + 40) / 80)
|
1211
|
+
exe 'vert 7resize ' . ((&columns * 92 + 139) / 278)
|
1212
|
+
tabnext 1
|
1213
|
+
if exists('s:wipebuf')
|
1214
|
+
silent exe 'bwipe ' . s:wipebuf
|
1215
|
+
endif
|
1216
|
+
unlet! s:wipebuf
|
1217
|
+
set winheight=1 winwidth=20 shortmess=filnxtToO
|
1218
|
+
let s:sx = expand("<sfile>:p:r")."x.vim"
|
1219
|
+
if file_readable(s:sx)
|
1220
|
+
exe "source " . s:sx
|
1221
|
+
endif
|
1222
|
+
let &so = s:so_save | let &siso = s:siso_save
|
1223
|
+
doautoall SessionLoadPost
|
1224
|
+
unlet SessionLoad
|
1225
|
+
" vim: set ft=vim :
|