1+ # TODO(xinnjie): distinct move cursor backward/left and move word forward/right, backward != left, some languages use backward as right
12mappings :
23 - id : " actions.cursor.wordRight"
34 name : " Move to next word"
@@ -14,6 +15,8 @@ mappings:
1415 helix :
1516 command : " move_next_word_end"
1617 mode : " insert"
18+ xcode :
19+ textAction : " moveWordForward:"
1720 - id : " actions.cursor.wordPartRight"
1821 name : " Move to next subword"
1922 description : " Move cursor to the end of the next subword (hump)"
@@ -26,10 +29,12 @@ mappings:
2629 context : " Editor"
2730 intellij :
2831 notSupported : true
29- notSupportedReason : " intellij need to turn on `CamelHumps` setting"
32+ note : " intellij need to turn on `CamelHumps` setting"
3033 helix :
3134 command : " move_next_sub_word_start"
3235 mode : " insert"
36+ xcode :
37+ textAction : " moveSubWordForward:"
3338 - id : " actions.cursor.wordLeft"
3439 name : " Move to previous word"
3540 description : " Move cursor to the start of the previous word"
@@ -45,6 +50,8 @@ mappings:
4550 helix :
4651 command : " move_prev_word_start"
4752 mode : " insert"
53+ xcode :
54+ textAction : " moveWordBackward:"
4855 - id : " actions.cursor.wordPartLeft"
4956 name : " Move to previous subword"
5057 description : " Move cursor to the start of the previous subword (hump)"
@@ -57,10 +64,12 @@ mappings:
5764 context : " Editor"
5865 intellij :
5966 notSupported : true
60- notSupportedReason : " intellij need to turn on `CamelHumps` setting"
67+ note : " intellij need to turn on `CamelHumps` setting"
6168 helix :
6269 command : " move_prev_sub_word_start"
6370 mode : " insert"
71+ xcode :
72+ textAction : " moveSubWordBackward:"
6473 - id : " actions.cursor.wordRightSelect"
6574 name : " Select next word"
6675 description : " Select to the end of the next word"
@@ -75,7 +84,9 @@ mappings:
7584 action : " EditorNextWordWithSelection"
7685 helix :
7786 notSupported : true
78- notSupportedReason : " helix move cursor with selection by default"
87+ note : " helix move cursor with selection by default"
88+ xcode :
89+ textAction : " moveWordForwardAndModifySelection:"
7990 - id : " actions.cursor.wordPartRightSelect"
8091 name : " Select next subword"
8192 description : " Select to the end of the next subword (hump)"
@@ -88,9 +99,11 @@ mappings:
8899 context : " Editor"
89100 intellij :
90101 notSupported : true
91- notSupportedReason : " intellij need to turn on `CamelHumps` setting"
102+ note : " intellij need to turn on `CamelHumps` setting"
92103 helix :
93104 notSupported : true
105+ xcode :
106+ textAction : " moveSubWordForwardAndModifySelection:"
94107 - id : " actions.cursor.wordLeftSelect"
95108 name : " Select previous word"
96109 description : " Select to the start of the previous word"
@@ -105,7 +118,9 @@ mappings:
105118 action : " EditorPreviousWordWithSelection"
106119 helix :
107120 notSupported : true
108- notSupportedReason : " helix move cursor with selection by default"
121+ note : " helix move cursor with selection by default"
122+ xcode :
123+ textAction : " moveWordBackwardAndModifySelection:"
109124 - id : " actions.cursor.wordPartLeftSelect"
110125 name : " Select previous subword"
111126 description : " Select to the start of the previous subword (hump)"
@@ -118,7 +133,9 @@ mappings:
118133 context : " Editor"
119134 intellij :
120135 notSupported : true
121- notSupportedReason : " intellij need to turn on `CamelHumps` setting"
136+ note : " intellij need to turn on `CamelHumps` setting"
122137 helix :
123138 notSupported : true
124- notSupportedReason : " helix move cursor with selection by default"
139+ note : " helix move cursor with selection by default"
140+ xcode :
141+ textAction : " moveSubWordBackwardAndModifySelection:"
0 commit comments