Replaced align.vim with tabular.vim because it is more popular
This commit is contained in:
1
vim/bundle/godlygeek-tabular
Submodule
1
vim/bundle/godlygeek-tabular
Submodule
Submodule vim/bundle/godlygeek-tabular added at b7b4d8791a
1
vim/bundle/mattn-gist-vim
Submodule
1
vim/bundle/mattn-gist-vim
Submodule
Submodule vim/bundle/mattn-gist-vim added at dff81c9ec2
Submodule vim/bundle/tsaleh-vim-align deleted from fa5fdeeea2
@@ -29,7 +29,6 @@ imap <silent> <D-k> _
|
||||
imap <silent> <D-d> _
|
||||
imap <silent> <D-K> -
|
||||
imap <silent> <D-D> -
|
||||
|
||||
" Don't have to use Shift to get into command mode, just hit semicolon
|
||||
nnoremap ; :
|
||||
|
||||
@@ -159,6 +158,16 @@ nnoremap <D-*> :let @/='\<<C-R>=expand("<cword>")<CR>\>'<CR>:set hls<CR>
|
||||
nnoremap ' `
|
||||
nnoremap ` '
|
||||
|
||||
" Tabularization. Hit ,a then type a character you want to align by
|
||||
" The mnemonic is 'a' for align
|
||||
if exists(":Tabularize")
|
||||
nmap ,a= :Tabularize /=<CR>
|
||||
vmap ,a= :Tabularize /=<CR>
|
||||
nmap ,a: :Tabularize /:\zs<CR>
|
||||
vmap ,a: :Tabularize /:\zs<CR>
|
||||
endif
|
||||
|
||||
|
||||
" ============================
|
||||
" VimBookmarking
|
||||
" ============================
|
||||
|
||||
Reference in New Issue
Block a user