0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.0171

This commit is contained in:
Bram Moolenaar
2005-12-16 21:49:31 +00:00
parent bca84a12bd
commit 12033fb4bf
8 changed files with 69 additions and 38 deletions

View File

@@ -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;