mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
doc/vim_diff.txt: formatting
- backticks in Vim help docs are supported by even the default colorscheme; we should start using them for technical identifiers instead of quotation marks. - prefer judicious indentation to gratuitous bullets Helped-by: Michael Reed <m.reed@mykolab.com>
This commit is contained in:
parent
44c2db65db
commit
eceff43169
@ -21,9 +21,9 @@ these differences.
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
1. Configuration *nvim-configuration*
|
1. Configuration *nvim-configuration*
|
||||||
|
|
||||||
- Use ".nvimrc" instead of ".vimrc" for storing configuration.
|
- Use `.nvimrc` instead of `.vimrc` for storing configuration.
|
||||||
- Use ".nvim" instead of ".vim" to store configuration files.
|
- Use `.nvim` instead of `.vim` to store configuration files.
|
||||||
- Use ".nviminfo" instead of ".viminfo" for persistent session information.
|
- Use `.nviminfo` instead of `.viminfo` for persistent session information.
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
2. Option defaults *nvim-option-defaults*
|
2. Option defaults *nvim-option-defaults*
|
||||||
@ -49,27 +49,27 @@ are always available and may be used simultaneously in separate plugins. The
|
|||||||
|
|
||||||
See |nvim-intro| for a list of Nvim's largest new features.
|
See |nvim-intro| for a list of Nvim's largest new features.
|
||||||
|
|
||||||
Meta key chords are recognized (even in the terminal).
|
Meta-key chords are recognized (even in the terminal).
|
||||||
- <M-1>, <M-2>, ...
|
<M-1>, <M-2>, ...
|
||||||
- <M-BS>, <M-Del>, <M-Ins>, ...
|
<M-BS>, <M-Del>, <M-Ins>, ...
|
||||||
- <M-/>, <M-\>, ...
|
<M-/>, <M-\>, ...
|
||||||
- <M-Space>, <M-Enter>, <M-=>, <M-->, <M-?>, <M-$>, ...
|
<M-Space>, <M-Enter>, <M-=>, <M-->, <M-?>, <M-$>, ...
|
||||||
|
|
||||||
CTRL-SHIFT-... key chords are distinguished from CTRL-... variants (even in
|
`CTRL-SHIFT-...` key chords are distinguished from `CTRL-...` variants (even in
|
||||||
the terminal).
|
the terminal).
|
||||||
- <C-Tab>, <C-S-Tab>
|
<C-Tab>, <C-S-Tab>
|
||||||
- <C-BS>, <C-S-BS>
|
<C-BS>, <C-S-BS>
|
||||||
- <C-Enter>, <C-S-Enter>
|
<C-Enter>, <C-S-Enter>
|
||||||
|
|
||||||
Events:
|
Events:
|
||||||
- |TabNew|
|
|TabNew|
|
||||||
- |TabNewEntered|
|
|TabNewEntered|
|
||||||
- |TabClosed|
|
|TabClosed|
|
||||||
|
|
||||||
Highlight groups:
|
Highlight groups:
|
||||||
- |hl-EndOfBuffer|
|
|hl-EndOfBuffer|
|
||||||
- |hl-TermCursor|
|
|hl-TermCursor|
|
||||||
- |hl-TermCursorNC|
|
|hl-TermCursorNC|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
5. Missing legacy features *nvim-features-missing*
|
5. Missing legacy features *nvim-features-missing*
|
||||||
@ -89,39 +89,42 @@ planned for the current milestone.
|
|||||||
|
|
||||||
These features are in Vim, but have been intentionally removed from Nvim.
|
These features are in Vim, but have been intentionally removed from Nvim.
|
||||||
|
|
||||||
Vi-compatible mode
|
Vi-compatible mode:
|
||||||
- ":set nocompatible" is ignored
|
":set nocompatible" is ignored
|
||||||
- ":set compatible" is an error
|
":set compatible" is an error
|
||||||
|
|
||||||
Ed-compatible mode
|
Ed-compatible mode:
|
||||||
- ":set noedcompatible" is ignored
|
":set noedcompatible" is ignored
|
||||||
- ":set edcompatible" is an error
|
":set edcompatible" is an error
|
||||||
|
|
||||||
'ttyfast'
|
'ttyfast':
|
||||||
- ":set ttyfast" is ignored
|
":set ttyfast" is ignored
|
||||||
- ":set nottyfast" is an error
|
":set nottyfast" is an error
|
||||||
|
|
||||||
EBCDIC support
|
Encryption support:
|
||||||
|
'cryptmethod'
|
||||||
|
'key'
|
||||||
|
|
||||||
8.3 filesystem support
|
MS-DOS support:
|
||||||
- 'shortname'
|
'bioskey'
|
||||||
|
'conskey'
|
||||||
Encryption support
|
|
||||||
- 'cryptmethod'
|
|
||||||
- 'key'
|
|
||||||
|
|
||||||
MS-DOS support
|
|
||||||
- 'bioskey'
|
|
||||||
- 'conskey'
|
|
||||||
|
|
||||||
|
Other options:
|
||||||
|
'shortname'
|
||||||
'shelltype'
|
'shelltype'
|
||||||
":shell"
|
|
||||||
":mode", no longer accepts an argument
|
|
||||||
'textauto'
|
'textauto'
|
||||||
'textmode'
|
'textmode'
|
||||||
|
|
||||||
|
Other commands:
|
||||||
|
:fixdel
|
||||||
|
:mode no longer accepts an argument
|
||||||
|
:shell
|
||||||
|
|
||||||
|
Other compile-time features:
|
||||||
|
EBCDIC
|
||||||
|
|
||||||
"Easy mode" (eview, evim, nvim -y)
|
"Easy mode" (eview, evim, nvim -y)
|
||||||
"(g)vimdiff" (solely an alias for (g)nvim -d, i.e. |diff-mode|)
|
"(g)vimdiff" (alias for "(g)nvim -d" |diff-mode|)
|
||||||
"Vi mode" (nvim -v)
|
"Vi mode" (nvim -v)
|
||||||
|
|
||||||
The ability to start nvim via the following aliases has been removed in favor
|
The ability to start nvim via the following aliases has been removed in favor
|
||||||
|
Loading…
Reference in New Issue
Block a user