Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

what does %! mean vim

" Waht does :%! mean in vim
" this is apply what follows to the entire files
:% 
" this is run the command
!
" Run the command on the entire file. 
" apply json pretty print formatting to the entire file
:%!python -m json.tool
 
PREVIOUS NEXT
Tagged: #vim
ADD COMMENT
Topic
Name
1+3 =