We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f901c5 commit 27ec446Copy full SHA for 27ec446
keymap/sublime.js
@@ -32,7 +32,10 @@
32
} else if (state == "in") {
33
if (type != cat) {
34
if (type == "w" && cat == "W" && dir < 0) pos--;
35
- if (type == "W" && cat == "w" && dir > 0) { type = "w"; continue; }
+ if (type == "W" && cat == "w" && dir > 0) { // From uppercase to lowercase
36
+ if (pos == start.ch + 1) { type = "w"; continue; }
37
+ else pos--;
38
+ }
39
break;
40
}
41
0 commit comments