We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sublime's default keybindings
{ "keys": ["ctrl+shift+["], "command": "fold" }, { "keys": ["ctrl+shift+]"], "command": "unfold" },
fold and unfold code, like this:
In
TypeScript-Sublime-Plugin/Default.sublime-keymap
Lines 173 to 174 in a0d393a
the TypeScript plugin overrides the unfold, so you can no longer unfold code after folding it.
unfold
Does it make sense to override a default keybinding this way?
The text was updated successfully, but these errors were encountered:
@nh2 , I manage to change the keybinding based on this reference
In my Default (Linux).sublime-keymap
Default (Linux).sublime-keymap
[ ... // Reimplement default { "keys": ["ctrl+shift+["], "command": "fold" }, { "keys": ["ctrl+shift+]"], "command": "unfold" }, ... ... // Rebind default typescript key binding { "keys": ["ctrl+shift+\\"], "command": "typescript_format_brackets", "context": [ { "key": "selector", "operator": "equal", "operand": "source.ts, source.tsx, source.js, source.jsx" } ] }, ... ]
Sorry, something went wrong.
No branches or pull requests
Sublime's default keybindings
fold and unfold code, like this:
In
TypeScript-Sublime-Plugin/Default.sublime-keymap
Lines 173 to 174 in a0d393a
the TypeScript plugin overrides the
unfold
, so you can no longer unfold code after folding it.Does it make sense to override a default keybinding this way?
The text was updated successfully, but these errors were encountered: