-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Add Vim Motions Support to TurboRepo UI Input Handling #9243
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@AlvaroParker is attempting to deploy a commit to the Vercel Team on Vercel. A member of the Team first needs to authorize it. |
Don't really know why the workflows are failing. I updated my branch, waiting for approval : ) |
hey just to keep you in the loop, I was reviewing this just now and we're gonna talk about it at our next team meeting and get back to you: there are some future plans for some of these keys (beyond just |
hey @AlvaroParker so I checked with the rest of the team and we'd like to just do |
Summary:
This PR introduces support for basic Vim-style key bindings within the
tui
component of TurboRepo, specifically for pane navigation. The goal is to improve navigation efficiency for users familiar with Vim-like key motions.Key Changes:
h
,j
,k
, andl
Vim keybinds for interactive mode:Ctrl+h
: Exit interactive mode.Ctrl+j
: Move down.Ctrl+k
: Move up.Ctrl+l
: Enter interactive mode.j
: Move down.k
: Move up.l
: Enter interactive mode.Motivation:
Adding these motions provides a more intuitive interface for users familiar with Vim commands, enhancing navigation within the pane section of the TurboRepo UI.
Related discussion