Last active
April 17, 2018 18:58
-
-
Save AndrewRadev/048ff268ada53556a063acc8a105158d to your computer and use it in GitHub Desktop.
Use the "lebab" tool through Vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Invoke the `lebab` tool on the current buffer (https://github.com/lebab/lebab) | |
" | |
" Usage: | |
" | |
" :Lebab <transform1> <transform2> [...] | |
" | |
" This will run all the transforms specified and replace the buffer with the | |
" results. The available transforms tab-complete. | |
" | |
command! -nargs=+ -complete=custom,s:LebabComplete | |
\ Lebab call s:Lebab(<f-args>) | |
function! s:Lebab(...) | |
let transforms = a:000 | |
let filename = expand('%:p') | |
let command_line = 'lebab '.shellescape(filename). | |
\ ' --transform '.join(transforms, ',') | |
let new_lines = systemlist(command_line) | |
if v:shell_error | |
echoerr "There was an error running lebab: ".join(new_lines, "\n") | |
return | |
endif | |
%delete _ | |
call setline(1, new_lines) | |
endfunction | |
let s:lebab_transforms = [] | |
function! s:LebabComplete(argument_lead, command_line, cursor_position) | |
if len(s:lebab_transforms) == 0 | |
for line in systemlist("lebab --help | egrep '^\\s+\\+'") | |
call add(s:lebab_transforms, matchstr(line, '^\s\++ \zs[a-zA-Z-]\+')) | |
endfor | |
endif | |
return join(sort(s:lebab_transforms), "\n") | |
endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment