Phil Crosby

Results 89 comments of Phil Crosby

Actually upon closer inspection, the current implementation of insert_newline_below should work in theory. Maybe we need to replace "addNewLine" with a simulated enter key so TextMate steps in and implements...

Ah; we have a custom implementation of insert newline in TextMateVimWindow.m, as I didn't know such a command existed: - (void)addNewline { [self.oakTextView insertText:@"\n"]; } Maybe using insertNewline instead will...

Ah; we have a custom implementation of insert newline in TextMateVimWindow.m, as I didn't know such a command existed: - (void)addNewline { [self.oakTextView insertText:@"\n"]; } Maybe using insertNewline instead will...

Unfortunately, TextMate's OakTextView doesn't implement marks, although there may exist methods in TextMate's class hierarchy which allow us to select the surrounding scopes.

In my unmodified install of vim, 0 goes to the beginning of the line.

@gdh1995 nice job finding the regression. I want to look at this more carefully, so I didn't bundle it with the release for #3985.

I haven't looked into this, but it's pretty impressive that the AWS support person tried out Vimium to reproduce the issue! On Tue, Jul 26, 2022 at 12:39 PM, Aleksey...

I have some thoughts, will come in soon. On Dec 30, 2014 6:44 AM, "Matthew Ryan" [email protected] wrote: > If customJavaScriptUrl is set, then Vimium downloads the linked file, >...

There's some good discussion of the implementation of this feature in PR #2978, but that PR is now out-dated, so if someone wants to take a stab at this, please...