Last active
August 4, 2023 07:45
-
-
Save romainl/6575382f1c4575d4a7398d162aa3e1fd to your computer and use it in GitHub Desktop.
Ultra lightweight aligning
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
" Use a bunch of standard UNIX commands for quick an dirty | |
" whitespace-based alignment | |
function! Align() | |
'<,'>!column -t|sed 's/ \(\S\)/ \1/g' | |
normal gv= | |
endfunction | |
xnoremap <silent> <key> :<C-u>silent call Align()<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment