aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2018-04-10 23:20:16 +0200
committerMarc André Tanner <mat@brain-dump.org>2018-04-10 23:20:16 +0200
commitbac1186a4497b011ac262e0bc9f602ee3872fec4 (patch)
treee9436627d3b95b7b47194938f0bed2febd2b1c0a /main.c
parent82646f1b541185e4cb1874f4df584104e63db3df (diff)
parent0aea8e6e0aca678e3ea50b5a01d1e4e628f7fcad (diff)
downloadvis-bac1186a4497b011ac262e0bc9f602ee3872fec4.tar.gz
vis-bac1186a4497b011ac262e0bc9f602ee3872fec4.tar.xz
Merge branch 'typos' of https://github.com/Two-Finger/vis
Diffstat (limited to 'main.c')
-rw-r--r--main.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/main.c b/main.c
index 8f1a13f..0c6e4d0 100644
--- a/main.c
+++ b/main.c
@@ -183,8 +183,8 @@ enum {
VIS_ACTION_CURSOR_SENTENCE_NEXT,
VIS_ACTION_CURSOR_BLOCK_START,
VIS_ACTION_CURSOR_BLOCK_END,
- VIS_ACTION_CURSOR_PARENTHESE_START,
- VIS_ACTION_CURSOR_PARENTHESE_END,
+ VIS_ACTION_CURSOR_PARENTHESIS_START,
+ VIS_ACTION_CURSOR_PARENTHESIS_END,
VIS_ACTION_CURSOR_COLUMN,
VIS_ACTION_CURSOR_LINE_FIRST,
VIS_ACTION_CURSOR_LINE_LAST,
@@ -514,15 +514,15 @@ static const KeyAction vis_action[] = {
VIS_HELP("Move cursor to the closing curly brace in a block")
movement, { .i = VIS_MOVE_BLOCK_END }
},
- [VIS_ACTION_CURSOR_PARENTHESE_START] = {
- "vis-motion-parenthese-start",
- VIS_HELP("Move cursor to the opening parenthese inside a pair of parentheses")
- movement, { .i = VIS_MOVE_PARENTHESE_START }
+ [VIS_ACTION_CURSOR_PARENTHESIS_START] = {
+ "vis-motion-parenthesis-start",
+ VIS_HELP("Move cursor to the opening parenthesis inside a pair of parentheses")
+ movement, { .i = VIS_MOVE_PARENTHESIS_START }
},
- [VIS_ACTION_CURSOR_PARENTHESE_END] = {
- "vis-motion-parenthese-end",
- VIS_HELP("Move cursor to the closing parenthese inside a pair of parentheses")
- movement, { .i = VIS_MOVE_PARENTHESE_END }
+ [VIS_ACTION_CURSOR_PARENTHESIS_END] = {
+ "vis-motion-parenthesis-end",
+ VIS_HELP("Move cursor to the closing parenthesis inside a pair of parentheses")
+ movement, { .i = VIS_MOVE_PARENTHESIS_END }
},
[VIS_ACTION_CURSOR_COLUMN] = {
"vis-motion-column",
@@ -1135,12 +1135,12 @@ static const KeyAction vis_action[] = {
textobj, { .i = VIS_TEXTOBJECT_INNER_SQUARE_BRACKET }
},
[VIS_ACTION_TEXT_OBJECT_PARENTHESIS_OUTER] = {
- "vis-textobject-parentheses-outer",
+ "vis-textobject-parenthesis-outer",
VIS_HELP("() block (outer variant)")
textobj, { .i = VIS_TEXTOBJECT_OUTER_PARENTHESIS }
},
[VIS_ACTION_TEXT_OBJECT_PARENTHESIS_INNER] = {
- "vis-textobject-parentheses-inner",
+ "vis-textobject-parenthesis-inner",
VIS_HELP("() block (inner variant)")
textobj, { .i = VIS_TEXTOBJECT_INNER_PARENTHESIS }
},