mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 17:35:50 +03:00
[GH-ISSUE #470] [feature]: move cursor 10 lines down and up by pressing ctrl+d and ctrl+u respectively #1203
Labels
No labels
bug
documentation
enhancement
good first issue
help wanted
pull-request
question
third-party
third-party
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-player#1203
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @diegoulloao on GitHub (Jun 20, 2024).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/470
Is your feature already implemented in the latest
master?No
Is your feature request related to a problem? Please describe.
No
Describe the solution you'd like
Some editors like nvim and vim allows you to move the cursor 10 lines down by pressing
ctrl+dand up byctrl+u.It would be cool to have this feature to move quickly throughout the list, playlist or search results.
@aome510 commented on GitHub (Jun 20, 2024):
It should already be possible with
PageSelectPreviousOrScrollUpandPageSelectNextOrScrollDown. You can configure the page size withpage_size_in_rowsconfig option.@diegoulloao commented on GitHub (Jun 21, 2024):
I mean, for vim/nvim users it would be great to do it using the
ctrl+dandctrl+ukeybindings too.Those two ways could live together. There are also other terminal applications that are using the same keybindings to move around up and down (vim inspired I guess). I'd be very nice to have it here too.
@aome510 commented on GitHub (Jun 21, 2024):
You can add bindings to ctrl+u and ctrl+d right?
@diegoulloao commented on GitHub (Jun 24, 2024):
idk, it is possible? how?
@aome510 commented on GitHub (Jun 24, 2024):
add
to
keymap.tomlMore details: https://github.com/aome510/spotify-player/blob/master/docs/config.md#keymaps
@diegoulloao commented on GitHub (Jun 25, 2024):
Great, I didn't know about this. Anyway I think it would be great to have these keymaps built-in the app. But this
keymap.tomlabsolutely works! Thanks.