I may take a stab at implementing this if I have time, but vim-style navigations in the terminal app would be a great feature to add.
Can't that be done by setting up custom shortcuts? https://joplin.cozic.net/terminal/#shortcuts
It certainly can. Sorry, I hadn't expected that to be configurable. :)
Just for those that find this ticket later, this is what I landed on to make things a little more vim-like:
~/.config/joplin/keymap.json:
[
{ "keys": ["h"], "type": "function", "command": "focus_previous" },
{ "keys": ["j"], "type": "function", "command": "move_down" },
{ "keys": ["k"], "type": "function", "command": "move_up" },
{ "keys": ["l"], "type": "function", "command": "focus_next" },
{ "keys": ["/"], "type": "prompt", "command": "search \"\"", "cursorPosition": -2 },
{ "keys": ["q"], "type": "exec", "command": "exit" }
]
Most helpful comment
Just for those that find this ticket later, this is what I landed on to make things a little more vim-like:
~/.config/joplin/keymap.json: