1234567891011121314151617 |
- 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'}
|