-
Notifications
You must be signed in to change notification settings - Fork 46
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
Ability to customize status bar help message #129
Comments
I don't think it's possible in an easy and elegant way using the current API. |
If you install via Package Control on ST3 you can create I think we should at least set correct keybindings in status-bar when renaming dynamically. |
The Question is, can we? |
@vovkkk thanks, just learned this. @aziz reading dynamically from the key binding file is cool, for the time being I am good for just having a customized |
It feels very hacky. I want a more robust and reliable solution, not just a hack! |
i stumble upon this FindKeyConflicts, it go through all the binding files. But for a specific package, is it only have to go through the package's default and user's key binding file right? |
No, keybinding can be anywhere. I thought command has info about keybinding since ST show keys in menus dynamically, but apparently it does not. |
That is what I meant menu and command palette, but this info is not available programmatically it seems. You can get all text command as list with You can look at You will see that there is no any way in API to get keys for command. You can create menu [
{
"id": "filebrowser",
"caption": "FileBrowser",
"children":
[
{ "command": "dired_rename_commit" },
{ "command": "dired_rename_cancel" },
{ "command": "dired_expand" }
]
}
] |
I use different shortcut for rename mode to commit and discard changes due to I want esc to clear out multiple cursors not to undo.
I do by adding these shortcut to my user key binding
So now I want to customize the help file when press ? and the status bar help message down it the bottom of the windows. Can it like have another setting field to specify the custom
shortcuts.md
?The text was updated successfully, but these errors were encountered: