(Change <tt> to <code>, perhaps also minor tweak.)
Line 16:
Line 16:
</pre>
</pre>
−
With the default leader key, just press <tt>\s</tt> to save any changes to the current file. If the buffer has not been modified since the last save, the file is not written.
+
With the default leader key, just press <code>\s</code> to save any changes to the current file. If the buffer has not been modified since the last save, the file is not written.
−
On many Windows systems, the file mswin.vim is sourced when Vim starts. In that case, Ctrl-S is mapped to <tt>:update</tt>, so the above mapping is not necessary (press Ctrl-S to save).
+
On many Windows systems, the file mswin.vim is sourced when Vim starts. In that case, Ctrl-S is mapped to <code>:update</code>, so the above mapping is not necessary (press Ctrl-S to save).
To easily save the current file, while keeping it open, use a mapping in your vimrc:
noremap <Leader>s :update<CR>
With the default leader key, just press \s to save any changes to the current file. If the buffer has not been modified since the last save, the file is not written.
On many Windows systems, the file mswin.vim is sourced when Vim starts. In that case, Ctrl-S is mapped to :update, so the above mapping is not necessary (press Ctrl-S to save).