From 0aea8e6e0aca678e3ea50b5a01d1e4e628f7fcad Mon Sep 17 00:00:00 2001 From: TwoFinger Date: Fri, 30 Mar 2018 04:52:10 +0300 Subject: Fix "parenthese" in identifiers --- main.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'main.c') 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 } }, -- cgit v1.2.3