What are your suggestions for an ideal Vim configuration for Perl development?

后端 未结 12 1020
说谎
说谎 2021-01-29 17:56

There are a lot of threads pertaining to how to configure Vim/GVim for Perl development on PerlMonks.org. My purpose in posting this question is to try to create, as much as pos

12条回答
  •  鱼传尺愫
    2021-01-29 18:29

    " Create a command :Tidy to invoke perltidy.
    " By default it operates on the whole file, but you can give it a
    " range or visual range as well if you know what you're doing.
    command -range=% -nargs=* Tidy ,!
        \perltidy -your -preferred -default -options 
    

提交回复
热议问题