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.
For customize key bindings.
this will be easily accessible once the settings window and key bindings in it are implemented. until then, we'll need to manually edit the
config.ini
file to set key bindings.To test:
Add a new group and values as shown below to your config.ini file:
open=Ctrl+1
: Sets the shortcut for "open" toCtrl+1
save=Ctrl+2, Ctrl+3, Ctrl+4
: You can add multiple shortcuts by separating with,
. All of these shortcuts will trigger the action.new_tag="Ctrl+,", Ctrl+\"
: Use"
to specify,
as a key. use\
before"
to specify"
as a key (QSettings
supported format)deselect=
: An empty value means no shortcut keys will trigger the action.When saving shortcuts, the entry is removed from
settings.ini
if the shortcut matches the default shortcut for the action. is this behavior expected or should i change it?