mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 23:31:51 +00:00
Remove POSIX 'cpoptions': '|'
It wasn't even hooked up to anything... must have been removed when term.c was replaced.
This commit is contained in:
@@ -1964,10 +1964,6 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
buffer is modified, unless ! is used. Vim doesn't
|
buffer is modified, unless ! is used. Vim doesn't
|
||||||
need this, since it remembers the full path of an
|
need this, since it remembers the full path of an
|
||||||
opened file.
|
opened file.
|
||||||
*cpo-bar*
|
|
||||||
| The value of the $LINES and $COLUMNS environment
|
|
||||||
variables overrule the terminal size values obtained
|
|
||||||
with system specific functions.
|
|
||||||
|
|
||||||
*'cryptmethod'* *'cm'*
|
*'cryptmethod'* *'cm'*
|
||||||
'cryptmethod' Removed. |vim-differences| {Nvim}
|
'cryptmethod' Removed. |vim-differences| {Nvim}
|
||||||
|
@@ -129,7 +129,6 @@
|
|||||||
#define CPO_SPECI '<' /* don't recognize <> in mappings */
|
#define CPO_SPECI '<' /* don't recognize <> in mappings */
|
||||||
#define CPO_REGAPPEND '>' /* insert NL when appending to a register */
|
#define CPO_REGAPPEND '>' /* insert NL when appending to a register */
|
||||||
/* POSIX flags */
|
/* POSIX flags */
|
||||||
#define CPO_TSIZE '|' /* $LINES and $COLUMNS overrule term size */
|
|
||||||
#define CPO_PRESERVE '&' /* keep swap file after :preserve */
|
#define CPO_PRESERVE '&' /* keep swap file after :preserve */
|
||||||
#define CPO_SUBPERCENT '/' /* % in :s string uses previous one */
|
#define CPO_SUBPERCENT '/' /* % in :s string uses previous one */
|
||||||
#define CPO_BACKSL '\\' /* \ is not special in [] */
|
#define CPO_BACKSL '\\' /* \ is not special in [] */
|
||||||
@@ -140,7 +139,7 @@
|
|||||||
#define CPO_VIM "aABceFs"
|
#define CPO_VIM "aABceFs"
|
||||||
#define CPO_VI "aAbBcCdDeEfFiIJkKlLmMnoOpPqrRsStuvWxXyZ$!%+<>;"
|
#define CPO_VI "aAbBcCdDeEfFiIJkKlLmMnoOpPqrRsStuvWxXyZ$!%+<>;"
|
||||||
#define CPO_ALL \
|
#define CPO_ALL \
|
||||||
"aAbBcCdDeEfFiIJkKlLmMnoOpPqrRsStuvWxXyZ$!%+<>|&/\\.;"
|
"aAbBcCdDeEfFiIJkKlLmMnoOpPqrRsStuvWxXyZ$!%+<>&/\\.;"
|
||||||
|
|
||||||
/* characters for p_ww option: */
|
/* characters for p_ww option: */
|
||||||
#define WW_ALL "bshl<>[],~"
|
#define WW_ALL "bshl<>[],~"
|
||||||
|
Reference in New Issue
Block a user