Browse Source

adding features

master
lolson 9 years ago
parent
commit
2cdaeadc9e
1 changed files with 8 additions and 7 deletions
  1. +8
    -7
      plugin/makecols.vim

+ 8
- 7
plugin/makecols.vim View File

@ -2,6 +2,14 @@
" Author: Levi Olson <http://leviolson.com/>
" Version: 1.0
if !exists("g:makecols_orientation") || ! g:makecols_orientation
let g:makecols_orientation = "horz"
endif
if !exists("g:makecols_cols") || ! g:makecols_cols
let g:makecols_cols = "5"
endif
function! s:beep()
exe "norm! \<Esc>"
return ""
@ -89,13 +97,6 @@ vnoremap mc :call makecols(g:makecols_orientation, g:makecols
vnoremap <silent> mch :<C-U>call <SID>makecols("horz", g:makecols_cols)<CR>
vnoremap <silent> mcv :<C-U>call <SID>makecols("vert", g:makecols_cols)<CR>
if !exists("g:makecols_orientation") || ! g:makecols_orientation
let g:makecols_orientation = "horz"
endif
if !exists("g:makecols_cols") || ! g:makecols_cols
let g:makecols_cols = "5"
endif

Loading…
Cancel
Save