📜  %! 是什么意思?意思是 vim - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:40.311000             🧑  作者: Mango

代码示例1
" 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