Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7016975
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:51:18+00:00 2026-05-27T22:51:18+00:00

What would be the most practical way to rename the file you’re currently editing

  • 0

What would be the most practical way to rename the file you’re currently editing in Vim without messing up your current splits configuration?

Generally, one would need to … save the file under a different name, delete the original one, and re-open the new one without making a mess of the current layout.

Anyone have any idea how to do that in one command (function) or less?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T22:51:18+00:00Added an answer on May 27, 2026 at 10:51 pm

    :saveas newname will save the buffer with the new name, make that name the current buffer, and set the alternate buffer to the old file.

    :call delete(expand('#')) will then delete the file associated with the alternate buffer.

    You can easily turn that into a command with something like

    :command! -bang -complete=file -nargs=+ Rename saveas<bang> <args> | call delete(expand('#'))`
    

    The user manual provides a thorough description of how to create user commands. Here’s an explanation of the elements I’m using above.

    • -bang allows the command to called as either Rename or Rename! and <bang> in the constructed command is replaced by either an empty string or !, depending on how it is called. This is used to support the same functionality in the :saveas command.
    • -complete=file will let you tab-complete the path that will be used for the new file, similar to :e and :saveas do.
    • -nargs=+ specifies that :Rename requires at least one argument (the filename), but can take more. <args> is replaced with whatever arguments are given to :Rename. This allows you to specify the extra arguments that :saveas accepts, so you could do something like :Rename ++enc=latin1 newfile to rename the file to newfile and change the encoding to latin1.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know what is the most efficient and practical way of
What would be the most efficient way of counting the number of times a
What would be the most elegant and efficient way of finding/returning the first list
I have this string: B82V16814133260 what would be the most efficient way to get
What would be the most performant way to prepend a single character to a
What's the most practical way to add custom properties to a side wide ViewDataDictionary?
I am aware that most common practice would be to put var a,b; on
We've got a multi-agent Java environment where different agent would most likely produce all
Most people would agree that internationalizing an existing app is more expensive than developing
What would be the most sensible choice for building a socket server application, assuming

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.