still doesnât work how I would like (even if the next word thing itâs a interesting feature)
I made another video, with some caption: http://www.youtube.com/watch?v=
It is the correct behavior or there is a problem in regex parser?
still doesnât work how I would like (even if the next word thing itâs a interesting feature)
I made another video, with some caption: http://www.youtube.com/watch?v=
It is the correct behavior or there is a problem in regex parser?
It has nothing to do with the regex, the command youâre using is move_to bol, i.e., move to the beginning of line, itâs the same command that the home key is bound to on windows.
Yes, but the move to BOL works ok. WHEN should move (the condition) at the BOL doesnât seems to work well.
Just curious, did I explain well whatâs the problem? Or we both shoot in the dark and hope that the other one will understand ?
Thanks.
I donât know whatâs going in this thread, but iamtz, do you mean â\t\bâ or â\t\bâ? In the first case, youâre escaping both sequences at the Json level (tab + backspace), not at the regexp engine level (tab + word boundary anchor).
@Guillermooo: and⌠any ideas on what should i have to do? Basically i need to skip all tab chars from the current position to the next non-tab char when i press tab key. I guess i made a definition as well of my problem
Doesnât Ctrl+right do more or less what you want? Ctrl+right, Ctrl+left seems to do the trick for me.
Now i understand what jps said when he referred here!
Works like a charm now!
{ "keys": "tab"], "command": "move", "args": {"by": "words", "forward": true}, "context":
{
"key": "following_text",
"operator": "regex_contains",
"operand": "\\t",
"match_all":true
}
]
}
Thanks a lot guys! Sublime just became more awesome than was 5 mins ago!