sublime-expand-selection-to-quotes
sublime-expand-selection-to-quotes copied to clipboard
Sublime Text plugin to expand selection to surrounding quotes
Made the default selection in-between text and then gave the user option to change the mode with a pre-programmed keybinding for INCLUDING quotes
``` a = 'test' b = "This shouldn't break" ``` If you place your cursor after the apostrophe in `b` and run the command, all is well. If you place...
This plugin should ignore escaped quote, example: ``` var str = 'let\'s go !'; ```
I think to be more consistent with some other "Expand selection to ..." commands, it makes sense to change the default shortcut from `Ctrl+'` to `Super+Shift+'`. What do you think?
Hi! Thanks for this great feature, however: I'm using ctrl+' to comment out code, so I need to map it to a different key combo... but how?? Normally a package...
It would be cool if there was an inverse command which contracts the selection.