Some times, It is more convenient to select things backwards, instead of forward. For now I could do find_under_prev
until I got where I would like then start, then start doing find_under_expand
until I got where I was.
Is it possible to do inverse/reversed selection? I tried searching for its implementation under Default.sublime-packages
, but I could not find it there. Perhaps this is implemented on the core?
I tried calling it as follow with no success:
-
reverse
{ "keys": ["ctrl+d"], "command": "find_under_expand", "args": { "reverse": true } }
-
reverse
{ "keys": ["ctrl+d"], "command": "find_under_expand", "args": { "reverse": false } }
-
inverse
{ "keys": ["ctrl+d"], "command": "find_under_expand", "args": { "inverse": true } }
-
inverse
{ "keys": ["ctrl+d"], "command": "find_under_expand", "args": { "inverse": false } }
-
forward
{ "keys": ["ctrl+d"], "command": "find_under_expand", "args": { "forward": true } }
-
forward
{ "keys": ["ctrl+d"], "command": "find_under_expand", "args": { "forward": false } }
Related: