-
Notifications
You must be signed in to change notification settings - Fork 9
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
Adds configurable keymaps for navigation movements #77
Merged
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
46105ca
Adds configurable keymaps for navigation movements
LukeHalasy 9e209fe
Changes navigation keymaps to a hashmap instead of a struct. Custom d…
LukeHalasy 736bc67
Changes configurable keymaps to take a list of chars instead of a sin…
LukeHalasy 34d68ee
allows specifying both chars and KeyCode enum strings within the keycode
LukeHalasy d35b6a8
don't panic (todo!) when no match occurs with a specified navigation
LukeHalasy f0ad446
Correct defaults for KeyMaps
LukeHalasy 8e467b2
adds context comment surrounding why we must detect characters before
LukeHalasy 19e9967
fix lint issues
LukeHalasy 69183f2
add moveup and movedown as configurable keycommand options for the
LukeHalasy 24c4524
updates README documentation config test
LukeHalasy 16a04c0
merge in recent changes
LukeHalasy 7af7fad
fix linting issues
LukeHalasy 73abe8a
delete commented out block
LukeHalasy 4ee9411
Adds expecting block to the KeyMaps deserializer
LukeHalasy 0dcdef3
add strum crate
LukeHalasy a8f279c
Match configurable GotoTop and GotoBottom actions in the branch list
LukeHalasy ad6e296
Use default keymappings for an action if a user didn't add a mapping for
LukeHalasy 9f74a7f
Adds a unit-test to ensure that every Action has a default keybinding
LukeHalasy c2663d2
fix clippy warnings
LukeHalasy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Is there a less jank way to do this?
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.
Looks fine to me, only happens once anyway!