Renaming the current file in Vim

前端 未结 21 693
轻奢々
轻奢々 2021-01-29 17:15

How should I rename my current file in Vim?

For example:

  • I am editing person.html_erb_spec.rb
  • I would like it renamed to person
21条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-29 18:02

    :sav newfile | !rm #

    Note that it does not remove the old file from the buffer list. If that's important to you, you can use the following instead:

    :sav newfile | bd# | !rm #

提交回复
热议问题