mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Remove POSIX 'cpoptions': cleanup
- CPO_ALL and CPO_VI are identical, so merge them - No longer check for the environment variable 'VIM_POSIX' - In vim_diff.txt, mention the removal of 'cpoptions' flags
This commit is contained in:
parent
4f444ae4f8
commit
85b7ea9a87
@ -269,11 +269,6 @@ Vi "the original". Without further remarks this is the version
|
||||
to. Only runs under Unix. Source code only available with a
|
||||
license. More information on Vi can be found through:
|
||||
http://vi-editor.org [doesn't currently work...]
|
||||
*Posix*
|
||||
Posix From the IEEE standard 1003.2, Part 2: Shell and utilities.
|
||||
Generally known as "Posix". This is a textual description of
|
||||
how Vi is supposed to work.
|
||||
See |posix-compliance|.
|
||||
*Nvi*
|
||||
Nvi The "New" Vi. The version of Vi that comes with BSD 4.4 and FreeBSD.
|
||||
Very good compatibility with the original Vi, with a few extensions.
|
||||
|
@ -469,9 +469,7 @@ the macros ".IP", ".LP", etc. (These are nroff macros, so the dot must be in
|
||||
the first column). A section boundary is also a paragraph boundary.
|
||||
Note that a blank line (only containing white space) is NOT a paragraph
|
||||
boundary.
|
||||
Also note that this does not include a '{' or '}' in the first column. When
|
||||
the '{' flag is in 'cpoptions' then '{' in the first column is used as a
|
||||
paragraph boundary |posix|.
|
||||
Note: this does not include a '{' or '}' in the first column.
|
||||
|
||||
*section*
|
||||
A section begins after a form-feed (<C-L>) in the first column and at each of
|
||||
|
@ -1493,8 +1493,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
'columns' 'co' number (default 80 or terminal width)
|
||||
global
|
||||
Number of columns of the screen. Normally this is set by the terminal
|
||||
initialization and does not have to be set by hand. Also see
|
||||
|posix-screen-size|.
|
||||
initialization and does not have to be set by hand.
|
||||
When Vim is running in the GUI or in a resizable window, setting this
|
||||
option will cause the window size to be changed. When you only want
|
||||
to use the size for the GUI, put the command in your |gvimrc| file.
|
||||
@ -1701,10 +1700,6 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
Commas can be added for readability.
|
||||
To avoid problems with flags that are added in the future, use the
|
||||
"+=" and "-=" feature of ":set" |add-option-flags|.
|
||||
NOTE: This option is set to the POSIX default value at startup when
|
||||
the Vi default value would be used and the $VIM_POSIX environment
|
||||
variable exists |posix|. This means Vim tries to behave like the
|
||||
POSIX specification.
|
||||
|
||||
contains behavior ~
|
||||
*cpo-a*
|
||||
@ -1802,7 +1797,6 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
See |/[]|
|
||||
'l' included: "/[ \t]" finds <Space>, '\' and 't'
|
||||
'l' excluded: "/[ \t]" finds <Space> and <Tab>
|
||||
Also see |cpo-\|.
|
||||
*cpo-L*
|
||||
L When the 'list' option is set, 'wrapmargin',
|
||||
'textwidth', 'softtabstop' and Virtual Replace mode
|
||||
@ -1942,9 +1936,6 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
the cursor would skip over it and jump to the
|
||||
following occurrence.
|
||||
|
||||
POSIX flags. These are not included in the Vi default value, except
|
||||
when $VIM_POSIX was set on startup. |posix|
|
||||
|
||||
*'cryptmethod'* *'cm'*
|
||||
'cryptmethod' Removed. |vim-differences| {Nvim}
|
||||
|
||||
@ -4128,7 +4119,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
global
|
||||
Number of lines of the Vim window.
|
||||
Normally you don't need to set this. It is done automatically by the
|
||||
terminal initialization code. Also see |posix-screen-size|.
|
||||
terminal initialization code.
|
||||
When Vim is running in the GUI or in a resizable window, setting this
|
||||
option will cause the window size to be changed. When you only want
|
||||
to use the size for the GUI, put the command in your |gvimrc| file.
|
||||
@ -5601,8 +5592,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
function to get the effective shiftwidth value.
|
||||
|
||||
*'shortmess'* *'shm'*
|
||||
'shortmess' 'shm' string (Vim default "filnxtToO", Vi default: "",
|
||||
POSIX default: "A")
|
||||
'shortmess' 'shm' string (Vim default "filnxtToO", Vi default: "")
|
||||
global
|
||||
This option helps to avoid all the |hit-enter| prompts caused by file
|
||||
messages, for example with CTRL-G, and to avoid some other messages.
|
||||
|
@ -1994,71 +1994,6 @@ Awaiting updated patches:
|
||||
- Patch for "paranoid mode" by Kevin Collins, March 7. Needs much more work.
|
||||
|
||||
|
||||
Vi incompatibility:
|
||||
- Try new POSIX tests, made after my comments. (Geoff Clare, 2005 April 7)
|
||||
Version 1.5 is in ~/src/posix/1.5. (Lynne Canal)
|
||||
8 With undo/redo only marks in the changed lines should be changed. Other
|
||||
marks should be kept. Vi keeps each mark at the same text, even when it
|
||||
is deleted or restored. (Webb)
|
||||
Also: A mark is lost after: make change, undo, redo and undo.
|
||||
Example: "{d''" then "u" then "d''": deletes an extra line, because the ''
|
||||
position is one line down. (Veselinovic)
|
||||
8 When stdin is not a tty, and Vim reads commands from it, an error should
|
||||
make Vim exit.
|
||||
7 Unix Vim (not gvim): Typing CTRL-C in Ex mode should finish the line
|
||||
(currently you can continue typing, but it's truncated later anyway).
|
||||
Requires a way to make CTRL-C interrupt select() when in cooked input.
|
||||
8 When loading a file in the .exrc, Vi loads the argument anyway. Vim skips
|
||||
loading the argument if there is a file already. When no file argument
|
||||
given, Vi starts with an empty buffer, Vim keeps the loaded file. (Bearded)
|
||||
6 In Insert mode, when using <BS> or <Del>, don't wipe out the text, but
|
||||
only move back the cursor. Behaves like '$' in 'cpoptions'. Use a flag
|
||||
in 'cpoptions' to switch this on/off.
|
||||
8 When editing a file which is a symbolic link, and then opening another
|
||||
symbolic link on the same file, Vim uses the name of the first one.
|
||||
Adjust the file name in the buffer to the last one used? Use several file
|
||||
names in one buffer???
|
||||
Also: When first editing file "test", which is symlink to "test2", and
|
||||
then editing "test2", you end up editing buffer "test" again. It's not
|
||||
logical that the name that was first used sticks with the buffer.
|
||||
7 The ":undo" command works differently in Ex mode. Edit a file, make some
|
||||
changes, "Q", "undo" and _all_ changes are undone, like the ":visual"
|
||||
command was one command.
|
||||
On the other hand, an ":undo" command in an Ex script only undoes the last
|
||||
change (e.g., use two :append commands, then :undo).
|
||||
7 The ":map" command output overwrites the command. Perhaps it should keep
|
||||
the ":map" when it's used without arguments?
|
||||
7 CTRL-L is not the end of a section? It is for Posix! Make it an option.
|
||||
7 Implement 'prompt' option. Init to off when stdin is not a tty.
|
||||
7 CTRL-T in Insert mode inserts 'shiftwidth' of spaces at the cursor. Add a
|
||||
flag in 'cpoptions' for this.
|
||||
7 Add a way to send an email for a crashed edit session. Create a file when
|
||||
making changes (containing name of the swap file), delete it when writing
|
||||
the file. Supply a program that can check for crashed sessions (either
|
||||
all, for a system startup, or for one user, for in a .login file).
|
||||
7 Vi doesn't do autoindenting when input is not from a tty (in Ex mode).
|
||||
7 "z3<CR>" should still use the whole window, but only redisplay 3 lines.
|
||||
7 ":tag xx" should move the cursor to the first non-blank. Or should it go
|
||||
to the match with the tag? Option?
|
||||
7 Implement 'autoprint'/'ap' option.
|
||||
7 Add flag in 'cpoptions' that makes <BS> after a count work like <Del>
|
||||
(Sayre).
|
||||
7 Add flag in 'cpoptions' that makes operator (yank, filter) not move the
|
||||
cursor, at least when cancelled. (default Vi compatible).
|
||||
7 This Vi-trick doesn't work: "Q" to go to Ex mode, then "g/pattern/visual".
|
||||
In Vi you can edit in visual mode, and when doing "Q" you jump to the next
|
||||
match. Nvi can do it too.
|
||||
7 Support '\' for line continuation in Ex mode for these commands: (Luebking)
|
||||
g/./a\ g/pattern1/ s/pattern2/rep1\\
|
||||
line 1\ line 2\\
|
||||
line 2\ line 3\\
|
||||
. line4/
|
||||
6 ":e /tmp/$tty" doesn't work. ":e $uid" does. Is $tty not set because of
|
||||
the way the shell is started?
|
||||
6 Vi compatibility (optional): make "ia<CR><ESC>10." do the same strange
|
||||
thing. (only repeat insert for the first line).
|
||||
|
||||
|
||||
MSDOS and Win32:
|
||||
8 Should $USERPROFILE be preferred above $HOMEDRIVE/$HOMEPATH? No, but it's
|
||||
a good fallback, thus use:
|
||||
|
@ -10,17 +10,12 @@ Throughout the help files differences between Vim and Vi/Ex are given in
|
||||
curly braces, like "{not in Vi}". This file only lists what has not been
|
||||
mentioned in other files and gives an overview.
|
||||
|
||||
Vim is mostly POSIX 1003.2-1 compliant. The only command known to be missing
|
||||
is ":open". There are probably a lot of small differences (either because Vim
|
||||
is missing something or because Posix is beside the mark).
|
||||
|
||||
1. Simulated command |simulated-command|
|
||||
2. Missing options |missing-options|
|
||||
3. Limits |limits|
|
||||
4. The most interesting additions |vim-additions|
|
||||
5. Other vim features |other-features|
|
||||
6. Command-line arguments |cmdline-arguments|
|
||||
7. POSIX compliance |posix-compliance|
|
||||
|
||||
==============================================================================
|
||||
1. Simulated command *simulated-command*
|
||||
@ -919,59 +914,5 @@ Only Vim is able to accept options in between and after the file names.
|
||||
|
||||
@{cmdfile} Vile: use {cmdfile} as startup file.
|
||||
|
||||
==============================================================================
|
||||
7. POSIX compliance *posix* *posix-compliance*
|
||||
|
||||
In 2005 the POSIX test suite was run to check the compatibility of Vim. Most
|
||||
of the test was executed properly. There are the few things where Vim
|
||||
is not POSIX compliant, even when run in Vi compatibility mode.
|
||||
|
||||
Set the $VIM_POSIX environment variable to have 'cpoptions' include the POSIX
|
||||
flags when Vim starts up. This makes Vim run as POSIX as it can. That's
|
||||
a bit different from being Vi compatible.
|
||||
|
||||
This is where Vim does not behave as POSIX specifies and why:
|
||||
|
||||
*posix-screen-size*
|
||||
The $COLUMNS and $LINES environment variables are ignored by Vim if
|
||||
the size can be obtained from the terminal in a more reliable way.
|
||||
Add the '|' flag to 'cpoptions' to have $COLUMNS and $LINES overrule
|
||||
sizes obtained in another way.
|
||||
|
||||
The "{" and "}" commands don't stop at a "{" in the original Vi, but
|
||||
POSIX specifies it does. Add the '{' flag to 'cpoptions' if you want
|
||||
it the POSIX way.
|
||||
|
||||
The "D", "o" and "O" commands accept a count. Also when repeated.
|
||||
Add the '#' flag to 'cpoptions' if you want to ignore the count.
|
||||
|
||||
The ":cd" command fails if the current buffer is modified when the '.'
|
||||
flag is present in 'cpoptions'.
|
||||
|
||||
There is no ATTENTION message, the "A" flag is added to 'shortmess'.
|
||||
|
||||
These are remarks about running the POSIX test suite:
|
||||
- vi test 33 sometimes fails for unknown reasons
|
||||
- vi test 250 fails; behavior will be changed in a new revision
|
||||
http://www.opengroup.org/austin/mailarchives/ag-review/msg01710.html
|
||||
(link no longer works, perhaps it's now:
|
||||
https://www.opengroup.org/sophocles/show_mail.tpl?CALLER=show_archive.tpl&source=L&listname=austin-review-l&id=1711)
|
||||
- vi test 310 fails; exit code non-zero when any error occurred?
|
||||
- ex test 24 fails because test is wrong. Changed between SUSv2 and SUSv3.
|
||||
- ex tests 47, 48, 49, 72, 73 fail because .exrc file isn't read in silent
|
||||
mode and $EXINIT isn't used.
|
||||
- ex tests 76, 78 fail because echo is used instead of printf. (fixed)
|
||||
Also: problem with \s not changed to space.
|
||||
- ex test 355 fails because 'window' isn't used for "30z".
|
||||
- ex test 368 fails because shell command isn't echoed in silent mode.
|
||||
- ex test 394 fails because "=" command output isn't visible in silent mode.
|
||||
- ex test 411 fails because test file is wrong, contains stray ':'.
|
||||
- ex test 475 and 476 fail because reprint output isn't visible in silent mode.
|
||||
- ex test 480 and 481 fail because the tags file has spaces instead of a tab.
|
||||
- ex test 502 fails because .exrc isn't read in silent mode.
|
||||
- ex test 509 fails because .exrc isn't read in silent mode. and exit code is
|
||||
1 instead of 2.
|
||||
- ex test 534 fails because .exrc isn't read in silent mode.
|
||||
|
||||
|
||||
vim:tw=78:ts=8:ft=help:norl:
|
||||
|
@ -135,6 +135,7 @@ Highlight groups:
|
||||
|hl-VisualNOS|
|
||||
|
||||
Other options:
|
||||
'cpoptions' ('g', 'w', 'H', '*', '-', 'j', and all POSIX flags were removed)
|
||||
'guioptions' (only the 't' flag was removed)
|
||||
'guipty'
|
||||
'macatsui'
|
||||
|
@ -1724,12 +1724,6 @@ void set_init_1(void)
|
||||
/* Be nocompatible */
|
||||
p_cp = FALSE;
|
||||
|
||||
/* Use POSIX compatibility when $VIM_POSIX is set. */
|
||||
if (os_env_exists("VIM_POSIX")) {
|
||||
set_string_default("cpo", (char_u *)CPO_ALL);
|
||||
set_string_default("shm", (char_u *)"A");
|
||||
}
|
||||
|
||||
/*
|
||||
* Find default value for 'shell' option.
|
||||
* Don't use it if it is empty.
|
||||
@ -4226,7 +4220,7 @@ did_set_string_option (
|
||||
if (varp == &p_shm)
|
||||
p = (char_u *)SHM_ALL;
|
||||
else if (varp == &(p_cpo))
|
||||
p = (char_u *)CPO_ALL;
|
||||
p = (char_u *)CPO_VI;
|
||||
else if (varp == &(curbuf->b_p_fo))
|
||||
p = (char_u *)FO_ALL;
|
||||
else if (varp == &curwin->w_p_cocu)
|
||||
|
@ -128,14 +128,11 @@
|
||||
#define CPO_PLUS '+' /* ":write file" resets 'modified' */
|
||||
#define CPO_SPECI '<' /* don't recognize <> in mappings */
|
||||
#define CPO_REGAPPEND '>' /* insert NL when appending to a register */
|
||||
/* POSIX flags */
|
||||
#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 and Vi */
|
||||
#define CPO_VIM "aABceFs"
|
||||
#define CPO_VI "aAbBcCdDeEfFiIJkKlLmMnoOpPqrRsStuvWxXyZ$!%+<>;"
|
||||
#define CPO_ALL \
|
||||
"aAbBcCdDeEfFiIJkKlLmMnoOpPqrRsStuvWxXyZ$!%+<>;"
|
||||
|
||||
/* characters for p_ww option: */
|
||||
#define WW_ALL "bshl<>[],~"
|
||||
|
Loading…
Reference in New Issue
Block a user