summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-12-16 21:49:31 +0000
committerBram Moolenaar <Bram@vim.org>2005-12-16 21:49:31 +0000
commit12033fb4bfa58447ba89104ff671a076e756b8e6 (patch)
tree3a109c25124eea7e67e2b2a6a02db9db18bb7a2c /src/normal.c
parentbca84a12bdbb4bb33e9ba32bfe320abbf54ae5fb (diff)
downloadvim-git-12033fb4bfa58447ba89104ff671a076e756b8e6.tar.gz
updated for version 7.0171
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/normal.c b/src/normal.c
index dfd2f0dfe..2526de379 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -2108,7 +2108,7 @@ op_colon(oap)
}
/*
- * Handle the "gy" operator: call 'operatorfunc'.
+ * Handle the "g@" operator: call 'operatorfunc'.
*/
/*ARGSUSED*/
void
@@ -7724,7 +7724,7 @@ nv_g_cmd(cap)
* "gu" Change text to lower case.
* "gU" Change text to upper case.
* "g?" rot13 encoding
- * "gy" call 'operatorfunc'
+ * "g@" call 'operatorfunc'
*/
case 'q':
case 'w':
@@ -7734,7 +7734,7 @@ nv_g_cmd(cap)
case 'u':
case 'U':
case '?':
- case 'y':
+ case '@':
nv_operator(cap);
break;