-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
[CLOSED] Ctrl+right arrow skips too many tokens #665
Comments
Comment by peterflynn Similar to #627, this isn't a huge glaring bug, but it makes navigating around via keyboard feel just subtly flaky in a hard-to-place way. |
Comment by njx QRB marking "to user story" for keyboard shortcut story. |
Comment by pthiess Moved to Trello - Card 272 |
Comment by peterflynn This was fixed in CodeMirror recently: codemirror/codemirror5@047e0f5. See discussion thread for details: https://groups.google.com/d/msg/codemirror/WOoqlDuIbaY/1u4ugOukHOIJ. 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. |
Issue by peterflynn
Tuesday Apr 17, 2012 at 22:00 GMT
Originally opened as adobe/brackets#670
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: