5
我最近讀了this article與在Vim中縮進源文件有關。但是,我希望能夠自定義縮進其中的一些。有沒有辦法指定當我按= =時運行哪個二進制文件?如何自定義用vim縮進文件?
我最近讀了this article與在Vim中縮進源文件有關。但是,我希望能夠自定義縮進其中的一些。有沒有辦法指定當我按= =時運行哪個二進制文件?如何自定義用vim縮進文件?
從幫助:
={motion} Filter {motion} lines through the external program given with the 'equalprg' option. When the 'equalprg' option is empty (this is the default), use the internal formatting function |C-indenting|. But when 'indentexpr' is not empty, it will be used instead |indent-expression|.
它看起來像設置equalprg
選項是你想要的。
您可以設置equalprg
-option。 (見:他=更多)。
在你的`.vimrc`中添加這樣的內容:`au FileType sql set equalprg = pg_format` – bonh 2017-09-27 20:39:40