-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vim style movement #15
Comments
I do not know what Ctrl+Shift+Space does in Alacritty. I do know vim has a whole chapter in its manual called motion.txt and spanning almost one and a half thousand lines, and that not including search commands. I know some vim commands use a prefix key such as I also know most vim commands can be prefixed with numbers, and I am certain Kitty does not have a syntax for that. Lastly, I know some people have had success setting up vim or neovim as a screen grabber / scrollback browser for Kitty, see here and there. |
Well you don't have to support all of vims motions of course. Alacrittys vi mode just supports the basics
hjkl instead of arrows
wbe for moving by word
v to start selecting, V to select whole lines at a time
y to copy what has been selected
/? to search fwd/bwd
That's just about what alacritty supports
|
Possible.
Two of three possible, because kitty_grab does not implement two different ways to move forward by words.
Modal selection is not currently implemented. I might accept a patch.
Possible.
Search is not yet implemented. I have a wishlist item (#5) for search but it’s about emacs-style isearch rather than vim-style regexp search. (Offtopic: When replying via mail client, please delete anything that should not go into a comment. This includes your mail signature and bottom-quoting.) Also, have you read the sample config? It should have told you everything that is possible. |
Any new on this? The most important stuff would be:
|
Are you volunteering to implement that? |
No, I am not proficient in Python. Just that alacritty does this so elegantly. |
Then I have no news for you, sorry. |
Hey @IndianBoy42 , there's part of this is already implemented on kitty. For example, |
Is it possible through configuration to make the movement vim style (for example like alacritty's ctrl+shift+space)
The text was updated successfully, but these errors were encountered: