vote up 1 vote down star

I sometimes open a read-only file in vi, forgetting to do chmod +w before opening it. Is there way to change the file from within the vi?

something like that !r chmod +w filename ?

is there a shortcut to refer to the currently open file without spelling it 50 letter name?

thanks

flag

4 Answers

vote up 7 vote down check

Just use

:!chmod +w %

in command mode. % will be replaced by the current file name.

link|flag
vote up 5 vote down

If you have the rights to write to the file, then you can just use exclamation mark to force it:

:w!

If you don't have the rights and need to change user, but still want to write to the file, sometimes you may go for something like

:w !sudo tee %
link|flag
yes but I dont want to type w! all time... only w – Andrei Oct 22 at 12:00
You don't want to write to file all the time either ;-) – Michael Krelin - hacker Oct 22 at 12:02
vote up 3 vote down

Have you tried

!chmod +w %

The % represents the current filename.

You could also map a key to this like Ctrl-W.

:map <C-w> :!chmod +w %<CR>

Note that you type Ctrl-V Ctrl-M to get the

link|flag
vote up 0 vote down

:!chmod

and if vi still doesn't want to write it,

:se cpo-=W

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.