diff options
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r-- | src/nvim/misc1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index 3108d0316c..d2ecb9a74b 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -165,7 +165,7 @@ open_line ( *p_extra = NUL; } - u_clearline(); /* cannot do "U" command when adding lines */ + u_clearline(); // cannot do "U" command when adding lines did_si = false; ai_col = 0; @@ -287,7 +287,7 @@ open_line ( */ if (last_char == '{') { did_si = true; // do indent - no_si = TRUE; /* don't delete it when '{' typed */ + no_si = true; // don't delete it when '{' typed } /* * Look for "if" and the like, use 'cinwords'. |