Keybindings for feed entry navigation #62
Replies: 2 comments 1 reply
-
|
@CrociDB Just pinging in case you missed this, not sure if GitHub discussions sends a notification. (Apologies if it does!) |
Beta Was this translation helpful? Give feedback.
-
|
Hi @PraneethJain. I did see it, but was a bit busy today. So, the left arrow not moving back to the Category menu is actually a bug: (_, KeyCode::Right | KeyCode::Char('h')) => {
self.inputstate = MainInputState::Menu;
Ok(AppScreenEvent::None)
}It's implemented, but set to right key for some reason. And since I mostly only use the vim bindkeys, never noticed. I'm just pushing the fix now. Thanks for the note! However, I don't like the idea of pressing right (or l) from the entry list to read it. Since it's a new screen being opened, I feel it's better to keep it opening with Enter. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I feel the navigation in the feed entry list is a bit unintuitive.
This behavior is unexpected coming from using other TUIs (file managers like ranger, where the left arrow takes you back, and the right arrow will open the file). We could have keybinds as follows:
What are your thoughts on this? If this works for you, I can write a quick PR for this.
Beta Was this translation helpful? Give feedback.
All reactions