Insert Single Character in Vim?

25

6

In Vim (7.2), there is a normal mode command r to replace a single character with another. For example, typing rX will replace the one character under the cursor with X and then return you to normal mode.

Is there a normal-mode command to insert a single character and then return to normal mode?

John Dibling

Posted 2013-04-11T18:40:14.727

Reputation: 459

See http://vim.wikia.com/wiki/Insert_a_single_character for comprehensive solution.

– Maxim Suslov – 2018-09-07T07:40:29.560

1

Possible cross site duplicate: http://stackoverflow.com/questions/1557893/making-inserting-a-single-character-in-vim-an-atomic-operation

– Ciro Santilli 新疆改造中心法轮功六四事件 – 2014-01-23T14:12:33.137

Answers

6

MelBurslan is correct that this feature does not natively exist, but creating a user-defined command is not really the way to go about creating it. I tinkered for a few minutes and came up with this:

:nmap <silent> ,s "=nr2char(getchar())<cr>P

Which uses some Vim trickery involving "putting" text from a register, in this case the "expression" register. The expression being plugged into the register is "nr2char(getchar())" which will return a single character string.

The reason I built the mapping this way is that getting user input "midway through" a mapping is tricky and can behave unpredictably; even this mapping will drop the cursor down to the status area while waiting for the user to type a character.

Heptite

Posted 2013-04-11T18:40:14.727

Reputation: 16 267

8

Thanks to Johnny for giving us this terrific answer in the comments below:

":nmap <C-i> i_<Esc>r"

That maps Control + i to insert a single character, and it does it very concisely.

In your vimrc file, this will look like:

nnoremap <C-i> i_<Esc>r

I changed my mapping to use space, and you can change yours to your preferred key(s):

nnoremap <Space> i_<Esc>r

Matt C

Posted 2013-04-11T18:40:14.727

Reputation: 181

1This is the most concise and simple answer. – Dylanthepiguy – 2017-09-24T21:06:16.790

4

As far as I know, there is no such function in any widely distributed incarnation of vi editor but, vim has a facility to create custom commands. It has previously been discussed here: in this thread

You might be able to create your custom command doing what you wish to do.

MelBurslan

Posted 2013-04-11T18:40:14.727

Reputation: 835

3Here's the command to map Ctrl-I to insert a single character: ":nmap <C-i> i_<esc>r" – Johnny – 2013-04-11T19:40:32.747

2

A simple way to do this is using the Cut x and Put p commands. Say that * is the character you want to insert. Insert it using i * Esc. Then hit x. That will cut the character. Now, you can hit p to put the single character. If you need to insert that character 300 times, you can type: 300p.

Steve Bragg

Posted 2013-04-11T18:40:14.727

Reputation: 21