-
-
Notifications
You must be signed in to change notification settings - Fork 604
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
Jump to commit via sha #1818
Jump to commit via sha #1818
Conversation
Struct is created with a default keybindings. Popup in integrated in the initialisation macros
- implement default components methods on the popup - Create internal event for jump to commit
- Popup is reactive and has the standard key bindings - Validation is still not implemented - Past from clipboard is still not implemented
- Basic Validation is implemented - Jump to comment with full sha is implemented without error handling
- Handle move to commit errors
- Validation error message improvements - Method renamed
Here is a small demo for the current progress jump_sha.mp4 |
Demo isn't used in the PR
Does it jump to it even if that SHA is not in the visible list? |
@joyously Yes it jumps to any commit in the repository since it uses the well-tested method |
- Add redraw flag after it jumps to commit - Remove unused code
yes it will only be able to go to commits in the current branch. otherwise it will show an error right now. #81 will introduce looking at all branches and fix this |
@AmmarAbouZor this looks great. To not add yet another command to the log view I would like this to be an option in the new search popup |
@extrawurst I think it would be better in the search popup too. |
#1816 is merged |
- Jump to commit is embedded into search commit popup - Popup strings are also deleted
- Rename related fields and methods from search commit hash to jump commit
@extrawurst Jump to SHA is embedded in
jump_sha.mp4 |
but do not add a new popup. Reuse this one please. Make it use a mode neun or something to store what mode it is in at the moment |
- Validation isn't visualize yet
- Event handling is done in each mode independently to reduce code complexity
@extrawurst I've built the different modes behavior in
I think it would be better to define how the validation visualization should look before it's implemented.
jump_sha.mp4 |
For accessibility, it's important that information is not conveyed only with color. (7% of men are red/green color blind) |
We can show a validation message in the right bottom corner like in the commit popup. (first iteration of this PR used that) Considering that the users won't type the hashes themselves in the most cases but they will paste from the clipboard, I don't think that implementing an auto-completion here would add more value. |
that was not the idea. the command for jump-to-commit-sha should be only available in the search-popup to prevent littering the revlog command list more. it contextually also makes sense to be a sub behaviour of also please add the new command in the cmd-bar so its clear that this feature is available
lets do that
no magic please. for the unlikely case that people want to search for incomplete/fractional SHAs we can add that to the regular substring search |
- Jump to commit is now a sub-command in log_search_popup - Remove redundant JumpToCommit Internal Event and use SelectCommitInRevlog instead
- Rename jump_to_commit_hash to search_commit_sha - Remove Jump to commit title and use search instead - Change find_commit_sha group
- Mode switch is done internally - Switch to jump commit is always enabled - Esc in jump commit mode return to search mode
jump_sha.mp4 |
Thanks for sticking with this. Good work! ❤️ |
This Pull Request fixes/closes #1799
This PR stills work in progress
It changes the following:
Ctrl-j
The following point need clarification:
git2::revparse_single()
. I've tested it with big repos and didn't see any performance hit with it. But we still can make simple live validation (only hash chars, no spaces, length at most 40) If the current implementation's performance isn't good enough.I'll add a demo for the current progress
I followed the checklist:
make check
without errors