2015-01-30 05:19:43 -07:00
|
|
|
*vim_diff.txt* For Nvim. {Nvim}
|
|
|
|
|
|
|
|
|
|
|
|
NVIM REFERENCE MANUAL
|
|
|
|
|
|
|
|
|
|
|
|
Differences between Nvim and Vim *vim-differences*
|
|
|
|
|
|
|
|
Throughout the help files, differences between Nvim and Vim are indicated via
|
|
|
|
the "{Nvim}" tag. This document is a complete and centralized list of all
|
|
|
|
these differences.
|
|
|
|
|
|
|
|
1. Configuration |nvim-configuration|
|
|
|
|
2. Option defaults |nvim-option-defaults|
|
|
|
|
3. Changed features |nvim-features-changed|
|
|
|
|
4. New features |nvim-features-new|
|
|
|
|
5. Missing legacy features |nvim-features-missing|
|
|
|
|
6. Removed features |nvim-features-removed|
|
|
|
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
1. Configuration *nvim-configuration*
|
|
|
|
|
2015-04-24 16:10:59 -07:00
|
|
|
- Use `.nvimrc` instead of `.vimrc` for storing configuration.
|
|
|
|
- Use `.nvim` instead of `.vim` to store configuration files.
|
|
|
|
- Use `.nviminfo` instead of `.viminfo` for persistent session information.
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
2. Option defaults *nvim-option-defaults*
|
|
|
|
|
2015-07-14 04:53:45 -07:00
|
|
|
- 'autoindent' is set by default
|
2015-06-20 12:39:40 -07:00
|
|
|
- 'autoread' is set by default
|
2015-05-12 16:49:24 -07:00
|
|
|
- 'backspace' defaults to "indent,eol,start"
|
2015-06-18 13:11:51 -07:00
|
|
|
- 'complete' doesn't include "i"
|
2015-06-20 10:17:26 -07:00
|
|
|
- 'display' defaults to "lastline"
|
2015-01-30 05:19:43 -07:00
|
|
|
- 'encoding' defaults to "utf-8"
|
2015-05-15 22:23:16 -07:00
|
|
|
- 'formatoptions' defaults to "tcqj"
|
2015-07-14 04:53:45 -07:00
|
|
|
- 'guioptions' doesn't include "t"
|
2015-06-20 13:40:03 -07:00
|
|
|
- 'hlsearch' is set by default
|
2015-06-18 19:02:36 -07:00
|
|
|
- 'incsearch' is set by default
|
2015-06-18 12:56:39 -07:00
|
|
|
- 'langnoremap' is set by default
|
2015-06-18 20:37:11 -07:00
|
|
|
- 'mouse' defaults to "a"
|
2015-05-12 16:49:24 -07:00
|
|
|
- 'nocompatible' is always set
|
2015-05-15 22:07:56 -07:00
|
|
|
- 'nrformats' defaults to "hex"
|
2015-06-20 12:39:40 -07:00
|
|
|
- 'sessionoptions' doesn't include "options"
|
2015-06-18 13:23:29 -07:00
|
|
|
- 'smarttab' is set by default
|
2015-06-20 12:10:29 -07:00
|
|
|
- 'tabpagemax' defaults to 50
|
2015-05-15 22:33:26 -07:00
|
|
|
- 'tags' defaults to "./tags;,tags"
|
2015-05-12 16:49:24 -07:00
|
|
|
- 'ttyfast' is always set
|
2015-06-20 12:23:38 -07:00
|
|
|
- 'viminfo' includes "!"
|
2015-05-16 11:09:40 -07:00
|
|
|
- 'wildmenu' is set by default
|
|
|
|
- 'wildmode' defaults to "list:longest,full"
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
3. Changed features *nvim-features-changed*
|
|
|
|
|
|
|
|
Nvim always builds with all features, in contrast to Vim which may have
|
|
|
|
certain features removed/added at compile-time. This is like if Vim's "HUGE"
|
|
|
|
build was the only Vim release type (except Nvim is smaller than Vim's "HUGE"
|
|
|
|
build).
|
|
|
|
|
|
|
|
If a Python interpreter is available on your `$PATH`, |:python| and |:python3|
|
|
|
|
are always available and may be used simultaneously in separate plugins. The
|
|
|
|
`neovim` pip package must be installed to use Python plugins in Nvim (see
|
|
|
|
|nvim-python|).
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
4. New Features *nvim-features-new*
|
|
|
|
|
|
|
|
See |nvim-intro| for a list of Nvim's largest new features.
|
|
|
|
|
2015-06-23 21:42:33 -07:00
|
|
|
Meta (alt) chords are recognized (even in the terminal).
|
2015-04-24 16:10:59 -07:00
|
|
|
<M-1>, <M-2>, ...
|
|
|
|
<M-BS>, <M-Del>, <M-Ins>, ...
|
|
|
|
<M-/>, <M-\>, ...
|
|
|
|
<M-Space>, <M-Enter>, <M-=>, <M-->, <M-?>, <M-$>, ...
|
2015-01-30 05:19:43 -07:00
|
|
|
|
2015-06-23 21:42:33 -07:00
|
|
|
Note: Meta chords are case-sensitive (<M-a> is distinguished from <M-A>).
|
|
|
|
|
|
|
|
Some `CTRL-SHIFT-...` key chords are distinguished from `CTRL-...` variants (even in
|
|
|
|
the terminal). Specifically, the following are known to work:
|
2015-04-24 16:10:59 -07:00
|
|
|
<C-Tab>, <C-S-Tab>
|
|
|
|
<C-BS>, <C-S-BS>
|
|
|
|
<C-Enter>, <C-S-Enter>
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
Events:
|
2015-04-24 16:10:59 -07:00
|
|
|
|TabNew|
|
|
|
|
|TabNewEntered|
|
|
|
|
|TabClosed|
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
Highlight groups:
|
2015-04-24 16:10:59 -07:00
|
|
|
|hl-EndOfBuffer|
|
|
|
|
|hl-TermCursor|
|
|
|
|
|hl-TermCursorNC|
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
5. Missing legacy features *nvim-features-missing*
|
2015-06-24 17:22:56 -07:00
|
|
|
*if_ruby* *if_lua* *if_perl* *if_mzscheme* *if_tcl*
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
These legacy Vim features may be implemented in the future, but they are not
|
|
|
|
planned for the current milestone.
|
|
|
|
|
|
|
|
- vim.bindeval() (new feature in Vim 7.4 Python interface)
|
2015-06-24 17:22:56 -07:00
|
|
|
- |if_ruby|
|
|
|
|
- |if_lua|
|
|
|
|
- |if_perl|
|
|
|
|
- |if_mzscheme|
|
|
|
|
- |if_tcl|
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
6. Removed features *nvim-features-removed*
|
|
|
|
|
|
|
|
These features are in Vim, but have been intentionally removed from Nvim.
|
|
|
|
|
2015-04-24 16:10:59 -07:00
|
|
|
Vi-compatible mode:
|
|
|
|
":set nocompatible" is ignored
|
|
|
|
":set compatible" is an error
|
2015-01-30 05:19:43 -07:00
|
|
|
|
2015-04-24 16:10:59 -07:00
|
|
|
Ed-compatible mode:
|
|
|
|
":set noedcompatible" is ignored
|
|
|
|
":set edcompatible" is an error
|
2015-01-30 05:19:43 -07:00
|
|
|
|
2015-04-24 16:10:59 -07:00
|
|
|
'ttyfast':
|
|
|
|
":set ttyfast" is ignored
|
|
|
|
":set nottyfast" is an error
|
2015-01-30 05:19:43 -07:00
|
|
|
|
2015-04-24 16:10:59 -07:00
|
|
|
Encryption support:
|
|
|
|
'cryptmethod'
|
|
|
|
'key'
|
2015-01-30 05:19:43 -07:00
|
|
|
|
2015-04-24 16:10:59 -07:00
|
|
|
MS-DOS support:
|
|
|
|
'bioskey'
|
|
|
|
'conskey'
|
2015-01-30 05:19:43 -07:00
|
|
|
|
2015-06-26 09:27:42 -07:00
|
|
|
Highlight groups:
|
|
|
|
|hl-VisualNOS|
|
|
|
|
|
2015-04-24 16:10:59 -07:00
|
|
|
Other options:
|
2015-06-25 21:57:22 -07:00
|
|
|
'guipty'
|
2015-05-07 08:20:38 -07:00
|
|
|
'macatsui'
|
2015-04-24 16:10:59 -07:00
|
|
|
'shelltype'
|
2015-05-05 19:00:43 -07:00
|
|
|
'shortname'
|
2015-05-10 06:18:39 -07:00
|
|
|
'termencoding'
|
2015-04-24 16:10:59 -07:00
|
|
|
'textauto'
|
|
|
|
'textmode'
|
2015-05-05 19:00:43 -07:00
|
|
|
'ttybuiltin'
|
2015-05-05 19:00:43 -07:00
|
|
|
'ttymouse'
|
2015-05-05 19:00:43 -07:00
|
|
|
'weirdinvert'
|
2015-01-30 05:19:43 -07:00
|
|
|
|
2015-04-24 16:10:59 -07:00
|
|
|
Other commands:
|
|
|
|
:fixdel
|
2015-07-14 04:53:45 -07:00
|
|
|
:mode (no longer accepts an argument)
|
2015-04-24 16:10:59 -07:00
|
|
|
:shell
|
2015-07-14 04:53:45 -07:00
|
|
|
:tearoff
|
2015-01-30 05:19:43 -07:00
|
|
|
|
2015-04-24 16:10:59 -07:00
|
|
|
Other compile-time features:
|
|
|
|
EBCDIC
|
2015-05-15 22:33:26 -07:00
|
|
|
Emacs tags support
|
2015-01-30 05:19:43 -07:00
|
|
|
|
2015-05-07 08:20:38 -07:00
|
|
|
Nvim does not have a built-in GUI and hence the following aliases have been
|
|
|
|
removed: gvim, gex, gview, rgvim, rgview
|
|
|
|
|
2015-01-30 05:19:43 -07:00
|
|
|
"Easy mode" (eview, evim, nvim -y)
|
2015-04-24 16:10:59 -07:00
|
|
|
"(g)vimdiff" (alias for "(g)nvim -d" |diff-mode|)
|
2015-01-30 05:19:43 -07:00
|
|
|
"Vi mode" (nvim -v)
|
|
|
|
|
|
|
|
The ability to start nvim via the following aliases has been removed in favor
|
|
|
|
of just using their command line arguments:
|
|
|
|
|
|
|
|
ex nvim -e
|
|
|
|
exim nvim -E
|
|
|
|
view nvim -R
|
|
|
|
rvim nvim -Z
|
|
|
|
rview nvim -RZ
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
vim:tw=78:ts=8:noet:ft=help:norl:
|