Search Results

8
votes

How to effectively work with multiple files in vim?

Why not use tabs (introduced in Vim 7)? You can switch between tabs with :tabn and :tabp, With :tabe <filepath> you can add a new tab; and with a regular :(w)q you close a tab. If you map :ta …
1
vote

Best way to insert timestamp in Vim?

For a unix timestamp: :r! date +\%s You can also map this command to a key (for example F12) in VIM if you use it a lot: Put this in your .vimrc: map …
2
votes

In Vim, what is the best way to select, delete, or comment out large portions of multi-screen text?

Use Shift+V to go in visual mode, then you can select lines and delete / change them. …