Switching to superuser mode in vim session

vi, vim

Solution

This should do the trick.

:w !sudo tee %

More tricks like that here: http://vim.wikia.com/wiki/Su-write

Problem

After opening a file created by root in `vim`, how to change the current user to superuser mode without quitting or before saving?

Original source