Skip to content

Commit

Permalink
Merge pull request #721 from jazmit/correct-tabularize-assign
Browse files Browse the repository at this point in the history
Changed `<Leader>a=` to only align one `=` sign
  • Loading branch information
spf13 committed May 1, 2015
2 parents da059eb + 095a23c commit aa93465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -548,8 +548,8 @@
if isdirectory(expand("~/.vim/bundle/tabular"))
nmap <Leader>a& :Tabularize /&<CR>
vmap <Leader>a& :Tabularize /&<CR>
nmap <Leader>a= :Tabularize /=<CR>
vmap <Leader>a= :Tabularize /=<CR>
nmap <Leader>a= :Tabularize /^[^=]*\zs=<CR>
vmap <Leader>a= :Tabularize /^[^=]*\zs=<CR>
nmap <Leader>a=> :Tabularize /=><CR>
vmap <Leader>a=> :Tabularize /=><CR>
nmap <Leader>a: :Tabularize /:<CR>
Expand Down

0 comments on commit aa93465

Please sign in to comment.