2017-03-21 09:08:19 -07:00
|
|
|
|
*vim_diff.txt* Nvim
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NVIM REFERENCE MANUAL
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Differences between Nvim and Vim *vim-differences*
|
|
|
|
|
|
2021-08-27 03:59:13 -07:00
|
|
|
|
Nvim differs from Vim in many ways, although editor and Vimscript (not
|
|
|
|
|
Vim9script) features are mostly identical. This document is a complete and
|
|
|
|
|
centralized reference of the differences.
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2017-10-20 17:33:58 -07:00
|
|
|
|
Type |gO| to see the table of contents.
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
|
|
==============================================================================
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Configuration *nvim-config*
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2021-08-27 03:59:13 -07:00
|
|
|
|
- Use `$XDG_CONFIG_HOME/nvim/init.vim` instead of `.vimrc` for your |config|.
|
2015-10-17 07:25:53 -07:00
|
|
|
|
- Use `$XDG_CONFIG_HOME/nvim` instead of `.vim` to store configuration files.
|
2021-09-06 10:35:34 -07:00
|
|
|
|
- Use `$XDG_STATE_HOME/nvim/shada/main.shada` instead of `.viminfo` for persistent
|
2017-12-27 11:30:23 -07:00
|
|
|
|
session information. |shada|
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
|
|
|
|
==============================================================================
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Defaults *nvim-defaults*
|
2015-05-16 00:10:38 -07:00
|
|
|
|
|
2022-01-18 12:46:41 -07:00
|
|
|
|
- Filetype detection is enabled by default. This can be disabled by adding
|
|
|
|
|
":filetype off" to |init.vim|.
|
|
|
|
|
- Syntax highlighting is enabled by default. This can be disabled by adding
|
|
|
|
|
":syntax off" to |init.vim|.
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2019-07-01 14:59:24 -07:00
|
|
|
|
- 'autoindent' is enabled
|
|
|
|
|
- 'autoread' is enabled
|
|
|
|
|
- 'background' defaults to "dark" (unless set automatically by the terminal/UI)
|
2015-05-12 16:49:24 -07:00
|
|
|
|
- 'backspace' defaults to "indent,eol,start"
|
2021-09-06 10:35:34 -07:00
|
|
|
|
- 'backupdir' defaults to .,~/.local/state/nvim/backup// (|xdg|), auto-created
|
2017-02-09 19:39:00 -07:00
|
|
|
|
- 'belloff' defaults to "all"
|
2019-07-01 14:59:24 -07:00
|
|
|
|
- 'compatible' is always disabled
|
|
|
|
|
- 'complete' excludes "i"
|
2021-09-06 10:35:34 -07:00
|
|
|
|
- 'directory' defaults to ~/.local/state/nvim/swap// (|xdg|), auto-created
|
2022-09-27 07:19:15 -07:00
|
|
|
|
- 'display' defaults to "lastline"
|
2017-12-27 11:30:23 -07:00
|
|
|
|
- 'encoding' is UTF-8 (cf. 'fileencoding' for file-content encoding)
|
2020-01-11 17:36:11 -07:00
|
|
|
|
- 'fillchars' defaults (in effect) to "vert:│,fold:·,sep:│"
|
2015-05-15 22:23:16 -07:00
|
|
|
|
- 'formatoptions' defaults to "tcqj"
|
2019-01-22 17:41:00 -07:00
|
|
|
|
- 'fsync' is disabled
|
2021-08-17 11:12:09 -07:00
|
|
|
|
- 'hidden' is enabled
|
2015-06-20 11:59:25 -07:00
|
|
|
|
- 'history' defaults to 10000 (the maximum)
|
2019-07-01 14:59:24 -07:00
|
|
|
|
- 'hlsearch' is enabled
|
|
|
|
|
- 'incsearch' is enabled
|
2021-08-17 11:12:47 -07:00
|
|
|
|
- 'joinspaces' is disabled
|
2019-07-01 14:59:24 -07:00
|
|
|
|
- 'langnoremap' is enabled
|
|
|
|
|
- 'langremap' is disabled
|
2015-06-20 14:45:03 -07:00
|
|
|
|
- 'laststatus' defaults to 2 (statusline is always shown)
|
2015-06-20 13:16:10 -07:00
|
|
|
|
- 'listchars' defaults to "tab:> ,trail:-,nbsp:+"
|
2022-07-17 04:14:04 -07:00
|
|
|
|
- 'mouse' defaults to "nvi"
|
|
|
|
|
- 'mousemodel' defaults to "popup_setpos"
|
2016-02-15 11:55:51 -07:00
|
|
|
|
- 'nrformats' defaults to "bin,hex"
|
2019-07-01 14:59:24 -07:00
|
|
|
|
- 'ruler' is enabled
|
2020-08-15 19:19:06 -07:00
|
|
|
|
- 'sessionoptions' includes "unix,slash", excludes "options"
|
2019-06-07 14:11:28 -07:00
|
|
|
|
- 'shortmess' includes "F", excludes "S"
|
2019-07-01 14:59:24 -07:00
|
|
|
|
- 'showcmd' is enabled
|
2018-02-07 17:11:54 -07:00
|
|
|
|
- 'sidescroll' defaults to 1
|
2019-07-01 14:59:24 -07:00
|
|
|
|
- 'smarttab' is enabled
|
2019-10-01 07:14:00 -07:00
|
|
|
|
- 'startofline' is disabled
|
2021-08-16 11:20:46 -07:00
|
|
|
|
- 'switchbuf' defaults to "uselast"
|
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"
|
2018-09-01 09:17:49 -07:00
|
|
|
|
- 'ttimeoutlen' defaults to 50
|
2015-05-12 16:49:24 -07:00
|
|
|
|
- 'ttyfast' is always set
|
2021-09-06 10:35:34 -07:00
|
|
|
|
- 'undodir' defaults to ~/.local/state/nvim/undo// (|xdg|), auto-created
|
2021-08-16 13:05:24 -07:00
|
|
|
|
- 'viewoptions' includes "unix,slash", excludes "options"
|
2015-06-20 12:23:38 -07:00
|
|
|
|
- 'viminfo' includes "!"
|
2019-07-01 14:59:24 -07:00
|
|
|
|
- 'wildmenu' is enabled
|
|
|
|
|
- 'wildoptions' defaults to "pum,tagfile"
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2022-12-14 11:58:18 -07:00
|
|
|
|
- |editorconfig| plugin is enabled, .editorconfig settings are applied.
|
2022-09-02 07:20:29 -07:00
|
|
|
|
- |man.lua| plugin is enabled, so |:Man| is available by default.
|
2022-11-22 10:41:00 -07:00
|
|
|
|
- |matchit| plugin is enabled. To disable it in your config: >vim
|
2019-08-01 06:29:47 -07:00
|
|
|
|
:let loaded_matchit = 1
|
|
|
|
|
|
2021-03-27 16:43:06 -07:00
|
|
|
|
- |g:vimsyn_embed| defaults to "l" to enable Lua highlighting
|
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
DEFAULT MOUSE
|
2022-07-17 04:14:04 -07:00
|
|
|
|
*default-mouse* *disable-mouse*
|
2022-10-06 06:16:00 -07:00
|
|
|
|
By default the mouse is enabled, and <RightMouse> opens a |popup-menu| with
|
|
|
|
|
standard actions ("Cut", "Copy", "Paste", …). Mouse is NOT enabled in
|
|
|
|
|
|command-mode| or the |more-prompt|, so you can temporarily disable it just by
|
|
|
|
|
typing ":".
|
|
|
|
|
|
|
|
|
|
If you don't like this you can disable the mouse in your |config| using any of
|
|
|
|
|
the following:
|
2022-11-22 10:41:00 -07:00
|
|
|
|
- Disable mouse completely by unsetting the 'mouse' option: >vim
|
2022-07-17 04:14:04 -07:00
|
|
|
|
set mouse=
|
2022-11-22 10:41:00 -07:00
|
|
|
|
- Pressing <RightMouse> extends selection instead of showing popup-menu: >vim
|
2022-07-17 04:14:04 -07:00
|
|
|
|
set mousemodel=extend
|
2022-11-22 10:41:00 -07:00
|
|
|
|
- Pressing <A-LeftMouse> releases mouse until the cursor moves: >vim
|
2022-10-06 06:16:00 -07:00
|
|
|
|
nnoremap <A-LeftMouse> <Cmd>
|
2022-07-17 04:14:04 -07:00
|
|
|
|
\ set mouse=<Bar>
|
|
|
|
|
\ echo 'mouse OFF until next cursor-move'<Bar>
|
|
|
|
|
\ autocmd CursorMoved * ++once set mouse&<Bar>
|
|
|
|
|
\ echo 'mouse ON'<CR>
|
|
|
|
|
<
|
2022-12-12 18:43:49 -07:00
|
|
|
|
To remove the "How-to disable mouse" menu item and the separator above it: >vim
|
|
|
|
|
aunmenu PopUp.How-to\ disable\ mouse
|
|
|
|
|
aunmenu PopUp.-1-
|
|
|
|
|
<
|
2023-01-10 07:49:39 -07:00
|
|
|
|
DEFAULT MAPPINGS
|
2021-09-02 04:17:04 -07:00
|
|
|
|
*default-mappings*
|
2021-08-27 03:59:13 -07:00
|
|
|
|
Nvim creates the following default mappings at |startup|. You can disable any
|
|
|
|
|
of these in your config by simply removing the mapping, e.g. ":unmap Y".
|
2022-11-22 10:41:00 -07:00
|
|
|
|
>vim
|
2021-09-02 04:17:04 -07:00
|
|
|
|
nnoremap Y y$
|
2022-03-12 17:56:53 -07:00
|
|
|
|
nnoremap <C-L> <Cmd>nohlsearch<Bar>diffupdate<Bar>normal! <C-L><CR>
|
2021-09-02 04:17:04 -07:00
|
|
|
|
inoremap <C-U> <C-G>u<C-U>
|
|
|
|
|
inoremap <C-W> <C-G>u<C-W>
|
2022-05-12 17:28:10 -07:00
|
|
|
|
xnoremap * y/\V<C-R>"<CR>
|
|
|
|
|
xnoremap # y?\V<C-R>"<CR>
|
2022-07-15 06:23:29 -07:00
|
|
|
|
nnoremap & :&&<CR>
|
2021-09-02 04:17:04 -07:00
|
|
|
|
<
|
2023-01-10 07:49:39 -07:00
|
|
|
|
DEFAULT AUTOCOMMANDS
|
2021-09-02 04:17:04 -07:00
|
|
|
|
*default-autocmds*
|
|
|
|
|
Default autocommands exist in the following groups. Use ":autocmd! {group}" to
|
|
|
|
|
remove them and ":autocmd {group}" to see how they're defined.
|
|
|
|
|
|
|
|
|
|
nvim_terminal:
|
2021-09-02 10:29:59 -07:00
|
|
|
|
- BufReadCmd: Treats "term://" buffers as |terminal| buffers. |terminal-start|
|
2021-09-02 04:17:04 -07:00
|
|
|
|
|
|
|
|
|
nvim_cmdwin:
|
2021-09-02 10:29:59 -07:00
|
|
|
|
- CmdwinEnter: Limits syntax sync to maxlines=1 in the |cmdwin|.
|
2021-08-15 21:24:59 -07:00
|
|
|
|
|
2015-01-30 05:19:43 -07:00
|
|
|
|
==============================================================================
|
2023-01-10 07:49:39 -07:00
|
|
|
|
New Features *nvim-features*
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|
2022-12-11 19:41:26 -07:00
|
|
|
|
MAJOR COMPONENTS
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
- API |API|
|
|
|
|
|
- Job control |job-control|
|
|
|
|
|
- LSP framework |lsp|
|
|
|
|
|
- Lua scripting |lua|
|
|
|
|
|
- Parsing engine |treesitter|
|
|
|
|
|
- Providers
|
|
|
|
|
- Clipboard |provider-clipboard|
|
|
|
|
|
- Node.js plugins |provider-nodejs|
|
|
|
|
|
- Python plugins |provider-python|
|
|
|
|
|
- Ruby plugins |provider-ruby|
|
|
|
|
|
- Remote plugins |remote-plugin|
|
|
|
|
|
- Shared data |shada|
|
|
|
|
|
- Terminal emulator |terminal|
|
|
|
|
|
- UI |ui| |--listen| |--server|
|
|
|
|
|
- Vimscript parser |nvim_parse_expression()|
|
|
|
|
|
- XDG base directories |xdg|
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|
2022-12-11 19:41:26 -07:00
|
|
|
|
USER EXPERIENCE
|
2016-10-15 18:54:22 -07:00
|
|
|
|
|
2017-08-17 12:23:28 -07:00
|
|
|
|
Working intuitively and consistently is a major goal of Nvim.
|
2016-10-15 18:54:22 -07:00
|
|
|
|
|
2017-08-17 12:23:28 -07:00
|
|
|
|
*feature-compile*
|
2023-01-10 07:49:39 -07:00
|
|
|
|
- Nvim always includes ALL features, in contrast to Vim (which ships various
|
|
|
|
|
combinations of 100+ optional features). |feature-compile| Think of it as
|
|
|
|
|
a leaner version of Vim's "HUGE" build. This reduces surface area for bugs,
|
|
|
|
|
and removes a common source of confusion and friction for users.
|
2017-08-17 12:23:28 -07:00
|
|
|
|
|
|
|
|
|
- Nvim avoids features that cannot be provided on all platforms; instead that
|
|
|
|
|
is delegated to external plugins/extensions. E.g. the `-X` platform-specific
|
|
|
|
|
option is "sometimes" available in Vim (with potential surprises:
|
2022-10-14 08:01:13 -07:00
|
|
|
|
https://stackoverflow.com/q/14635295).
|
2017-01-03 21:32:46 -07:00
|
|
|
|
|
2017-07-28 15:28:41 -07:00
|
|
|
|
- Vim's internal test functions (test_autochdir(), test_settime(), etc.) are
|
|
|
|
|
not exposed (nor implemented); instead Nvim has a robust API.
|
2016-10-15 18:54:22 -07:00
|
|
|
|
|
2017-08-19 05:13:14 -07:00
|
|
|
|
- Behaviors, options, documentation are removed if they cost users more time
|
|
|
|
|
than they save.
|
|
|
|
|
|
|
|
|
|
Usability details have been improved where the benefit outweighs any
|
|
|
|
|
backwards-compatibility cost. Some examples:
|
|
|
|
|
|
|
|
|
|
- Directories for 'directory' and 'undodir' are auto-created.
|
|
|
|
|
- Terminal features such as 'guicursor' are enabled where possible.
|
2023-01-10 07:49:39 -07:00
|
|
|
|
- Various "nvim" |cli-arguments| were redesigned.
|
2017-08-19 05:13:14 -07:00
|
|
|
|
|
2020-05-18 06:49:50 -07:00
|
|
|
|
Some features are built in that otherwise required external plugins:
|
|
|
|
|
|
|
|
|
|
- Highlighting the yanked region, see |lua-highlight|.
|
|
|
|
|
|
2022-12-11 19:41:26 -07:00
|
|
|
|
ARCHITECTURE
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
The Nvim UI is "decoupled" from the core editor: all UIs, including the
|
|
|
|
|
builtin |TUI| are just plugins that connect to a Nvim server (via |--server|
|
|
|
|
|
or |--embed|). Multiple Nvim UI clients can connect to the same Nvim editor
|
|
|
|
|
server.
|
|
|
|
|
|
2016-10-30 19:50:19 -07:00
|
|
|
|
External plugins run in separate processes. |remote-plugin| This improves
|
2017-05-20 14:49:46 -07:00
|
|
|
|
stability and allows those plugins to work without blocking the editor. Even
|
2018-08-25 07:38:24 -07:00
|
|
|
|
"legacy" Python and Ruby plugins which use the old Vim interfaces (|if_pyth|,
|
2017-05-20 14:49:46 -07:00
|
|
|
|
|if_ruby|) run out-of-process.
|
2016-10-30 19:50:19 -07:00
|
|
|
|
|
2017-07-28 15:28:41 -07:00
|
|
|
|
Platform and I/O facilities are built upon libuv. Nvim benefits from libuv
|
|
|
|
|
features and bug fixes, and other projects benefit from improvements to libuv
|
|
|
|
|
by Nvim developers.
|
2016-10-30 19:50:19 -07:00
|
|
|
|
|
2022-12-11 19:41:26 -07:00
|
|
|
|
FEATURES
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Command-line:
|
2017-12-27 11:30:23 -07:00
|
|
|
|
The expression prompt (|@=|, |c_CTRL-R_=|, |i_CTRL-R_=|) is highlighted
|
2021-08-27 03:59:13 -07:00
|
|
|
|
using a built-in Vimscript expression parser. |expr-highlight|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
*E5408* *E5409*
|
|
|
|
|
|input()|, |inputdialog()| support custom highlighting. |input()-highlight|
|
|
|
|
|
*g:Nvim_color_cmdline*
|
|
|
|
|
(Experimental) Command-line (|:|) is colored by callback defined in
|
|
|
|
|
`g:Nvim_color_cmdline` (this callback is for testing only, and will be
|
|
|
|
|
removed in the future).
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|
|
|
|
|
Commands:
|
2017-10-15 11:31:12 -07:00
|
|
|
|
|:checkhealth|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
|:drop| is always available
|
2016-08-07 20:17:56 -07:00
|
|
|
|
|:Man| is available by default, with many improvements such as completion
|
2021-08-18 05:29:42 -07:00
|
|
|
|
|:match| can be invoked before highlight group is defined
|
2022-08-14 19:40:41 -07:00
|
|
|
|
|:source| works with Lua
|
2022-04-20 04:02:18 -07:00
|
|
|
|
User commands can support |:command-preview| to show results as you type
|
2022-12-11 19:41:26 -07:00
|
|
|
|
|:write| with "++p" flag creates parent directories.
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|
|
|
|
|
Events:
|
2021-10-01 00:40:22 -07:00
|
|
|
|
|RecordingEnter|
|
|
|
|
|
|RecordingLeave|
|
2021-12-10 15:04:11 -07:00
|
|
|
|
|SearchWrapped|
|
2019-02-03 18:39:05 -07:00
|
|
|
|
|Signal|
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|TabNewEntered|
|
|
|
|
|
|TermClose|
|
2016-10-30 19:50:19 -07:00
|
|
|
|
|TermOpen|
|
2019-09-12 16:08:22 -07:00
|
|
|
|
|UIEnter|
|
|
|
|
|
|UILeave|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
|
|
|
|
|
Functions:
|
|
|
|
|
|dictwatcheradd()| notifies a callback whenever a |Dict| is modified
|
|
|
|
|
|dictwatcherdel()|
|
|
|
|
|
|menu_get()|
|
|
|
|
|
|msgpackdump()|, |msgpackparse()| provide msgpack de/serialization
|
|
|
|
|
|stdpath()|
|
|
|
|
|
|system()|, |systemlist()| can run {cmd} directly (without 'shell')
|
2021-08-18 05:29:42 -07:00
|
|
|
|
|matchadd()| can be called before highlight group is defined
|
2022-12-11 19:41:26 -07:00
|
|
|
|
|writefile()| with "p" flag creates parent directories.
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|
|
|
|
|
Highlight groups:
|
2019-12-10 01:29:39 -07:00
|
|
|
|
|highlight-blend| controls blend level for a highlight group
|
2017-12-27 11:30:23 -07:00
|
|
|
|
|expr-highlight| highlight groups (prefixed with "Nvim")
|
2019-03-10 02:42:51 -07:00
|
|
|
|
|hl-NormalFloat| highlights floating window
|
2017-11-09 18:44:18 -07:00
|
|
|
|
|hl-NormalNC| highlights non-current windows
|
2019-08-25 16:00:52 -07:00
|
|
|
|
|hl-MsgArea| highlights messages/cmdline area
|
2018-03-31 02:12:27 -07:00
|
|
|
|
|hl-MsgSeparator| highlights separator for scrolled messages
|
2016-10-30 19:50:19 -07:00
|
|
|
|
|hl-Substitute|
|
2016-06-15 18:33:47 -07:00
|
|
|
|
|hl-TermCursor|
|
|
|
|
|
|hl-TermCursorNC|
|
2022-01-29 22:57:41 -07:00
|
|
|
|
|hl-WinSeparator| highlights window separators
|
2017-03-26 03:15:52 -07:00
|
|
|
|
|hl-Whitespace| highlights 'listchars' whitespace
|
2017-12-09 10:47:34 -07:00
|
|
|
|
|
2020-08-31 00:51:35 -07:00
|
|
|
|
Input/Mappings:
|
2017-12-27 11:30:23 -07:00
|
|
|
|
ALT (|META|) chords always work (even in the |TUI|). Map |<M-| with any key:
|
|
|
|
|
<M-1>, <M-BS>, <M-Del>, <M-Ins>, <M-/>, <M-\>, <M-Space>, <M-Enter>, etc.
|
|
|
|
|
Case-sensitive: <M-a> and <M-A> are two different keycodes.
|
|
|
|
|
|
2022-06-16 16:28:16 -07:00
|
|
|
|
ALT may behave like <Esc> if not mapped. |i_ALT| |v_ALT| |c_ALT|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
|
|
|
|
|
Normal commands:
|
2020-08-31 00:51:35 -07:00
|
|
|
|
|gO| shows a filetype-defined "outline" of the current buffer.
|
2023-01-10 07:49:39 -07:00
|
|
|
|
|Q| replays the last recorded macro instead of switching to Ex mode (|gQ|).
|
2017-12-27 11:30:23 -07:00
|
|
|
|
|
|
|
|
|
Options:
|
2019-12-10 02:24:20 -07:00
|
|
|
|
'cpoptions' flags: |cpo-_|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
'diffopt' "linematch" feature
|
|
|
|
|
'exrc' searches for ".nvim.lua", ".nvimrc", or ".exrc" files. The
|
|
|
|
|
user is prompted whether to trust the file.
|
2022-09-27 07:19:15 -07:00
|
|
|
|
'fillchars' flags: "msgsep", "horiz", "horizup",
|
2022-01-29 22:57:41 -07:00
|
|
|
|
"horizdown", "vertleft", "vertright", "verthoriz"
|
2020-03-01 08:43:18 -07:00
|
|
|
|
'foldcolumn' supports up to 9 dynamic/fixed columns
|
2023-01-10 07:49:39 -07:00
|
|
|
|
'guicursor' works in the terminal (TUI)
|
2019-12-10 02:24:20 -07:00
|
|
|
|
'inccommand' shows interactive results for |:substitute|-like commands
|
2022-04-20 04:02:18 -07:00
|
|
|
|
and |:command-preview| commands
|
2023-01-10 07:49:39 -07:00
|
|
|
|
'jumpoptions' "stack" behavior
|
|
|
|
|
'jumpoptions' "view" tries to restore the |mark-view| when moving through
|
|
|
|
|
the |jumplist|, |changelist|, |alternate-file| or using |mark-motions|.
|
2022-01-29 22:57:41 -07:00
|
|
|
|
'laststatus' global statusline support
|
2022-07-06 04:34:24 -07:00
|
|
|
|
'mousescroll' amount to scroll by when scrolling with a mouse
|
2019-12-10 02:24:20 -07:00
|
|
|
|
'pumblend' pseudo-transparent popupmenu
|
2017-12-27 11:30:23 -07:00
|
|
|
|
'scrollback'
|
2023-01-10 07:49:39 -07:00
|
|
|
|
'shortmess' "F" flag does not affect output from autocommands
|
2019-12-10 02:24:20 -07:00
|
|
|
|
'signcolumn' supports up to 9 dynamic/fixed columns
|
2023-01-10 07:49:39 -07:00
|
|
|
|
'statuscolumn' full control of columns using 'statusline' format
|
|
|
|
|
'statusline' supports unlimited alignment sections
|
2019-12-10 02:24:20 -07:00
|
|
|
|
'tabline' %@Func@foo%X can call any function on mouse-click
|
2023-01-10 07:49:39 -07:00
|
|
|
|
'ttimeout', 'ttimeoutlen' behavior was simplified
|
2019-12-10 02:24:20 -07:00
|
|
|
|
'winblend' pseudo-transparency in floating windows |api-floatwin|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
'winhighlight' window-local highlights
|
2023-01-10 07:49:39 -07:00
|
|
|
|
|
|
|
|
|
Providers:
|
|
|
|
|
If a Python interpreter is available on your `$PATH`, |:python| and
|
|
|
|
|
|:python3| are always available. See |provider-python|.
|
|
|
|
|
|
|
|
|
|
Shell:
|
|
|
|
|
Shell output (|:!|, |:make|, …) is always routed through the UI, so it
|
|
|
|
|
cannot "mess up" the screen. (You can still use "chansend(v:stderr,…)" if
|
|
|
|
|
you want to mess up the screen :)
|
|
|
|
|
|
|
|
|
|
Nvim throttles (skips) messages from shell commands (|:!|, |:grep|, |:make|)
|
|
|
|
|
if there is too much output. No data is lost, this only affects display and
|
|
|
|
|
improves performance. |:terminal| output is never throttled.
|
|
|
|
|
|
|
|
|
|
|:!| does not support "interactive" commands. Use |:terminal| instead.
|
|
|
|
|
(GUI Vim has a similar limitation, see ":help gui-pty" in Vim.)
|
|
|
|
|
|
|
|
|
|
:!start is not special-cased on Windows.
|
|
|
|
|
|
|
|
|
|
|system()| does not support writing/reading "backgrounded" commands. |E5677|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
|
signs: support multiple columns #9295
closes #990
closes #9295
- Support for multiple auto-adjusted sign columns.
With this change, having more than one sign on a line, and with the
'auto' setting on 'signcolumn', extra columns will shown automatically
to accomodate all the existing signs.
For example, suppose we have this view:
5147 }
5148
5149 return sign->typenr;
5150 }
5151 }
5152 return 0;
5153 }
5154
We have GitGutter installed, so it tells us about modified lines that
are not commmited. So let's change line 5152:
5147 }
5148
5149 return sign->typenr;
5150 }
5151 }
~ 5152 return 0;
5153 }
5154
Now we add a mark over line 5152 using 'ma' in normal mode:
5147 }
5148
5149 return sign->typenr;
5150 }
5151 }
a ~ 5152 return 0;
5153 }
5154
Previously, Vim/Nvim would have picked only one of the signs,
because there was no support for having multiple signs in a line.
- Remove signs from deleted lines.
Suppose we have highlights on a group of lines and we delete them:
+ 6 use std::ops::Deref;
--+ 7 use std::borrow::Cow;
--+ 8 use std::io::{Cursor};
9 use proc_macro2::TokenStream;
10 use syn::export::ToTokens;
--+ 11 use std::io::Write;
>> 12 use std::ops::Deref;
Without this change, these signs will momentarily accumulate in
the sign column until the plugins wake up to refresh them.
+ --+ --+ --+ >> 6
Discussion: It may be better to extend the API a bit and allow this
to happen for only certain types of signs. For example, VIM marks
and vim-gitgutter removal signs may want to be presreved, unlike
line additions and linter highlights.
- 'signcolumn': support 'auto:NUM' and 'yes:NUM' settings
- sort signs according to id, from lowest to highest. If you have
git-gutter, vim-signature, and ALE, it would appear in this order:
git-gutter - vim-signature - ALE.
- recalculate size before screen update
- If no space for all signs, prefer the higher ids (while keeping the
rendering order from low to high).
- Prevent duplicate signs. Duplicate signs were invisible to the user,
before using our extended non-standard signcolumn settings.
- multi signcols: fix bug related to wrapped lines.
In wrapped lines, the wrapped parts of a line did not include the extra
columns if they existed. The result was a misdrawing of the wrapped
parts. Fix the issue by:
1. initializing the signcol counter to 0 when we are on a wrap boundary
2. allowing for the draw of spaces in that case.
2019-03-24 18:16:58 -07:00
|
|
|
|
Signs:
|
|
|
|
|
Signs are removed if the associated line is deleted.
|
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Startup:
|
|
|
|
|
|-e| and |-es| invoke the same "improved Ex mode" as -E and -Es.
|
|
|
|
|
|-E| and |-Es| read stdin as text (into buffer 1).
|
|
|
|
|
|-es| and |-Es| have improved behavior:
|
|
|
|
|
- Quits automatically, don't need "-c qa!".
|
|
|
|
|
- Skips swap-file dialog.
|
|
|
|
|
|-s| reads Normal commands from stdin if the script name is "-".
|
|
|
|
|
Reading text (instead of commands) from stdin |--|:
|
|
|
|
|
- works by default: "-" file is optional
|
|
|
|
|
- works in more cases: |-Es|, file args
|
|
|
|
|
|
|
|
|
|
TUI:
|
|
|
|
|
*:set-termcap*
|
|
|
|
|
Start Nvim with 'verbose' level 3 to show terminal capabilities: >
|
|
|
|
|
nvim -V3
|
|
|
|
|
<
|
|
|
|
|
*'term'* *E529* *E530* *E531*
|
|
|
|
|
'term' reflects the terminal type derived from |$TERM| and other environment
|
|
|
|
|
checks. For debugging only; not reliable during startup. >vim
|
|
|
|
|
:echo &term
|
|
|
|
|
< "builtin_x" means one of the |builtin-terms| was chosen, because the expected
|
|
|
|
|
terminfo file was not found on the system.
|
|
|
|
|
|
|
|
|
|
Nvim will use 256-colour capability on Linux virtual terminals. Vim uses
|
|
|
|
|
only 8 colours plus bright foreground on Linux VTs.
|
|
|
|
|
|
|
|
|
|
Vim combines what is in its |builtin-terms| with what it reads from terminfo,
|
|
|
|
|
and has a 'ttybuiltin' setting to control how that combination works. Nvim
|
|
|
|
|
uses one or the other, it does not attempt to merge the two.
|
|
|
|
|
|
|
|
|
|
UI/Display:
|
|
|
|
|
|Visual| selection highlights the character at cursor. |visual-use|
|
|
|
|
|
|
|
|
|
|
messages: When showing messages longer than 'cmdheight', only
|
|
|
|
|
scroll the message lines, not the entire screen. The
|
|
|
|
|
separator line is decorated by |hl-MsgSeparator| and
|
|
|
|
|
the "msgsep" flag of 'fillchars'. *msgsep*
|
|
|
|
|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
Variables:
|
|
|
|
|
|v:progpath| is always absolute ("full")
|
|
|
|
|
|v:windowid| is always available (for use by external UIs)
|
2017-07-26 02:31:01 -07:00
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Vimscript:
|
|
|
|
|
|:redir| nested in |execute()| works.
|
|
|
|
|
|
2016-06-15 18:33:47 -07:00
|
|
|
|
==============================================================================
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Upstreamed features *nvim-upstreamed*
|
2022-12-11 19:41:26 -07:00
|
|
|
|
|
|
|
|
|
These Nvim features were later integrated into Vim.
|
|
|
|
|
|
|
|
|
|
- 'fillchars' flags: "eob"
|
|
|
|
|
- 'wildoptions' flags: "pum" enables popupmenu for wildmode completion
|
|
|
|
|
- |<Cmd>|
|
|
|
|
|
- |WinClosed|
|
|
|
|
|
- |WinScrolled|
|
|
|
|
|
- |:sign-define| "numhl" argument
|
|
|
|
|
- |:source| works with anonymous (no file) scripts
|
2023-02-11 05:00:31 -07:00
|
|
|
|
- 'statusline' supports unlimited alignment sections
|
2022-12-11 19:41:26 -07:00
|
|
|
|
|
|
|
|
|
==============================================================================
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Changed features *nvim-changed*
|
2021-10-19 07:37:11 -07:00
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
This section lists various low-level details about other behavior changes.
|
2017-08-15 15:20:37 -07:00
|
|
|
|
|
2015-07-18 02:23:42 -07:00
|
|
|
|
|mkdir()| behaviour changed:
|
2016-04-07 18:36:14 -07:00
|
|
|
|
1. Assuming /tmp/foo does not exist and /tmp can be written to
|
2015-07-18 02:23:42 -07:00
|
|
|
|
mkdir('/tmp/foo/bar', 'p', 0700) will create both /tmp/foo and /tmp/foo/bar
|
|
|
|
|
with 0700 permissions. Vim mkdir will create /tmp/foo with 0755.
|
2016-04-07 18:36:14 -07:00
|
|
|
|
2. If you try to create an existing directory with `'p'` (e.g. mkdir('/',
|
2015-07-18 02:23:42 -07:00
|
|
|
|
'p')) mkdir() will silently exit. In Vim this was an error.
|
|
|
|
|
3. mkdir() error messages now include strerror() text when mkdir fails.
|
|
|
|
|
|
2015-09-20 08:04:33 -07:00
|
|
|
|
|string()| and |:echo| behaviour changed:
|
2016-04-07 18:36:14 -07:00
|
|
|
|
1. No maximum recursion depth limit is applied to nested container
|
2015-09-20 08:04:33 -07:00
|
|
|
|
structures.
|
2016-04-07 18:36:14 -07:00
|
|
|
|
2. |string()| fails immediately on nested containers, not when recursion limit
|
2015-09-20 08:04:33 -07:00
|
|
|
|
was exceeded.
|
2022-11-22 10:41:00 -07:00
|
|
|
|
2. When |:echo| encounters duplicate containers like >vim
|
2015-09-20 08:04:33 -07:00
|
|
|
|
|
|
|
|
|
let l = []
|
|
|
|
|
echo [l, l]
|
|
|
|
|
<
|
2016-04-07 18:36:14 -07:00
|
|
|
|
it does not use "[...]" (was: "[[], [...]]", now: "[[], []]"). "..." is
|
2015-09-20 08:04:33 -07:00
|
|
|
|
only used for recursive containers.
|
2016-04-07 18:36:14 -07:00
|
|
|
|
3. |:echo| printing nested containers adds "@level" after "..." designating
|
|
|
|
|
the level at which recursive container was printed: |:echo-self-refer|.
|
|
|
|
|
Same thing applies to |string()| (though it uses construct like
|
|
|
|
|
"{E724@level}"), but this is not reliable because |string()| continues to
|
2015-09-20 08:04:33 -07:00
|
|
|
|
error out.
|
2016-04-07 18:36:14 -07:00
|
|
|
|
4. Stringifyed infinite and NaN values now use |str2float()| and can be evaled
|
2016-02-21 11:58:58 -07:00
|
|
|
|
back.
|
2016-02-06 10:54:42 -07:00
|
|
|
|
5. (internal) Trying to print or stringify VAR_UNKNOWN in Vim results in
|
2018-08-25 07:38:24 -07:00
|
|
|
|
nothing, E908, in Nvim it is internal error.
|
2015-09-20 08:04:33 -07:00
|
|
|
|
|
2016-02-13 11:39:28 -07:00
|
|
|
|
|json_decode()| behaviour changed:
|
2016-02-01 11:22:07 -07:00
|
|
|
|
1. It may output |msgpack-special-dict|.
|
2016-02-13 11:39:28 -07:00
|
|
|
|
2. |msgpack-special-dict| is emitted also in case of duplicate keys, while in
|
|
|
|
|
Vim it errors out.
|
|
|
|
|
3. It accepts only valid JSON. Trailing commas are not accepted.
|
2016-02-01 11:22:07 -07:00
|
|
|
|
|
2016-02-13 11:39:28 -07:00
|
|
|
|
|json_encode()| behaviour slightly changed: now |msgpack-special-dict| values
|
|
|
|
|
are accepted, but |v:none| is not.
|
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Viminfo text files were replaced with binary (messagepack) |shada| files.
|
2015-07-05 04:08:50 -07:00
|
|
|
|
Additional differences:
|
|
|
|
|
|
|
|
|
|
- |shada-c| has no effect.
|
|
|
|
|
- |shada-s| now limits size of every item and not just registers.
|
2016-04-07 18:36:14 -07:00
|
|
|
|
- 'viminfo' option got renamed to 'shada'. Old option is kept as an alias for
|
2015-07-05 16:26:44 -07:00
|
|
|
|
compatibility reasons.
|
2016-04-07 18:36:14 -07:00
|
|
|
|
- |:wviminfo| was renamed to |:wshada|, |:rviminfo| to |:rshada|. Old
|
2015-08-15 04:50:04 -07:00
|
|
|
|
commands are still kept.
|
2016-04-07 18:36:14 -07:00
|
|
|
|
- ShaDa file format was designed with forward and backward compatibility in
|
2015-07-26 11:02:56 -07:00
|
|
|
|
mind. |shada-compatibility|
|
2016-04-07 18:36:14 -07:00
|
|
|
|
- Some errors make ShaDa code keep temporary file in-place for user to decide
|
|
|
|
|
what to do with it. Vim deletes temporary file in these cases.
|
2015-08-15 04:50:04 -07:00
|
|
|
|
|shada-error-handling|
|
2015-11-01 11:26:53 -07:00
|
|
|
|
- ShaDa file keeps search direction (|v:searchforward|), viminfo does not.
|
2015-07-05 04:08:50 -07:00
|
|
|
|
|
2017-02-11 11:47:02 -07:00
|
|
|
|
|printf()| returns something meaningful when used with `%p` argument: in Vim
|
|
|
|
|
it used to return useless address of the string (strings are copied to the
|
|
|
|
|
newly allocated memory all over the place) and fail on types which cannot be
|
|
|
|
|
coerced to strings. See |id()| for more details, currently it uses
|
|
|
|
|
`printf("%p", {expr})` internally.
|
|
|
|
|
|
2017-02-18 15:15:27 -07:00
|
|
|
|
|c_CTRL-R| pasting a non-special register into |cmdline| omits the last <CR>.
|
2017-02-17 18:39:07 -07:00
|
|
|
|
|
2021-10-19 07:37:11 -07:00
|
|
|
|
|CursorMoved| always triggers when moving between windows.
|
2022-02-07 17:19:06 -07:00
|
|
|
|
|
2019-11-17 20:06:59 -07:00
|
|
|
|
Lua interface (|lua.txt|):
|
2017-01-29 12:07:24 -07:00
|
|
|
|
|
2018-08-25 07:38:24 -07:00
|
|
|
|
- `:lua print("a\0b")` will print `a^@b`, like with `:echomsg "a\nb"` . In Vim
|
2017-01-29 12:07:24 -07:00
|
|
|
|
that prints `a` and `b` on separate lines, exactly like
|
|
|
|
|
`:lua print("a\nb")` .
|
2018-08-25 07:38:24 -07:00
|
|
|
|
- `:lua error('TEST')` emits the error “E5105: Error while calling lua chunk:
|
|
|
|
|
[string "<VimL compiled string>"]:1: TEST”, whereas Vim emits only “TEST”.
|
2017-05-11 08:45:11 -07:00
|
|
|
|
- Lua has direct access to Nvim |API| via `vim.api`.
|
2017-05-22 14:46:57 -07:00
|
|
|
|
- Lua package.path and package.cpath are automatically updated according to
|
|
|
|
|
'runtimepath': |lua-require|.
|
2017-01-29 12:07:24 -07:00
|
|
|
|
|
2019-08-04 18:33:45 -07:00
|
|
|
|
Commands:
|
|
|
|
|
|:doautocmd| does not warn about "No matching autocommands".
|
2022-08-17 04:50:40 -07:00
|
|
|
|
|:wincmd| accepts a count.
|
2022-09-24 18:57:10 -07:00
|
|
|
|
`:write!` does not show a prompt if the file was updated externally.
|
2019-08-04 18:33:45 -07:00
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Command-line:
|
2022-08-21 06:31:25 -07:00
|
|
|
|
The meanings of arrow keys do not change depending on 'wildoptions'.
|
|
|
|
|
|
2019-11-17 20:06:59 -07:00
|
|
|
|
Functions:
|
|
|
|
|
|input()| and |inputdialog()| support for each other’s features (return on
|
|
|
|
|
cancel and completion respectively) via dictionary argument (replaces all
|
2022-07-13 23:47:25 -07:00
|
|
|
|
other arguments if used), and "cancelreturn" can have any type if passed in
|
|
|
|
|
a dictionary.
|
2019-11-17 20:06:59 -07:00
|
|
|
|
|input()| and |inputdialog()| support user-defined cmdline highlighting.
|
|
|
|
|
|
2017-10-07 06:55:25 -07:00
|
|
|
|
Highlight groups:
|
2017-10-15 23:18:03 -07:00
|
|
|
|
|hl-ColorColumn|, |hl-CursorColumn| are lower priority than most other
|
|
|
|
|
groups
|
2022-04-11 09:20:24 -07:00
|
|
|
|
|hl-CurSearch| highlights match under cursor instead of last match found
|
|
|
|
|
using |n| or |N|
|
2017-03-27 18:42:03 -07:00
|
|
|
|
|hl-CursorLine| is low-priority unless foreground color is set
|
2022-04-30 15:23:30 -07:00
|
|
|
|
|hl-VertSplit| superseded by |hl-WinSeparator|
|
2022-08-18 06:23:04 -07:00
|
|
|
|
Highlight groups names are allowed to contain the characters `.` and `@`.
|
|
|
|
|
It is an error to define a highlight group with a name that doesn't match
|
|
|
|
|
the regexp `[a-zA-Z0-9_.@]*` (see |group-name|).
|
2017-10-07 06:55:25 -07:00
|
|
|
|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
Macro/|recording| behavior
|
|
|
|
|
Replay of a macro recorded during :lmap produces the same actions as when it
|
|
|
|
|
was recorded. In Vim if a macro is recorded while using :lmap'ped keys then
|
|
|
|
|
the behaviour during record and replay differs.
|
|
|
|
|
|
|
|
|
|
'keymap' is implemented via :lmap instead of :lnoremap so that you can use
|
|
|
|
|
macros and 'keymap' at the same time. This also means you can use |:imap| on
|
|
|
|
|
the results of keys from 'keymap'.
|
|
|
|
|
|
2022-04-27 06:27:58 -07:00
|
|
|
|
Mappings:
|
2022-05-12 20:31:17 -07:00
|
|
|
|
Creating a mapping for a simplifiable key (e.g. <C-I>) doesn't replace an
|
2022-04-27 06:27:58 -07:00
|
|
|
|
existing mapping for its simplified form (e.g. <Tab>).
|
|
|
|
|
|
2019-04-01 15:50:28 -07:00
|
|
|
|
Motion:
|
|
|
|
|
The |jumplist| avoids useless/phantom jumps.
|
|
|
|
|
|
2021-07-27 13:13:48 -07:00
|
|
|
|
Syntax highlighting:
|
|
|
|
|
syncolor.vim has been removed. Nvim now sets up default highlighting groups
|
|
|
|
|
automatically for both light and dark backgrounds, regardless of whether or
|
|
|
|
|
not syntax highlighting is enabled. This means that |:syntax-on| and
|
|
|
|
|
|:syntax-enable| are now identical. Users who previously used an
|
|
|
|
|
after/syntax/syncolor.vim file should transition that file into a
|
|
|
|
|
colorscheme. |:colorscheme|
|
|
|
|
|
|
2021-08-27 03:59:13 -07:00
|
|
|
|
Vimscript compatibility:
|
2017-11-14 02:47:49 -07:00
|
|
|
|
`count` does not alias to |v:count|
|
2018-06-18 16:50:15 -07:00
|
|
|
|
`errmsg` does not alias to |v:errmsg|
|
|
|
|
|
`shell_error` does not alias to |v:shell_error|
|
|
|
|
|
`this_session` does not alias to |v:this_session|
|
2017-11-08 18:20:12 -07:00
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Working directory (Vim implemented some of these after Nvim):
|
2022-02-10 21:44:47 -07:00
|
|
|
|
- |DirChanged| and |DirChangedPre| can be triggered when switching to another
|
|
|
|
|
window or tab.
|
2021-10-19 07:37:11 -07:00
|
|
|
|
- |getcwd()| and |haslocaldir()| may throw errors if the tab page or window
|
|
|
|
|
cannot be found. *E5000* *E5001* *E5002*
|
|
|
|
|
- |haslocaldir()| checks for tab-local directory if and only if -1 is passed as
|
|
|
|
|
window number, and its only possible returns values are 0 and 1.
|
|
|
|
|
- `getcwd(-1)` is equivalent to `getcwd(-1, 0)` instead of returning the global
|
|
|
|
|
working directory. Use `getcwd(-1, -1)` to get the global working directory.
|
|
|
|
|
|
2015-01-30 05:19:43 -07:00
|
|
|
|
==============================================================================
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Missing legacy features *nvim-missing*
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
These legacy Vim features are not yet implemented:
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2022-09-25 16:58:27 -07:00
|
|
|
|
*:gui*
|
|
|
|
|
*:gvim*
|
|
|
|
|
|
2015-01-30 05:19:43 -07:00
|
|
|
|
==============================================================================
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Removed legacy features *nvim-removed*
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2017-08-17 12:23:28 -07:00
|
|
|
|
These Vim features were intentionally removed from Nvim.
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
Aliases:
|
|
|
|
|
ex (alias for "nvim -e")
|
|
|
|
|
exim (alias for "nvim -E")
|
|
|
|
|
gex (GUI)
|
|
|
|
|
gview (GUI)
|
|
|
|
|
gvim (GUI)
|
|
|
|
|
gvimdiff (GUI)
|
|
|
|
|
rgview (GUI)
|
|
|
|
|
rgvim (GUI)
|
2020-11-21 08:18:23 -07:00
|
|
|
|
rview
|
|
|
|
|
rvim
|
2017-12-27 11:30:23 -07:00
|
|
|
|
view (alias for "nvim -R")
|
|
|
|
|
vimdiff (alias for "nvim -d" |diff-mode|)
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
Commands:
|
|
|
|
|
:fixdel
|
2023-01-03 03:07:43 -07:00
|
|
|
|
:hardcopy
|
2017-12-27 11:30:23 -07:00
|
|
|
|
:helpfind
|
|
|
|
|
:mode (no longer accepts an argument)
|
|
|
|
|
:open
|
|
|
|
|
:Print
|
2021-06-18 03:08:24 -07:00
|
|
|
|
:promptfind
|
|
|
|
|
:promptrepl
|
2021-05-21 09:48:31 -07:00
|
|
|
|
:scriptversion (always version 1)
|
2017-12-27 11:30:23 -07:00
|
|
|
|
:shell
|
2021-06-19 08:28:22 -07:00
|
|
|
|
:sleep! (does not hide the cursor; same as :sleep)
|
2017-12-27 11:30:23 -07:00
|
|
|
|
:smile
|
|
|
|
|
:tearoff
|
2022-10-08 07:48:07 -07:00
|
|
|
|
:cstag
|
|
|
|
|
:cscope
|
|
|
|
|
:lcscope
|
|
|
|
|
:scscope
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
Compile-time features:
|
|
|
|
|
Emacs tags support
|
|
|
|
|
X11 integration (see |x11-selection|)
|
2017-01-03 21:32:46 -07:00
|
|
|
|
|
2020-01-13 00:41:55 -07:00
|
|
|
|
Eval:
|
2021-09-14 10:20:33 -07:00
|
|
|
|
Vim9script
|
2022-10-08 07:48:07 -07:00
|
|
|
|
*cscope_connection()*
|
2020-01-13 00:41:55 -07:00
|
|
|
|
*js_encode()*
|
|
|
|
|
*js_decode()*
|
|
|
|
|
*v:none* (used by Vim to represent JavaScript "undefined"); use |v:null| instead.
|
2022-02-16 14:23:08 -07:00
|
|
|
|
*v:sizeofint*
|
|
|
|
|
*v:sizeoflong*
|
|
|
|
|
*v:sizeofpointer*
|
2020-01-13 00:41:55 -07:00
|
|
|
|
|
2020-10-21 21:30:07 -07:00
|
|
|
|
Events:
|
|
|
|
|
*SigUSR1* Use |Signal| to detect `SIGUSR1` signal instead.
|
|
|
|
|
|
2019-09-08 00:21:54 -07:00
|
|
|
|
Highlight groups:
|
|
|
|
|
*hl-StatusLineTerm* *hl-StatusLineTermNC* are unnecessary because Nvim
|
|
|
|
|
supports 'winhighlight' window-local highlights.
|
2022-11-22 10:41:00 -07:00
|
|
|
|
For example, to mimic Vim's StatusLineTerm: >vim
|
2019-09-08 00:21:54 -07:00
|
|
|
|
hi StatusLineTerm ctermfg=black ctermbg=green
|
|
|
|
|
hi StatusLineTermNC ctermfg=green
|
|
|
|
|
autocmd TermOpen,WinEnter * if &buftype=='terminal'
|
|
|
|
|
\|setlocal winhighlight=StatusLine:StatusLineTerm,StatusLineNC:StatusLineTermNC
|
|
|
|
|
\|else|setlocal winhighlight=|endif
|
|
|
|
|
<
|
|
|
|
|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
Options:
|
2022-09-25 16:58:27 -07:00
|
|
|
|
antialias
|
2022-05-28 01:42:56 -07:00
|
|
|
|
*'balloondelay'* *'bdlay'*
|
|
|
|
|
*'ballooneval'* *'beval'* *'noballooneval'* *'nobeval'*
|
|
|
|
|
*'balloonexpr'* *'bexpr'*
|
2022-09-25 16:58:27 -07:00
|
|
|
|
bioskey (MS-DOS)
|
|
|
|
|
conskey (MS-DOS)
|
2017-12-27 11:30:23 -07:00
|
|
|
|
*'cp'* *'nocompatible'* *'nocp'* *'compatible'* (Nvim is always "nocompatible".)
|
|
|
|
|
'cpoptions' (gjkHw<*- and all POSIX flags were removed)
|
|
|
|
|
*'cryptmethod'* *'cm'* *'key'* (Vim encryption implementation)
|
2022-10-08 07:48:07 -07:00
|
|
|
|
cscopepathcomp
|
|
|
|
|
cscopeprg
|
|
|
|
|
cscopequickfix
|
|
|
|
|
cscoperelative
|
|
|
|
|
cscopetag
|
|
|
|
|
cscopetagorder
|
|
|
|
|
cscopeverbose
|
2017-12-27 11:30:23 -07:00
|
|
|
|
*'ed'* *'edcompatible'* *'noed'* *'noedcompatible'*
|
2016-01-27 04:20:44 -07:00
|
|
|
|
'encoding' ("utf-8" is always used)
|
2022-09-25 16:58:27 -07:00
|
|
|
|
esckeys
|
2016-09-24 06:07:49 -07:00
|
|
|
|
'guioptions' "t" flag was removed
|
2020-08-31 00:51:35 -07:00
|
|
|
|
*'guifontset'* *'gfs'* (Use 'guifont' instead.)
|
2016-09-24 06:07:49 -07:00
|
|
|
|
*'guipty'* (Nvim uses pipes and PTYs consistently on all platforms.)
|
2017-11-06 16:51:03 -07:00
|
|
|
|
'highlight' (Names of builtin |highlight-groups| cannot be changed.)
|
2016-09-24 06:07:49 -07:00
|
|
|
|
*'imactivatefunc'* *'imaf'*
|
|
|
|
|
*'imactivatekey'* *'imak'*
|
|
|
|
|
*'imstatusfunc'* *'imsf'*
|
2022-05-22 20:20:18 -07:00
|
|
|
|
*'insertmode'* *'im'* Use the following script to emulate 'insertmode':
|
2022-11-22 10:41:00 -07:00
|
|
|
|
>vim
|
2022-06-16 17:16:33 -07:00
|
|
|
|
autocmd BufWinEnter * startinsert
|
|
|
|
|
inoremap <Esc> <C-X><C-Z><C-]>
|
|
|
|
|
inoremap <C-C> <C-X><C-Z>
|
|
|
|
|
inoremap <C-L> <C-X><C-Z><C-]><Esc>
|
|
|
|
|
inoremap <C-Z> <C-X><C-Z><Cmd>suspend<CR>
|
|
|
|
|
noremap <C-C> <Esc>
|
|
|
|
|
snoremap <C-C> <Esc>
|
|
|
|
|
noremap <C-\><C-G> <C-\><C-N><Cmd>startinsert<CR>
|
|
|
|
|
cnoremap <C-\><C-G> <C-\><C-N><Cmd>startinsert<CR>
|
|
|
|
|
inoremap <C-\><C-G> <C-X><C-Z>
|
|
|
|
|
autocmd CmdWinEnter * noremap <buffer> <C-C> <C-C>
|
|
|
|
|
autocmd CmdWinEnter * inoremap <buffer> <C-C> <C-C>
|
|
|
|
|
|
|
|
|
|
lua << EOF
|
|
|
|
|
vim.on_key(function(c)
|
|
|
|
|
if c == '\27' then
|
|
|
|
|
local mode = vim.api.nvim_get_mode().mode
|
|
|
|
|
if mode:find('^[nvV\22sS\19]') and vim.fn.getcmdtype() == '' then
|
|
|
|
|
vim.schedule(function()
|
|
|
|
|
vim.cmd('startinsert')
|
|
|
|
|
end)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
EOF
|
2022-05-22 20:20:18 -07:00
|
|
|
|
<
|
2016-09-24 06:07:49 -07:00
|
|
|
|
*'macatsui'*
|
2022-05-28 01:42:56 -07:00
|
|
|
|
*'maxcombine'* *'mco'*
|
|
|
|
|
Nvim always displays up to 6 combining characters. You can still edit
|
|
|
|
|
text with more than 6 combining characters, you just can't see them.
|
|
|
|
|
Use |g8| or |ga|. See |mbyte-combining|.
|
2022-09-25 16:58:27 -07:00
|
|
|
|
*'maxmem'* Nvim delegates memory-management to the OS.
|
|
|
|
|
*'maxmemtot'* Nvim delegates memory-management to the OS.
|
2023-01-03 03:07:43 -07:00
|
|
|
|
*'printdevice'*
|
|
|
|
|
*'printencoding'*
|
|
|
|
|
*'printexpr'*
|
|
|
|
|
*'printfont'*
|
|
|
|
|
*'printheader'*
|
|
|
|
|
*'printmbcharset'*
|
2021-07-23 09:06:01 -07:00
|
|
|
|
*'prompt'* *'noprompt'*
|
2022-05-18 13:58:10 -07:00
|
|
|
|
*'remap'* *'noremap'*
|
2016-09-24 06:07:49 -07:00
|
|
|
|
*'restorescreen'* *'rs'* *'norestorescreen'* *'nors'*
|
2022-11-06 19:44:30 -07:00
|
|
|
|
*'secure'*
|
|
|
|
|
Everything is allowed in 'exrc' files since they must be explicitly marked
|
|
|
|
|
trusted.
|
2022-09-25 16:58:27 -07:00
|
|
|
|
*'shelltype'*
|
2016-09-24 06:07:49 -07:00
|
|
|
|
*'shortname'* *'sn'* *'noshortname'* *'nosn'*
|
|
|
|
|
*'swapsync'* *'sws'*
|
|
|
|
|
*'termencoding'* *'tenc'* (Vim 7.4.852 also removed this for Windows)
|
2022-05-18 14:57:18 -07:00
|
|
|
|
*'terse'* *'noterse'* (Add "s" to 'shortmess' instead)
|
2022-09-25 16:58:27 -07:00
|
|
|
|
textauto
|
|
|
|
|
textmode
|
2016-09-24 06:07:49 -07:00
|
|
|
|
*'toolbar'* *'tb'*
|
|
|
|
|
*'toolbariconsize'* *'tbis'*
|
|
|
|
|
*'ttybuiltin'* *'tbi'* *'nottybuiltin'* *'notbi'*
|
2022-05-28 01:42:56 -07:00
|
|
|
|
*'ttyfast'* *'tf'* *'nottyfast'* *'notf'*
|
2016-09-24 06:07:49 -07:00
|
|
|
|
*'ttymouse'* *'ttym'*
|
|
|
|
|
*'ttyscroll'* *'tsl'*
|
|
|
|
|
*'ttytype'* *'tty'*
|
2022-09-25 16:58:27 -07:00
|
|
|
|
weirdinvert
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2022-10-09 05:21:52 -07:00
|
|
|
|
Performance:
|
|
|
|
|
Folds are not updated during insert-mode.
|
|
|
|
|
|
2023-01-10 07:49:39 -07:00
|
|
|
|
Providers:
|
|
|
|
|
|
|
|
|
|
- *if_lua* : Nvim |Lua| API is not compatible with Vim's "if_lua".
|
|
|
|
|
- *if_mzscheme*
|
|
|
|
|
- |if_pyth|: *python-bindeval* *python-Function* are not supported.
|
|
|
|
|
- *if_tcl*
|
|
|
|
|
|
2018-05-28 22:22:15 -07:00
|
|
|
|
Startup:
|
|
|
|
|
--literal (file args are always literal; to expand wildcards on Windows, use
|
|
|
|
|
|:n| e.g. `nvim +"n *"`)
|
2017-12-27 11:30:23 -07:00
|
|
|
|
Easy mode: eview, evim, nvim -y
|
2020-11-21 08:18:23 -07:00
|
|
|
|
Restricted mode: rview, rvim, nvim -Z
|
2017-12-27 11:30:23 -07:00
|
|
|
|
Vi mode: nvim -v
|
2018-05-28 22:22:15 -07:00
|
|
|
|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
Test functions:
|
|
|
|
|
test_alloc_fail()
|
|
|
|
|
test_autochdir()
|
|
|
|
|
test_disable_char_avail()
|
2021-04-22 18:07:06 -07:00
|
|
|
|
test_feedinput()
|
|
|
|
|
test_garbagecollect_soon
|
|
|
|
|
test_getvalue()
|
|
|
|
|
test_ignore_error()
|
|
|
|
|
test_null_blob()
|
2017-12-27 11:30:23 -07:00
|
|
|
|
test_null_channel()
|
|
|
|
|
test_null_dict()
|
2021-04-27 18:48:38 -07:00
|
|
|
|
test_null_function()
|
2017-12-27 11:30:23 -07:00
|
|
|
|
test_null_job()
|
|
|
|
|
test_null_list()
|
|
|
|
|
test_null_partial()
|
|
|
|
|
test_null_string()
|
2021-04-22 18:07:06 -07:00
|
|
|
|
test_option_not_set()
|
2017-12-27 11:30:23 -07:00
|
|
|
|
test_override()
|
2021-04-22 18:07:06 -07:00
|
|
|
|
test_refcount()
|
|
|
|
|
test_scrollbar()
|
|
|
|
|
test_setmouse()
|
2017-12-27 11:30:23 -07:00
|
|
|
|
test_settime()
|
2022-01-10 03:31:16 -07:00
|
|
|
|
test_srand_seed()
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2017-12-27 11:30:23 -07:00
|
|
|
|
TUI:
|
|
|
|
|
*t_xx* *termcap-options* *t_AB* *t_Sb* *t_vb* *t_SI*
|
|
|
|
|
Nvim does not have special `t_XX` options nor <t_XX> keycodes to configure
|
|
|
|
|
terminal capabilities. Instead Nvim treats the terminal as any other UI,
|
|
|
|
|
e.g. 'guicursor' sets the terminal cursor style if possible.
|
|
|
|
|
|
|
|
|
|
*termcap*
|
|
|
|
|
Nvim never uses the termcap database, only |terminfo| and |builtin-terms|.
|
|
|
|
|
|
|
|
|
|
*xterm-8bit* *xterm-8-bit*
|
|
|
|
|
Xterm can be run in a mode where it uses true 8-bit CSI. Supporting this
|
|
|
|
|
requires autodetection of whether the terminal is in UTF-8 mode or non-UTF-8
|
|
|
|
|
mode, as the 8-bit CSI character has to be written differently in each case.
|
|
|
|
|
Vim issues a "request version" sequence to the terminal at startup and looks
|
|
|
|
|
at how the terminal is sending CSI. Nvim does not issue such a sequence and
|
|
|
|
|
always uses 7-bit control sequences.
|
2015-01-30 05:19:43 -07:00
|
|
|
|
|
2022-10-08 07:48:07 -07:00
|
|
|
|
Cscope:
|
|
|
|
|
*cscope*
|
2022-10-20 03:04:32 -07:00
|
|
|
|
Cscope support has been removed in favour of LSP based solutions.
|
2022-10-08 07:48:07 -07:00
|
|
|
|
|
2023-01-03 03:07:43 -07:00
|
|
|
|
Hardcopy:
|
|
|
|
|
*hardcopy*
|
|
|
|
|
`:hardcopy` was removed. Instead, use `:TOhtml` and print the resulting HTML
|
|
|
|
|
using a web browser or some other HTML viewer.
|
|
|
|
|
|
2015-01-30 05:19:43 -07:00
|
|
|
|
==============================================================================
|
2019-11-17 20:06:59 -07:00
|
|
|
|
vim:tw=78:ts=8:sw=2:et:ft=help:norl:
|