-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[WIP] feat(tui): more binds & persistent preferences #9512
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
8 Skipped Deployments
|
@@ -85,7 +86,6 @@ fn translate_key_event(options: InputOptions, key_event: KeyEvent) -> Option<Eve | |||
restore_scroll: true, | |||
}) | |||
} | |||
KeyCode::Char('h') => Some(Event::ToggleSidebar), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs new PR: Just moving it to the right section.
@@ -767,9 +782,31 @@ fn update( | |||
} | |||
Event::Up => { | |||
app.previous(); | |||
let _ = preferences::Preferences::update_preference( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: Handle result inside method.
100, | ||
100, | ||
vec!["a".to_string(), "b".to_string()], | ||
&AbsoluteSystemPathBuf::default(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: Make a tempdir
Description
This PR has some prefactors that I'd like to cleanup before adding new functionality:
app.has_user_scrolled
scroll
- What is the context, task list or logs pane?TODOS:
p
for pinningj
andk
/
t
andb
to jump to the top/bottom of the current task section you're in?Testing Instructions
TODO