1
0
forked from aniani/vim

patch 8.1.2366: using old C style comments

Problem:    Using old C style comments.
Solution:   Use // comments where appropriate.
This commit is contained in:
Bram Moolenaar
2019-11-30 19:44:38 +01:00
parent 20ebbeac46
commit 9bf703d46a
38 changed files with 1368 additions and 1375 deletions

View File

@@ -197,7 +197,7 @@
#define CPO_MINUS '-' // "9-" fails at and before line 9
#define CPO_SPECI '<' // don't recognize <> in mappings
#define CPO_REGAPPEND '>' // insert NL when appending to a register
/* POSIX flags */
// POSIX flags
#define CPO_HASH '#' // "D", "o" and "O" do not use a count
#define CPO_PARA '{' // "{" is also a paragraph boundary
#define CPO_TSIZE '|' // $LINES and $COLUMNS overrule term size
@@ -207,7 +207,7 @@
#define CPO_CHDIR '.' // don't chdir if buffer is modified
#define CPO_SCOLON ';' // using "," and ";" will skip over char if
// cursor would not move
/* default values for Vim, Vi and POSIX */
// default values for Vim, Vi and POSIX
#define CPO_VIM "aABceFs"
#define CPO_VI "aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>;"
#define CPO_ALL "aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>#{|&/\\.;"