Tagged in

Mode

usevim
usevim
A blog about Vim
More information
Followers
1.5K
Elsewhere
More, on Medium

Ex Mode

Apparently, NeoVim may be removing Ex mode. The NeoVim developers have found supporting Ex mode adds extra code that they’d like to remove.

Why would you care about Ex mode (:help Ex-mode)? It's basically a mode that allows you to enter several : commands, with some slight caveats. To…


Script Roundup: vim-table-mode, Gundo

Send in your Vim scripts for review through our contact form.

vim-table-mode

vim-table-mode (GitHub: dhruvasagar / vim-table-mode, License: MIT) by Dhruva Sagar is an Emacs-inspired Table Mode plugin…


Vim 101: Practicing Motions with Visual Mode

I often find myself using Visual mode purely to figure out the best motion to use for a given task. For example, let’s say I’m trying to duplicate the following function’s body:

function specialAdd(a, b) {
if (!a || !b) {…