aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorTwoFinger <Two-Finger@users.noreply.github.com>2018-03-30 04:52:10 +0300
committerTwoFinger <Two-Finger@users.noreply.github.com>2018-04-08 21:20:03 +0300
commit0aea8e6e0aca678e3ea50b5a01d1e4e628f7fcad (patch)
tree350e18fece8db3a78bf417b057f8aabedb58f47f /config.def.h
parent36b573ad416f18e14f85d69cd5acf431b33fd48a (diff)
downloadvis-0aea8e6e0aca678e3ea50b5a01d1e4e628f7fcad.tar.gz
vis-0aea8e6e0aca678e3ea50b5a01d1e4e628f7fcad.tar.xz
Fix "parenthese" in identifiers
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index d080112..edb9571 100644
--- a/config.def.h
+++ b/config.def.h
@@ -28,8 +28,8 @@ static const KeyBinding bindings_motions[] = {
{ "g|", ACTION(CURSOR_COLUMN) },
{ "[{", ACTION(CURSOR_BLOCK_START) },
{ "]}", ACTION(CURSOR_BLOCK_END) },
- { "[(", ACTION(CURSOR_PARENTHESE_START) },
- { "])", ACTION(CURSOR_PARENTHESE_END) },
+ { "[(", ACTION(CURSOR_PARENTHESIS_START) },
+ { "])", ACTION(CURSOR_PARENTHESIS_END) },
{ "$", ACTION(CURSOR_LINE_END) },
{ "^", ACTION(CURSOR_LINE_START) },
{ "}", ACTION(CURSOR_PARAGRAPH_NEXT) },