17 lines
328 B
Text
17 lines
328 B
Text
if foo > 2 || has("gui_running")
|
|
syntax on
|
|
set hlsearch
|
|
endif
|
|
|
|
set autoindent
|
|
|
|
" switch on highlighting
|
|
function UnComment(fl, ll)
|
|
while idx >= a:ll
|
|
let srclines=getline(idx)
|
|
let dstlines=substitute(srclines, b:comment, "", "")
|
|
call setline(idx, dstlines)
|
|
endwhile
|
|
endfunction
|
|
|
|
let conf = {'command': 'git'}
|