mirror of
https://github.com/junegunn/vim-easy-align.git
synced 2025-11-13 04:13:48 -05:00
adds support for right and center justification
This commit is contained in:
@@ -3,4 +3,6 @@ if exists("g:easy_align_plugin_loaded")
|
||||
endif
|
||||
let g:easy_align_plugin_loaded = 1
|
||||
|
||||
command! -nargs=* -range EasyAlign <line1>,<line2>call easy_align#align(<f-args>)
|
||||
command! -nargs=* -range EasyAlign <line1>,<line2>call easy_align#align(0, <f-args>)
|
||||
command! -nargs=* -range EasyAlignRight <line1>,<line2>call easy_align#align(1, <f-args>)
|
||||
command! -nargs=* -range EasyAlignCenter <line1>,<line2>call easy_align#align(2, <f-args>)
|
||||
|
||||
Reference in New Issue
Block a user