/[clonezilla-sysresccd]/scripts-to-create-iso.vim
ViewVC logotype

Diff of /scripts-to-create-iso.vim

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 93 by sng, Fri Aug 13 08:30:37 2010 UTC revision 103 by sng, Wed Aug 25 11:40:55 2010 UTC
# Line 38  set mouse=a Line 38  set mouse=a
38  set pastetoggle=<F10>  set pastetoggle=<F10>
39  set printoptions=paper:a4  set printoptions=paper:a4
40  set ruler  set ruler
41  set runtimepath=~/.vim,/var/lib/vim/addons,/usr/share/vim/vimfiles,/usr/share/vim/vim72,/usr/share/vim/vimfiles/after,/var/lib/vim/addons/after,~/.vim/after  set runtimepath=~/.vim,/var/lib/vim/addons,/usr/share/vim/vimfiles,/usr/share/vim/vim73,/usr/share/vim/vimfiles/after,/var/lib/vim/addons/after,~/.vim/after
42  set shiftwidth=4  set shiftwidth=4
43  set showbreak=▶  set showbreak=▶
44  set showcmd  set showcmd
# Line 46  set showmatch Line 46  set showmatch
46  set smarttab  set smarttab
47  set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc  set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc
48  set tabpagemax=1000  set tabpagemax=1000
49  set tabstop=2  set tabstop=4
50  set termencoding=utf-8  set termencoding=utf-8
51  set wildmenu  set wildmenu
52  set window=38  set window=38
# Line 58  if expand('%') == '' && !&modified && li Line 58  if expand('%') == '' && !&modified && li
58    let s:wipebuf = bufnr('%')    let s:wipebuf = bufnr('%')
59  endif  endif
60  set shortmess=aoO  set shortmess=aoO
 badd +1 ~/clonezilla-sysresccd/scripts-to-create-iso.vim  
61  badd +1 create-clonezilla-sysresccd.sh  badd +1 create-clonezilla-sysresccd.sh
62  badd +1 patch-clonezilla-sysresccd.sh  badd +0 patch-clonezilla-sysresccd.sh
63  badd +1 continue-multi-cd  badd +0 continue-multi-cd
64  badd +1 profiles.conf  badd +0 profiles.conf
65  badd +1 ChangeLog  badd +0 ChangeLog
 badd +1 files/prerun.normal  
 badd +1 files/prerun.toram  
 badd +1 continue-multi-cd.sh  
 badd +1 files/cust-menu  
 badd +205 files/ocs-iso  
66  args create-clonezilla-sysresccd.sh patch-clonezilla-sysresccd.sh continue-multi-cd profiles.conf ChangeLog  args create-clonezilla-sysresccd.sh patch-clonezilla-sysresccd.sh continue-multi-cd profiles.conf ChangeLog
67  edit create-clonezilla-sysresccd.sh  edit create-clonezilla-sysresccd.sh
68  set splitbelow splitright  set splitbelow splitright
# Line 89  setlocal nocindent Line 83  setlocal nocindent
83  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
84  setlocal cinoptions=  setlocal cinoptions=
85  setlocal cinwords=if,else,while,do,for,switch  setlocal cinwords=if,else,while,do,for,switch
86    setlocal colorcolumn=
87  setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-  setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-
88  setlocal commentstring=#%s  setlocal commentstring=#%s
89  setlocal complete=.,w,b,u,t,i  setlocal complete=.,w,b,u,t,i
90    setlocal concealcursor=
91    setlocal conceallevel=0
92  setlocal completefunc=  setlocal completefunc=
93  setlocal nocopyindent  setlocal nocopyindent
94    setlocal cryptmethod=
95    setlocal nocursorbind
96  setlocal nocursorcolumn  setlocal nocursorcolumn
97  setlocal nocursorline  setlocal nocursorline
98  setlocal define=  setlocal define=
# Line 101  setlocal dictionary= Line 100  setlocal dictionary=
100  setlocal nodiff  setlocal nodiff
101  setlocal equalprg=  setlocal equalprg=
102  setlocal errorformat=  setlocal errorformat=
103  setlocal noexpandtab  setlocal expandtab
 if &filetype != 'sh'  
 setlocal filetype=sh  
 endif  
 setlocal foldcolumn=0  
 setlocal foldenable  
 setlocal foldexpr=0  
 setlocal foldignore=#  
 setlocal foldlevel=0  
 setlocal foldmarker={{{,}}}  
 setlocal foldmethod=manual  
 setlocal foldminlines=1  
 setlocal foldnestmax=20  
 setlocal foldtext=foldtext()  
 setlocal formatexpr=  
 setlocal formatoptions=tcq  
 setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*  
 setlocal grepprg=  
 setlocal iminsert=0  
 setlocal imsearch=0  
 setlocal include=  
 setlocal includeexpr=  
 setlocal indentexpr=  
 setlocal indentkeys=0{,0},:,0#,!^F,o,O,e  
 setlocal noinfercase  
 setlocal iskeyword=@,48-57,_,192-255  
 setlocal keywordprg=  
 setlocal nolinebreak  
 setlocal nolisp  
 setlocal nolist  
 setlocal makeprg=  
 setlocal matchpairs=(:),{:},[:]  
 setlocal nomodeline  
 setlocal modifiable  
 setlocal nrformats=octal,hex  
 setlocal nonumber  
 setlocal numberwidth=4  
 setlocal omnifunc=  
 setlocal path=  
 setlocal nopreserveindent  
 setlocal nopreviewwindow  
 setlocal quoteescape=\\  
 setlocal noreadonly  
 setlocal norightleft  
 setlocal rightleftcmd=search  
 setlocal noscrollbind  
 setlocal shiftwidth=8  
 setlocal noshortname  
 setlocal nosmartindent  
 setlocal softtabstop=0  
 setlocal nospell  
 setlocal spellcapcheck=[.?!]\\_[\\])'\"\        \ ]\\+  
 setlocal spellfile=  
 setlocal spelllang=en  
 setlocal statusline=  
 setlocal suffixesadd=  
 setlocal swapfile  
 setlocal synmaxcol=3000  
 if &syntax != 'sh'  
 setlocal syntax=sh  
 endif  
 setlocal tabstop=2  
 setlocal tags=  
 setlocal textwidth=0  
 setlocal thesaurus=  
 setlocal nowinfixheight  
 setlocal nowinfixwidth  
 setlocal wrap  
 setlocal wrapmargin=0  
 silent! normal! zE  
 let s:l = 686 - ((11 * winheight(0) + 11) / 23)  
 if s:l < 1 | let s:l = 1 | endif  
 exe s:l  
 normal! zt  
 686  
 normal! 02l  
 tabedit patch-clonezilla-sysresccd.sh  
 set splitbelow splitright  
 set nosplitbelow  
 set nosplitright  
 wincmd t  
 set winheight=1 winwidth=1  
 argglobal  
 2argu  
 setlocal keymap=  
 setlocal noarabic  
 setlocal autoindent  
 setlocal balloonexpr=  
 setlocal nobinary  
 setlocal bufhidden=  
 setlocal buflisted  
 setlocal buftype=  
 setlocal nocindent  
 setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e  
 setlocal cinoptions=  
 setlocal cinwords=if,else,while,do,for,switch  
 setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-  
 setlocal commentstring=#%s  
 setlocal complete=.,w,b,u,t,i  
 setlocal completefunc=  
 setlocal nocopyindent  
 setlocal nocursorcolumn  
 setlocal nocursorline  
 setlocal define=  
 setlocal dictionary=  
 setlocal nodiff  
 setlocal equalprg=  
 setlocal errorformat=  
 setlocal noexpandtab  
 if &filetype != 'sh'  
 setlocal filetype=sh  
 endif  
 setlocal foldcolumn=0  
 setlocal foldenable  
 setlocal foldexpr=0  
 setlocal foldignore=#  
 setlocal foldlevel=0  
 setlocal foldmarker={{{,}}}  
 setlocal foldmethod=manual  
 setlocal foldminlines=1  
 setlocal foldnestmax=20  
 setlocal foldtext=foldtext()  
 setlocal formatexpr=  
 setlocal formatoptions=tcq  
 setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*  
 setlocal grepprg=  
 setlocal iminsert=0  
 setlocal imsearch=0  
 setlocal include=  
 setlocal includeexpr=  
 setlocal indentexpr=  
 setlocal indentkeys=0{,0},:,0#,!^F,o,O,e  
 setlocal noinfercase  
 setlocal iskeyword=@,48-57,_,192-255  
 setlocal keywordprg=  
 setlocal nolinebreak  
 setlocal nolisp  
 setlocal nolist  
 setlocal makeprg=  
 setlocal matchpairs=(:),{:},[:]  
 setlocal nomodeline  
 setlocal modifiable  
 setlocal nrformats=octal,hex  
 setlocal nonumber  
 setlocal numberwidth=4  
 setlocal omnifunc=  
 setlocal path=  
 setlocal nopreserveindent  
 setlocal nopreviewwindow  
 setlocal quoteescape=\\  
 setlocal noreadonly  
 setlocal norightleft  
 setlocal rightleftcmd=search  
 setlocal noscrollbind  
 setlocal shiftwidth=8  
 setlocal noshortname  
 setlocal nosmartindent  
 setlocal softtabstop=0  
 setlocal nospell  
 setlocal spellcapcheck=[.?!]\\_[\\])'\"\        \ ]\\+  
 setlocal spellfile=  
 setlocal spelllang=en  
 setlocal statusline=  
 setlocal suffixesadd=  
 setlocal swapfile  
 setlocal synmaxcol=3000  
 if &syntax != 'sh'  
 setlocal syntax=sh  
 endif  
 setlocal tabstop=2  
 setlocal tags=  
 setlocal textwidth=0  
 setlocal thesaurus=  
 setlocal nowinfixheight  
 setlocal nowinfixwidth  
 setlocal wrap  
 setlocal wrapmargin=0  
 silent! normal! zE  
 let s:l = 247 - ((11 * winheight(0) + 11) / 23)  
 if s:l < 1 | let s:l = 1 | endif  
 exe s:l  
 normal! zt  
 247  
 normal! 05l  
 tabedit continue-multi-cd.sh  
 set splitbelow splitright  
 set nosplitbelow  
 set nosplitright  
 wincmd t  
 set winheight=1 winwidth=1  
 argglobal  
 3argu  
 edit continue-multi-cd.sh  
 setlocal keymap=  
 setlocal noarabic  
 setlocal autoindent  
 setlocal balloonexpr=  
 setlocal nobinary  
 setlocal bufhidden=  
 setlocal buflisted  
 setlocal buftype=  
 setlocal nocindent  
 setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e  
 setlocal cinoptions=  
 setlocal cinwords=if,else,while,do,for,switch  
 setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-  
 setlocal commentstring=#%s  
 setlocal complete=.,w,b,u,t,i  
 setlocal completefunc=  
 setlocal nocopyindent  
 setlocal nocursorcolumn  
 setlocal nocursorline  
 setlocal define=  
 setlocal dictionary=  
 setlocal nodiff  
 setlocal equalprg=  
 setlocal errorformat=  
 setlocal noexpandtab  
104  if &filetype != 'sh'  if &filetype != 'sh'
105  setlocal filetype=sh  setlocal filetype=sh
106  endif  endif
# Line 361  setlocal nopreserveindent Line 143  setlocal nopreserveindent
143  setlocal nopreviewwindow  setlocal nopreviewwindow
144  setlocal quoteescape=\\  setlocal quoteescape=\\
145  setlocal noreadonly  setlocal noreadonly
146    setlocal norelativenumber
147  setlocal norightleft  setlocal norightleft
148  setlocal rightleftcmd=search  setlocal rightleftcmd=search
149  setlocal noscrollbind  setlocal noscrollbind
150  setlocal shiftwidth=8  setlocal shiftwidth=4
151  setlocal noshortname  setlocal noshortname
152  setlocal nosmartindent  setlocal nosmartindent
153  setlocal softtabstop=0  setlocal softtabstop=0
# Line 379  setlocal synmaxcol=3000 Line 162  setlocal synmaxcol=3000
162  if &syntax != 'sh'  if &syntax != 'sh'
163  setlocal syntax=sh  setlocal syntax=sh
164  endif  endif
165  setlocal tabstop=2  setlocal tabstop=4
166  setlocal tags=  setlocal tags=
167  setlocal textwidth=0  setlocal textwidth=0
168  setlocal thesaurus=  setlocal thesaurus=
169    setlocal noundofile
170  setlocal nowinfixheight  setlocal nowinfixheight
171  setlocal nowinfixwidth  setlocal nowinfixwidth
172  setlocal wrap  setlocal wrap
173  setlocal wrapmargin=0  setlocal wrapmargin=0
174  silent! normal! zE  silent! normal! zE
175  let s:l = 1 - ((0 * winheight(0) + 11) / 23)  let s:l = 1 - ((0 * winheight(0) + 19) / 38)
176  if s:l < 1 | let s:l = 1 | endif  if s:l < 1 | let s:l = 1 | endif
177  exe s:l  exe s:l
178  normal! zt  normal! zt
179  1  1
180  normal! 0  normal! 0
181  tabedit files/cust-menu  tabedit patch-clonezilla-sysresccd.sh
182  set splitbelow splitright  set splitbelow splitright
183  set nosplitbelow  set nosplitbelow
184  set nosplitright  set nosplitright
185  wincmd t  wincmd t
186  set winheight=1 winwidth=1  set winheight=1 winwidth=1
187  argglobal  argglobal
188  edit files/cust-menu  2argu
189  setlocal keymap=  setlocal keymap=
190  setlocal noarabic  setlocal noarabic
191  setlocal autoindent  setlocal autoindent
# Line 414  setlocal nocindent Line 198  setlocal nocindent
198  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
199  setlocal cinoptions=  setlocal cinoptions=
200  setlocal cinwords=if,else,while,do,for,switch  setlocal cinwords=if,else,while,do,for,switch
201    setlocal colorcolumn=
202  setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-  setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-
203  setlocal commentstring=#%s  setlocal commentstring=#%s
204  setlocal complete=.,w,b,u,t,i  setlocal complete=.,w,b,u,t,i
205    setlocal concealcursor=
206    setlocal conceallevel=0
207  setlocal completefunc=  setlocal completefunc=
208  setlocal nocopyindent  setlocal nocopyindent
209    setlocal cryptmethod=
210    setlocal nocursorbind
211  setlocal nocursorcolumn  setlocal nocursorcolumn
212  setlocal nocursorline  setlocal nocursorline
213  setlocal define=  setlocal define=
# Line 445  setlocal formatoptions=tcq Line 234  setlocal formatoptions=tcq
234  setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*  setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
235  setlocal grepprg=  setlocal grepprg=
236  setlocal iminsert=2  setlocal iminsert=2
237  setlocal imsearch=0  setlocal imsearch=2
238  setlocal include=  setlocal include=
239  setlocal includeexpr=  setlocal includeexpr=
240  setlocal indentexpr=  setlocal indentexpr=
# Line 469  setlocal nopreserveindent Line 258  setlocal nopreserveindent
258  setlocal nopreviewwindow  setlocal nopreviewwindow
259  setlocal quoteescape=\\  setlocal quoteescape=\\
260  setlocal noreadonly  setlocal noreadonly
261    setlocal norelativenumber
262  setlocal norightleft  setlocal norightleft
263  setlocal rightleftcmd=search  setlocal rightleftcmd=search
264  setlocal noscrollbind  setlocal noscrollbind
# Line 477  setlocal noshortname Line 267  setlocal noshortname
267  setlocal nosmartindent  setlocal nosmartindent
268  setlocal softtabstop=0  setlocal softtabstop=0
269  setlocal nospell  setlocal nospell
270  setlocal spellcapcheck=[.?!]\\_[\\])'\"\        \ ]\\+  setlocal spellcapcheck=
271  setlocal spellfile=  setlocal spellfile=
272  setlocal spelllang=en  setlocal spelllang=en
273  setlocal statusline=  setlocal statusline=
# Line 487  setlocal synmaxcol=3000 Line 277  setlocal synmaxcol=3000
277  if &syntax != 'sh'  if &syntax != 'sh'
278  setlocal syntax=sh  setlocal syntax=sh
279  endif  endif
280  setlocal tabstop=2  setlocal tabstop=4
281  setlocal tags=  setlocal tags=
282  setlocal textwidth=0  setlocal textwidth=0
283  setlocal thesaurus=  setlocal thesaurus=
284    setlocal noundofile
285  setlocal nowinfixheight  setlocal nowinfixheight
286  setlocal nowinfixwidth  setlocal nowinfixwidth
287  setlocal wrap  setlocal wrap
288  setlocal wrapmargin=0  setlocal wrapmargin=0
289  silent! normal! zE  silent! normal! zE
290  let s:l = 305 - ((27 * winheight(0) + 19) / 38)  let s:l = 1 - ((0 * winheight(0) + 20) / 40)
291  if s:l < 1 | let s:l = 1 | endif  if s:l < 1 | let s:l = 1 | endif
292  exe s:l  exe s:l
293  normal! zt  normal! zt
294  305  1
295  normal! 011l  normal! 0
296  tabedit files/ocs-iso  tabedit continue-multi-cd
297  set splitbelow splitright  set splitbelow splitright
298  set nosplitbelow  set nosplitbelow
299  set nosplitright  set nosplitright
300  wincmd t  wincmd t
301  set winheight=1 winwidth=1  set winheight=1 winwidth=1
302  argglobal  argglobal
303  edit files/ocs-iso  3argu
304  setlocal keymap=  setlocal keymap=
305  setlocal noarabic  setlocal noarabic
306  setlocal autoindent  setlocal autoindent
# Line 522  setlocal nocindent Line 313  setlocal nocindent
313  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
314  setlocal cinoptions=  setlocal cinoptions=
315  setlocal cinwords=if,else,while,do,for,switch  setlocal cinwords=if,else,while,do,for,switch
316    setlocal colorcolumn=
317  setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-  setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-
318  setlocal commentstring=#%s  setlocal commentstring=#%s
319  setlocal complete=.,w,b,u,t,i  setlocal complete=.,w,b,u,t,i
320    setlocal concealcursor=
321    setlocal conceallevel=0
322  setlocal completefunc=  setlocal completefunc=
323  setlocal nocopyindent  setlocal nocopyindent
324    setlocal cryptmethod=
325    setlocal nocursorbind
326  setlocal nocursorcolumn  setlocal nocursorcolumn
327  setlocal nocursorline  setlocal nocursorline
328  setlocal define=  setlocal define=
# Line 553  setlocal formatoptions=tcq Line 349  setlocal formatoptions=tcq
349  setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*  setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
350  setlocal grepprg=  setlocal grepprg=
351  setlocal iminsert=2  setlocal iminsert=2
352  setlocal imsearch=0  setlocal imsearch=2
353  setlocal include=  setlocal include=
354  setlocal includeexpr=  setlocal includeexpr=
355  setlocal indentexpr=  setlocal indentexpr=
# Line 577  setlocal nopreserveindent Line 373  setlocal nopreserveindent
373  setlocal nopreviewwindow  setlocal nopreviewwindow
374  setlocal quoteescape=\\  setlocal quoteescape=\\
375  setlocal noreadonly  setlocal noreadonly
376    setlocal norelativenumber
377  setlocal norightleft  setlocal norightleft
378  setlocal rightleftcmd=search  setlocal rightleftcmd=search
379  setlocal noscrollbind  setlocal noscrollbind
# Line 585  setlocal noshortname Line 382  setlocal noshortname
382  setlocal nosmartindent  setlocal nosmartindent
383  setlocal softtabstop=0  setlocal softtabstop=0
384  setlocal nospell  setlocal nospell
385  setlocal spellcapcheck=[.?!]\\_[\\])'\"\        \ ]\\+  setlocal spellcapcheck=
386  setlocal spellfile=  setlocal spellfile=
387  setlocal spelllang=en  setlocal spelllang=en
388  setlocal statusline=  setlocal statusline=
# Line 595  setlocal synmaxcol=3000 Line 392  setlocal synmaxcol=3000
392  if &syntax != 'sh'  if &syntax != 'sh'
393  setlocal syntax=sh  setlocal syntax=sh
394  endif  endif
395  setlocal tabstop=2  setlocal tabstop=4
396  setlocal tags=  setlocal tags=
397  setlocal textwidth=0  setlocal textwidth=0
398  setlocal thesaurus=  setlocal thesaurus=
399    setlocal noundofile
400  setlocal nowinfixheight  setlocal nowinfixheight
401  setlocal nowinfixwidth  setlocal nowinfixwidth
402  setlocal wrap  setlocal wrap
403  setlocal wrapmargin=0  setlocal wrapmargin=0
404  silent! normal! zE  silent! normal! zE
405  let s:l = 1 - ((0 * winheight(0) + 19) / 38)  let s:l = 1 - ((0 * winheight(0) + 20) / 40)
406  if s:l < 1 | let s:l = 1 | endif  if s:l < 1 | let s:l = 1 | endif
407  exe s:l  exe s:l
408  normal! zt  normal! zt
409  1  1
410  normal! 0  normal! 0
 tabedit files/prerun.normal  
 set splitbelow splitright  
 set nosplitbelow  
 set nosplitright  
 wincmd t  
 set winheight=1 winwidth=1  
 argglobal  
 edit files/prerun.normal  
 setlocal keymap=  
 setlocal noarabic  
 setlocal autoindent  
 setlocal balloonexpr=  
 setlocal nobinary  
 setlocal bufhidden=  
 setlocal buflisted  
 setlocal buftype=  
 setlocal nocindent  
 setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e  
 setlocal cinoptions=  
 setlocal cinwords=if,else,while,do,for,switch  
 setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-  
 setlocal commentstring=#%s  
 setlocal complete=.,w,b,u,t,i  
 setlocal completefunc=  
 setlocal nocopyindent  
 setlocal nocursorcolumn  
 setlocal nocursorline  
 setlocal define=  
 setlocal dictionary=  
 setlocal nodiff  
 setlocal equalprg=  
 setlocal errorformat=  
 setlocal noexpandtab  
 if &filetype != 'sh'  
 setlocal filetype=sh  
 endif  
 setlocal foldcolumn=0  
 setlocal foldenable  
 setlocal foldexpr=0  
 setlocal foldignore=#  
 setlocal foldlevel=0  
 setlocal foldmarker={{{,}}}  
 setlocal foldmethod=manual  
 setlocal foldminlines=1  
 setlocal foldnestmax=20  
 setlocal foldtext=foldtext()  
 setlocal formatexpr=  
 setlocal formatoptions=tcq  
 setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*  
 setlocal grepprg=  
 setlocal iminsert=0  
 setlocal imsearch=2  
 setlocal include=  
 setlocal includeexpr=  
 setlocal indentexpr=  
 setlocal indentkeys=0{,0},:,0#,!^F,o,O,e  
 setlocal noinfercase  
 setlocal iskeyword=@,48-57,_,192-255  
 setlocal keywordprg=  
 setlocal nolinebreak  
 setlocal nolisp  
 setlocal nolist  
 setlocal makeprg=  
 setlocal matchpairs=(:),{:},[:]  
 setlocal nomodeline  
 setlocal modifiable  
 setlocal nrformats=octal,hex  
 setlocal nonumber  
 setlocal numberwidth=4  
 setlocal omnifunc=  
 setlocal path=  
 setlocal nopreserveindent  
 setlocal nopreviewwindow  
 setlocal quoteescape=\\  
 setlocal noreadonly  
 setlocal norightleft  
 setlocal rightleftcmd=search  
 setlocal noscrollbind  
 setlocal shiftwidth=8  
 setlocal noshortname  
 setlocal nosmartindent  
 setlocal softtabstop=0  
 setlocal nospell  
 setlocal spellcapcheck=[.?!]\\_[\\])'\"\        \ ]\\+  
 setlocal spellfile=  
 setlocal spelllang=en  
 setlocal statusline=  
 setlocal suffixesadd=  
 setlocal swapfile  
 setlocal synmaxcol=3000  
 if &syntax != 'sh'  
 setlocal syntax=sh  
 endif  
 setlocal tabstop=2  
 setlocal tags=  
 setlocal textwidth=0  
 setlocal thesaurus=  
 setlocal nowinfixheight  
 setlocal nowinfixwidth  
 setlocal wrap  
 setlocal wrapmargin=0  
 silent! normal! zE  
 let s:l = 4 - ((2 * winheight(0) + 11) / 23)  
 if s:l < 1 | let s:l = 1 | endif  
 exe s:l  
 normal! zt  
 4  
 normal! 061l  
 tabedit files/prerun.toram  
 set splitbelow splitright  
 set nosplitbelow  
 set nosplitright  
 wincmd t  
 set winheight=1 winwidth=1  
 argglobal  
 edit files/prerun.toram  
 setlocal keymap=  
 setlocal noarabic  
 setlocal autoindent  
 setlocal balloonexpr=  
 setlocal nobinary  
 setlocal bufhidden=  
 setlocal buflisted  
 setlocal buftype=  
 setlocal nocindent  
 setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e  
 setlocal cinoptions=  
 setlocal cinwords=if,else,while,do,for,switch  
 setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-  
 setlocal commentstring=#%s  
 setlocal complete=.,w,b,u,t,i  
 setlocal completefunc=  
 setlocal nocopyindent  
 setlocal nocursorcolumn  
 setlocal nocursorline  
 setlocal define=  
 setlocal dictionary=  
 setlocal nodiff  
 setlocal equalprg=  
 setlocal errorformat=  
 setlocal noexpandtab  
 if &filetype != 'sh'  
 setlocal filetype=sh  
 endif  
 setlocal foldcolumn=0  
 setlocal foldenable  
 setlocal foldexpr=0  
 setlocal foldignore=#  
 setlocal foldlevel=0  
 setlocal foldmarker={{{,}}}  
 setlocal foldmethod=manual  
 setlocal foldminlines=1  
 setlocal foldnestmax=20  
 setlocal foldtext=foldtext()  
 setlocal formatexpr=  
 setlocal formatoptions=tcq  
 setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*  
 setlocal grepprg=  
 setlocal iminsert=0  
 setlocal imsearch=2  
 setlocal include=  
 setlocal includeexpr=  
 setlocal indentexpr=  
 setlocal indentkeys=0{,0},:,0#,!^F,o,O,e  
 setlocal noinfercase  
 setlocal iskeyword=@,48-57,_,192-255  
 setlocal keywordprg=  
 setlocal nolinebreak  
 setlocal nolisp  
 setlocal nolist  
 setlocal makeprg=  
 setlocal matchpairs=(:),{:},[:]  
 setlocal nomodeline  
 setlocal modifiable  
 setlocal nrformats=octal,hex  
 setlocal nonumber  
 setlocal numberwidth=4  
 setlocal omnifunc=  
 setlocal path=  
 setlocal nopreserveindent  
 setlocal nopreviewwindow  
 setlocal quoteescape=\\  
 setlocal noreadonly  
 setlocal norightleft  
 setlocal rightleftcmd=search  
 setlocal noscrollbind  
 setlocal shiftwidth=8  
 setlocal noshortname  
 setlocal nosmartindent  
 setlocal softtabstop=0  
 setlocal nospell  
 setlocal spellcapcheck=[.?!]\\_[\\])'\"\        \ ]\\+  
 setlocal spellfile=  
 setlocal spelllang=en  
 setlocal statusline=  
 setlocal suffixesadd=  
 setlocal swapfile  
 setlocal synmaxcol=3000  
 if &syntax != 'sh'  
 setlocal syntax=sh  
 endif  
 setlocal tabstop=2  
 setlocal tags=  
 setlocal textwidth=0  
 setlocal thesaurus=  
 setlocal nowinfixheight  
 setlocal nowinfixwidth  
 setlocal wrap  
 setlocal wrapmargin=0  
 silent! normal! zE  
 let s:l = 46 - ((7 * winheight(0) + 11) / 23)  
 if s:l < 1 | let s:l = 1 | endif  
 exe s:l  
 normal! zt  
 46  
 normal! 022l  
411  tabedit profiles.conf  tabedit profiles.conf
412  set splitbelow splitright  set splitbelow splitright
413  set nosplitbelow  set nosplitbelow
# Line 846  setlocal nocindent Line 428  setlocal nocindent
428  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
429  setlocal cinoptions=  setlocal cinoptions=
430  setlocal cinwords=if,else,while,do,for,switch  setlocal cinwords=if,else,while,do,for,switch
431    setlocal colorcolumn=
432  setlocal comments=:#  setlocal comments=:#
433  setlocal commentstring=#\ %s  setlocal commentstring=#\ %s
434  setlocal complete=.,w,b,u,t,i  setlocal complete=.,w,b,u,t,i
435    setlocal concealcursor=
436    setlocal conceallevel=0
437  setlocal completefunc=  setlocal completefunc=
438  setlocal nocopyindent  setlocal nocopyindent
439    setlocal cryptmethod=
440    setlocal nocursorbind
441  setlocal nocursorcolumn  setlocal nocursorcolumn
442  setlocal nocursorline  setlocal nocursorline
443  setlocal define=  setlocal define=
# Line 858  setlocal dictionary= Line 445  setlocal dictionary=
445  setlocal nodiff  setlocal nodiff
446  setlocal equalprg=  setlocal equalprg=
447  setlocal errorformat=  setlocal errorformat=
448  setlocal noexpandtab  setlocal expandtab
449  if &filetype != 'conf'  if &filetype != 'conf'
450  setlocal filetype=conf  setlocal filetype=conf
451  endif  endif
# Line 901  setlocal nopreserveindent Line 488  setlocal nopreserveindent
488  setlocal nopreviewwindow  setlocal nopreviewwindow
489  setlocal quoteescape=\\  setlocal quoteescape=\\
490  setlocal noreadonly  setlocal noreadonly
491    setlocal norelativenumber
492  setlocal norightleft  setlocal norightleft
493  setlocal rightleftcmd=search  setlocal rightleftcmd=search
494  setlocal noscrollbind  setlocal noscrollbind
495  setlocal shiftwidth=8  setlocal shiftwidth=4
496  setlocal noshortname  setlocal noshortname
497  setlocal nosmartindent  setlocal nosmartindent
498  setlocal softtabstop=0  setlocal softtabstop=0
499  setlocal nospell  setlocal nospell
500  setlocal spellcapcheck=[.?!]\\_[\\])'\"\        \ ]\\+  setlocal spellcapcheck=
501  setlocal spellfile=  setlocal spellfile=
502  setlocal spelllang=en  setlocal spelllang=en
503  setlocal statusline=  setlocal statusline=
# Line 919  setlocal synmaxcol=3000 Line 507  setlocal synmaxcol=3000
507  if &syntax != 'conf'  if &syntax != 'conf'
508  setlocal syntax=conf  setlocal syntax=conf
509  endif  endif
510  setlocal tabstop=2  setlocal tabstop=4
511  setlocal tags=  setlocal tags=
512  setlocal textwidth=0  setlocal textwidth=0
513  setlocal thesaurus=  setlocal thesaurus=
514    setlocal noundofile
515  setlocal nowinfixheight  setlocal nowinfixheight
516  setlocal nowinfixwidth  setlocal nowinfixwidth
517  setlocal wrap  setlocal wrap
518  setlocal wrapmargin=0  setlocal wrapmargin=0
519  silent! normal! zE  silent! normal! zE
520  let s:l = 1 - ((0 * winheight(0) + 19) / 38)  let s:l = 1 - ((0 * winheight(0) + 20) / 40)
521  if s:l < 1 | let s:l = 1 | endif  if s:l < 1 | let s:l = 1 | endif
522  exe s:l  exe s:l
523  normal! zt  normal! zt
# Line 954  setlocal nocindent Line 543  setlocal nocindent
543  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e  setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e
544  setlocal cinoptions=  setlocal cinoptions=
545  setlocal cinwords=if,else,while,do,for,switch  setlocal cinwords=if,else,while,do,for,switch
546    setlocal colorcolumn=
547  setlocal comments=  setlocal comments=
548  setlocal commentstring=/*%s*/  setlocal commentstring=/*%s*/
549  setlocal complete=.,w,b,u,t,i  setlocal complete=.,w,b,u,t,i
550    setlocal concealcursor=
551    setlocal conceallevel=0
552  setlocal completefunc=  setlocal completefunc=
553  setlocal nocopyindent  setlocal nocopyindent
554    setlocal cryptmethod=
555    setlocal nocursorbind
556  setlocal nocursorcolumn  setlocal nocursorcolumn
557  setlocal nocursorline  setlocal nocursorline
558  setlocal define=  setlocal define=
# Line 1009  setlocal nopreserveindent Line 603  setlocal nopreserveindent
603  setlocal nopreviewwindow  setlocal nopreviewwindow
604  setlocal quoteescape=\\  setlocal quoteescape=\\
605  setlocal noreadonly  setlocal noreadonly
606    setlocal norelativenumber
607  setlocal norightleft  setlocal norightleft
608  setlocal rightleftcmd=search  setlocal rightleftcmd=search
609  setlocal noscrollbind  setlocal noscrollbind
610  setlocal shiftwidth=8  setlocal shiftwidth=4
611  setlocal noshortname  setlocal noshortname
612  setlocal nosmartindent  setlocal nosmartindent
613  setlocal softtabstop=0  setlocal softtabstop=0
614  setlocal nospell  setlocal nospell
615  setlocal spellcapcheck=[.?!]\\_[\\])'\"\        \ ]\\+  setlocal spellcapcheck=
616  setlocal spellfile=  setlocal spellfile=
617  setlocal spelllang=en  setlocal spelllang=en
618  setlocal statusline=  setlocal statusline=
# Line 1027  setlocal synmaxcol=3000 Line 622  setlocal synmaxcol=3000
622  if &syntax != 'changelog'  if &syntax != 'changelog'
623  setlocal syntax=changelog  setlocal syntax=changelog
624  endif  endif
625  setlocal tabstop=2  setlocal tabstop=4
626  setlocal tags=  setlocal tags=
627  setlocal textwidth=78  setlocal textwidth=78
628  setlocal thesaurus=  setlocal thesaurus=
629    setlocal noundofile
630  setlocal nowinfixheight  setlocal nowinfixheight
631  setlocal nowinfixwidth  setlocal nowinfixwidth
632  setlocal wrap  setlocal wrap
633  setlocal wrapmargin=0  setlocal wrapmargin=0
634  silent! normal! zE  silent! normal! zE
635  let s:l = 1 - ((0 * winheight(0) + 11) / 23)  let s:l = 1 - ((0 * winheight(0) + 20) / 40)
636  if s:l < 1 | let s:l = 1 | endif  if s:l < 1 | let s:l = 1 | endif
637  exe s:l  exe s:l
638  normal! zt  normal! zt
639  1  1
640  normal! 0  normal! 0
641  tabnext 5  tabnext 1
642  if exists('s:wipebuf')  if exists('s:wipebuf')
643    silent exe 'bwipe ' . s:wipebuf    silent exe 'bwipe ' . s:wipebuf
644  endif  endif

Legend:
Removed from v.93  
changed lines
  Added in v.103

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26