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?...