Skip to content

Instantly share code, notes, and snippets.

@al3rez
Created April 17, 2019 08:32
Show Gist options
  • Save al3rez/f87b9da8e2267778cdbdb85ed0462f24 to your computer and use it in GitHub Desktop.
Save al3rez/f87b9da8e2267778cdbdb85ed0462f24 to your computer and use it in GitHub Desktop.
rename
function! RenameFile()
let old_name = expand('%')
let new_name = input('New file name: ', expand('%'), 'file')
if new_name != '' && new_name != old_name
exec ':saveas ' . new_name
exec ':silent !rm ' . old_name
redraw!
endif
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment