Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I came across a number of this syntax usages which I don't understand:

The first is in :help mapping:

:map <F2> a<C-R>=strftime("%c")<CR><Esc>

This sequence really does insert the value of strftime into buffer though I don't understand how. Changing onto something different breaks it.

Another one is at wiki page which describes how to make omnicompletion popup menu work well:

inoremap <silent> <Esc> <C-r>=pumvisible() ? "\<C-y>" : "\<Esc>"<CR>

The same thing here.

Can anybody explain how this "<C-r>=" thing works?...

share|improve this question

2 Answers

up vote 16 down vote accepted

<C-r>=, or Ctrl+R= is used to insert the result of an expression at the cursor.

I use it a lot when editing CSS to insert values:

width: <C-r>=147-33<CR>px;
width: 114px;

EDIT

<C-r>, without =, allows you to insert the content of any register at the cursor while staying in insert mode: <C-r>+, for example, inserts the content of my system clipboard. see :help i_ctrl_r.

= is the "expression register". See :help "=.

ENDEDIT

share|improve this answer
Thank you, romainl, my primarily confusion was with C-r meaning "redo" in normal mode and now I understand the thing! – izhak Jun 5 '12 at 4:32

<C-r> is like doing CTRL+R on the keyboard. <CR> is like hitting enter. You can find the full list by doing :help key-notation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.