16 lines
437 B
VimL
16 lines
437 B
VimL
" Sort Python Imports
|
|
command! ISort call do#isort()
|
|
|
|
" Strip white space from right of all lines.
|
|
" TODO: Make RStripLines work on a range
|
|
command! RStripLines call do#rstrip_lines()
|
|
|
|
" Set tab width
|
|
command! -nargs=1 TabWidth call do#set_tab_width(<f-args>)
|
|
|
|
" Toggle Checkbox
|
|
command! ToggleCheckbox call do#toggle_checkbox()
|
|
|
|
" Show highlight groups under the cursor
|
|
command! CursorHighlightGroups :call do#cursor_highlight_groups()
|