summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-06 04:24:17 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-06 04:24:17 +0200
commit84a05acc8c341c2be383198496764992ae971a46 (patch)
tree061887e2e1327a2d0c688cba306b8ec66b3f8477 /src/normal.c
parent84e0f6ca9adcbdca254060713878ebc29faaaa65 (diff)
downloadvim-git-84a05acc8c341c2be383198496764992ae971a46.tar.gz
updated for version 7.3.925v7.3.925
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/normal.c b/src/normal.c
index 879d5c358..339b7205f 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -2513,7 +2513,7 @@ do_mouse(oap, c, dir, count, fixindent)
#ifndef FEAT_VISUAL
/*
- * ALT is only used for starging/extending Visual mode.
+ * ALT is only used for starting/extending Visual mode.
*/
if ((mod_mask & MOD_MASK_ALT))
return FALSE;
@@ -5084,7 +5084,7 @@ dozet:
}
break;
- /* "zE": erease all folds */
+ /* "zE": erase all folds */
case 'E': if (foldmethodIsManual(curwin))
{
clearFolding(curwin);
@@ -7465,7 +7465,7 @@ v_visop(cap)
static char_u trans[] = "YyDdCcxdXdAAIIrr";
/* Uppercase means linewise, except in block mode, then "D" deletes till
- * the end of the line, and "C" replaces til EOL */
+ * the end of the line, and "C" replaces till EOL */
if (isupper(cap->cmdchar))
{
if (VIsual_mode != Ctrl_V)
@@ -8804,7 +8804,7 @@ nv_wordcmd(cap)
* at first, but it's really more what we mean when we say
* 'cw'.
* Another strangeness: When standing on the end of a word
- * "ce" will change until the end of the next wordt, but "cw"
+ * "ce" will change until the end of the next word, but "cw"
* will change only one character! This is done by setting
* flag.
*/
@@ -9150,7 +9150,7 @@ nv_edit(cap)
{
int save_State = State;
- /* Pretent Insert mode here to allow the cursor on the
+ /* Pretend Insert mode here to allow the cursor on the
* character past the end of the line */
State = INSERT;
coladvance((colnr_T)MAXCOL);
@@ -9189,7 +9189,7 @@ nv_edit(cap)
{
int save_State = State;
- /* Pretent Insert mode here to allow the cursor on the
+ /* Pretend Insert mode here to allow the cursor on the
* character past the end of the line */
State = INSERT;
coladvance(getviscol());