lem-project / lem

Common Lisp editor/IDE with high expansibility
http://lem-project.github.io/
MIT License
2.38k stars 175 forks source link

Bind for peek-legit-discard-file conflicts with vi-mode #1513

Open ghosty141 opened 2 months ago

ghosty141 commented 2 months ago

Because of this keybind you can't navigate in normal mode in legit which makes it kind of unusable.

(define-key *peek-legit-keymap* "k" 'peek-legit-discard-file)

g-gundam commented 1 month ago

I've encountered quite a few modes where vi-mode feels like a second class citizen.

Who knows what else. They make you go into vi insert-mode to do anything.

vindarel commented 1 month ago

yeah… those issues are not fun. My "fix" would be to ensure we enter Legit in Emacs mode or vi insert mode, so we don't have the conflicts.

g-gundam commented 1 month ago

There has to be a better way. If Emacs can do it, why not Lem? I'm going to keep thinking about it.

ghosty141 commented 1 month ago

yeah… those issues are not fun. My "fix" would be to ensure we enter Legit in Emacs mode or vi insert mode, so we don't have the conflicts.

I don't fully agree. For VI users normal mode/motion mode is the standard so that should be honored even in 3rd party packages.

For "discard" I'd suggest "x" as that would work with vi-mode in normal just fine! Magit also uses that I believe

g-gundam commented 1 month ago

Take a look at #1515. I didn't do anything for legit yet, but I could. I just chose to fix some of the simpler modes first as a proof of concept.