You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
Press ctrl+right arrow (or Mac, alt+right arrow) a few times
Result:
Sequence is: end of "myFunc" (before opening paren), end of "foo" (but before closing quote), end of "bar" (before closing paren)... and then skips to the end of "obj" (before the dot) on the next line
Expected:
In Sublime, the sequence is: end of "myFunc", start of "foo" (after opening quote), end of "foo", start of "bar" (after comma), end of "bar", end of line (after semicolon), start of next line (before curly brace), end of line (after curly brace), start of "obj", end of "obj" (before dot).
IntelliJ is the same.
Eclipse is the same (although by default it will also stop in the middle of "myFunc" due to the camelcasing).
The text was updated successfully, but these errors were encountered:
The behavior is not quite as described above: in cases where a line contains only one word (or no word: blank, all whitespace, all non-word chars, etc.) it doesn't match Sublime and other editors. But it is much improved.
Start with this JS in Brackets:
Result:
Sequence is: end of "myFunc" (before opening paren), end of "foo" (but before closing quote), end of "bar" (before closing paren)... and then skips to the end of "obj" (before the dot) on the next line
Expected:
In Sublime, the sequence is: end of "myFunc", start of "foo" (after opening quote), end of "foo", start of "bar" (after comma), end of "bar", end of line (after semicolon), start of next line (before curly brace), end of line (after curly brace), start of "obj", end of "obj" (before dot).
IntelliJ is the same.
Eclipse is the same (although by default it will also stop in the middle of "myFunc" due to the camelcasing).
The text was updated successfully, but these errors were encountered: