I'm trying to create something of a "new mode" in vim. The details of the mode are unimportant, but there is one thing I need to be able to do.

I need to do something like the following pseudo-code:

get user input (movement keys like "j" or complex keys like "dd")
while user_input != <esc>
   execute the user input
endwhile

In other words, I need a loop that will read what the user is doing, then perform the associated action.

I've already got the following code:

let char = nr2char(getchar())
while char =~ '^\w$'
    execute "normal ". char
    let char = nr2char(getchar())
endwhile

This works fine for user movements (j, k, etc.), but fails for more complex multi-character commands like dd.

Also, this is a small annoyance, but the cursor disappears during getchar(), meaning you effectively can't see the cursor (this is of less importance because of what I'm trying to do, but hopefully has a solution as well).

Does anyone have any idea how I can get multi-character actions to work?

link|improve this question

69% accept rate
Don’t use nr2char(getchar()) here, you should be using let char=getchar() | if type(char)==type(0) | let char=nr2char(char) | endif because all special keys (like PageUp) appear as strings. – ZyX Mar 3 at 15:43
feedback

2 Answers

I think you might be interested in submode.vim, if not to use it, to at least see how they've implemented this feature.

link|improve this answer
feedback

I usually redefine locally (:h map-<buffer>, for instance) the things this new mode is meant to change. And I also override <esc> to unregister those things from the mode.

This is the easier approach IMO.

link|improve this answer
I don't think this helps in my case. I really need to do something interactively with the user input, but keep the rest of vim's functionality working exactly the same. I could theoretically remap every key to a version that calls my own special function, but this requires remapping every key the user might want to use, which is obviously not a clean solution. – Edan Maor Feb 23 '11 at 9:50
feedback

Your Answer

 
or
required, but never shown

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