Justin Burkett

Results 171 comments of Justin Burkett

I wasn't sure there was much value to doing something more with the pop ups but I'm open to suggestions. On Sun, Nov 22, 2015 at 7:37 AM Nick DeCoursin...

I can do C-bfud for scrolling that shouldn't be a problem. hjkl is a problem because it would mask the magit functions, unless you went to modal editing which I...

We could try a leader key approach. Hit the leader key then the option. The magit popups are a little odd in how they implement key bindings though and I...

Try this: ``` elisp (dolist (char (number-sequence ?! ?z)) (evil-define-key 'normal magit-popup-mode-map (concat ";" (char-to-string char)) 'magit-invoke-popup-action)) ``` Be careful though. I'm not positive this will work everywhere, but it...

Wouldn't this binding just be `O w` with evil-magit?

I believe `evil-move-beyond-eol` (when `nil`) simply moves the point back one char if you move to the eol, so @bmag's behavior makes sense

Oh, that's true but it also depends on the value of `evil-move-cursor-back`

Sure, I can add more tests. FWIW, here's the basic idea. If you have a buffer with text like ``` \alpha ``` you can use `prettify-symbols-mode` which uses composition behind...

Well... it's complicated. I brought up `x` because I think it's the harder one to swallow. If you try to use a region to delete `\` in emacs state, it...

Thanks for checking. I'm happy to tweak or improve as necessary. I also think hiding it behind a flag makes sense for now. I did try to reproduce what you...