Just watched this http://www.derekwyatt.org/vim/vim-tutorial-videos/vim-advanced-tutorial-videos/#expression-register, and I can't see any benefit to using <c-r>= vs <c-o>normal or something like that (although I'm sure that is just because I am not understanding something)
|
|
|||
|
|
|
It has many interesting uses, many many. In Derek's video, it was used to call
an external script. The point is that you can do that without leaving insert
mode. You said you don't see benefits over The expression register inserts the result from an expression. You don't need to
1.Evaluating MathThe expression
Now hit
And the result is:
Practical, eh? 2.Using Variable ValuesLet's say you need to number headings in a text. Headings start with a
Considering it's a long list, you'd need to find a way to do it quickly. Here is one approach:
This can be done with by first creating the variable:
And then with a macro:
And now you can press |
|||
|
|
I use the expression register like this: |
|||
|
|