keforbes

Results 113 comments of keforbes

What's the desired fix here? Do you want Ctrl+Shift+arrow key to move into visual mode? Selecting text in normal mode doesn't have any meaning. In vim, Ctrl+Shift+arrow key never selects...

I agree this would be a nice feature to have so the user doesn't have to think about whether they're using vrapper features or eclipse features. Unfortunately, it looks like...

@Meower68, Vrapper already has support for `` and ``, your problem is that you're performing the Eclipse version of those operations and not Vrapper's. If you unbind the `` and...

I think I see the issue. We use the presence of `\%V` to tell us to use the selection bounds for the replace. But we have to remove the `\%V`...

I should be able to fix this sometime this weekend. Sorry it took me a month before I found the time to look at this issue.

Vrapper should be displaying the pending characters at the bottom of the Eclipse window in the status bar. It's also where vrapper displays errors if a command failed. As for...

The pending characters should show up on the far left of the bottom status bar. However, if there is already some text displayed there (like an error message from Vrapper)...

Yeah, I've only implemented tab-completion for filenames (`:e`, `:find`, etc.). I never got around to implementing it for commands. The difficult part is that some commands have higher precedence than...

I've always interpreted vim's docs as telling you what the bare minimum required letters are for a given command. For example, `:r` will do `:read` and `:ret` will do `:retab`....

Whether or not to include the trailing line(s) in a paragraph is the difference between `a` and `i` for those text objects. Try using `gcip` rather than `gcap`. This is...