Nvim :help
pages, generated
from source
using the tree-sitter-vimdoc parser.
buffers
active-buffer
active: The buffer is displayed in a window. If there is a file for this
buffer, it has been read into the buffer. The buffer may have been
modified since then and thus be different from the file.
hidden: The buffer is not displayed. If there is a file for this buffer, it
has been read into the buffer. Otherwise it's the same as an active
buffer, you just can't see it.
inactive-buffer
inactive: The buffer is not displayed and does not contain anything. Options
for the buffer are remembered if the file was once loaded. It can
contain marks from the shada file. But the buffer doesn't
contain text.buffer-reuse
Each buffer has a unique number and the number will not change within a Vim
session. The bufnr() and bufname() functions can be used to convert
between a buffer name and the buffer number. There is one exception: if a new
empty buffer is created and it is not modified, the buffer will be re-used
when loading another file into that buffer. This also means the buffer number
will not change.window-ID
winid
windowid
Each window has a unique identifier called the window ID. This identifier
will not change within a Vim session. The win_getid() and win_id2tabwin()
functions can be used to convert between the window/tab number and the
identifier. There is also the window number, which may change whenever
windows are opened or closed, see winnr().
The window number is only valid in one specific tab. The window ID is valid
across tabs. For most functions that take a window ID or a window number, the
window number only applies to the current tab, while the window ID can refer
to a window in any tab.vim -o file1 file2 file3"-oN", where N is a decimal number, opens N windows split horizontally. If there are more file names than windows, only N windows are opened and some files do not get a window. If there are more windows than file names, the last few windows will be editing empty buffers. Similarly, "-ON" opens N windows split vertically, with the same restrictions.
status-line
A status line will be used to separate windows. The 'laststatus' option tells
when the last window also has a status line:
'laststatus' = 0 never a status line
'laststatus' = 1 status line if there is more than one window
'laststatus' = 2 always a status line
'laststatus' = 3 have a global statusline at the bottom instead
of one for each windowfiller-lines
The lines after the last buffer line in a window are called filler lines. By
default, these lines start with a tilde (~) character. The "eob" item in the
'fillchars' option can be used to change this character. By default, these
characters are highlighted as NonText (hl-NonText). The EndOfBuffer
highlight group (hl-EndOfBuffer) can be used to change the highlighting of
the filler characters.CTRL-W_s
CTRL-W S CTRL-W_S
CTRL-W CTRL-S
CTRL-W_CTRL-S
:[N]sp[lit] [++opt] [+cmd] [file] :sp
:split
Split current window in two. The result is two viewports on
the same file.CTRL-S
does not work on all terminals and might block
further input, use CTRL-Q
to get going again.
Also see ++opt and +cmd.
E242
E1159
Be careful when splitting a window in an autocommand, it may
mess up the window layout if this happens while making other
window layout changes.CTRL-V
CTRL-W_CTRL-V
CTRL-W v CTRL-W_v
:[N]vs[plit] [++opt] [+cmd] [file] :vs
:vsplit
Like :split, but split vertically. The windows will be
spread out horizontally if
1. a width was not specified,
2. 'equalalways' is set,
3. 'eadirection' isn't "ver", and
4. one of the other windows is wider than the current or new
window.
If N was given make the new window N columns wide, if
possible.
Note: In other places CTRL-Q
does the same as CTRL-V
, but here
it doesn't!CTRL-W_n
CTRL-W CTRL-N
CTRL-W_CTRL-N
:[N]new [++opt] [+cmd] :new
Create a new window and start editing an empty file in it.
Make new window N high (default is to use half the existing
height). Reduces the current window height to create room (and
others, if the 'equalalways' option is set and 'eadirection'
isn't "hor").
Also see ++opt and +cmd.
If 'fileformats' is not empty, the first format given will be
used for the new buffer. If 'fileformats' is empty, the
'fileformat' of the current buffer is used. This can be
overridden with the ++opt argument.
Autocommands are executed in this order:
1. WinLeave for the current window
2. WinEnter for the new window
3. BufLeave for the current buffer
4. BufEnter for the new buffer
This behaves like a ":split" first, and then an ":enew"
command.{file}
:[N]sp[lit] [++opt] [+cmd] {file}
:split_f
Create a new window and start editing file {file}
in it. This
behaves almost like a ":split" first, and then an ":edit"
command, but the alternate file name in the original window is
set to {file}
.
If [+cmd] is given, execute the command when the file has been
loaded +cmd.
Also see ++opt.
Make new window N high (default is to use half the existing
height). Reduces the current window height to create room
(and others, if the 'equalalways' option is set).:vne
:vnew
Like :new, but split vertically. If 'equalalways' is set
and 'eadirection' isn't "ver" the windows will be spread out
horizontally, unless a width was specified.:sv
:sview
splitview
Same as ":split", but set 'readonly' option for this buffer.{file}
:sf
:sfi
:sfind
splitfind
Same as ":split", but search for {file}
in 'path' like in
:find. Doesn't split if {file}
is not found.CTRL-^
CTRL-W_CTRL-^
CTRL-W_^
CTRL-W ^ Split the current window in two and edit the alternate file.
When a count N is given, split the current window and edit
buffer N. Similar to ":sp #" and ":sp #N", but it allows the
other buffer to be unnamed. This command matches the behavior
of CTRL-^, except that it splits a window first.CTRL-W_ge
Detach the current window as an external window.
Only available when using a UI with ui-multigrid support.E36
Creating a window will fail if there is not enough room. Every window needs
at least one screen line and column, sometimes more. Options 'winminheight'
and 'winminwidth' are relevant.:vert
:vertical
:vert[ical] {cmd}
Execute {cmd}
. If it contains a command that splits a window,
it will be split vertically. For vertical wincmd =
windows
will be equalized only vertically.
Doesn't work for :execute and :normal.:hor
:horizontal
:hor[izontal] {cmd}
Execute {cmd}
. Currently only makes a difference for
the following commands:
:wincmd =
: equalize windows only horizontally.
{cmd}
:lefta
:leftabove
:abo[veleft] {cmd}
:abo
:aboveleft
Execute {cmd}
. If it contains a command that splits a window,
it will be opened left (vertical split) or above (horizontal
split) the current window. Overrules 'splitbelow' and
'splitright'.
Doesn't work for :execute and :normal.{cmd}
:rightb
:rightbelow
:bel[owright] {cmd}
:bel
:belowright
Execute {cmd}
. If it contains a command that splits a window,
it will be opened right (vertical split) or below (horizontal
split) the current window. Overrules 'splitbelow' and
'splitright'.
Doesn't work for :execute and :normal.:topleft
E442
:to[pleft] {cmd}
Execute {cmd}
. If it contains a command that splits a window,
it will appear at the top and occupy the full width of the Vim
window. When the split is vertical the window appears at the
far left and occupies the full height of the Vim window.
Doesn't work for :execute and :normal.:bo
:botright
:bo[tright] {cmd}
Execute {cmd}
. If it contains a command that splits a window,
it will appear at the bottom and occupy the full width of the
Vim window. When the split is vertical the window appears at
the far right and occupies the full height of the Vim window.
Doesn't work for :execute and :normal.:vertical topleft split tagsOpens a vertically split, full-height window on the "tags" file at the far left of the Vim window.
:count_quit
CTRL-W q CTRL-W_q
CTRL-W CTRL-Q
CTRL-W_CTRL-Q
Without {count}
: Quit the current window. If {count}
is
given quit the {count}
window.
edit-window
When quitting the last edit window (not counting help or
preview windows), exit Vim.CTRL-Q
does not work on all terminals).
If [count] is greater than the last window number the last
window will be closed::1quit " quit the first window :$quit " quit the last window :9quit " quit the last window " if there are fewer than 9 windows opened :-quit " quit the previous window :+quit " quit the next window :+2quit " quit the second next window
{count}
: Quit the current window. If {count}
is
given quit the {count}
window
If this was the last window for a buffer, any changes to that
buffer are lost. When quitting the last window (not counting
help windows), exit Vim. The contents of the buffer are lost,
even when 'hidden' is set.CTRL-W_c
:clo
:close
Without {count}
: Close the current window. If given close the
{count}
window.E444
CTRL-C
CTRL-W_CTRL-C
You might have expected that CTRL-W
CTRL-C
closes the current
window, but that does not work, because the CTRL-C
cancels the
command.:hide
:hid[e]
:{count}hid[e]
Without {count}
: Quit the current window, unless it is the
last window on the screen.
If {count}
is given quit the {count}
window.unload
, delete
or wipe
).
If the window is the last one in the current tab page the tab
page is closed. tab-page{cmd}
Execute {cmd}
with 'hidden' set. The previous value of
'hidden' is restored after {cmd}
has been executed.
Example::hide edit Makefile
CTRL-W_o
E445
CTRL-W CTRL-O
CTRL-W_CTRL-O
:on
:only
Make the current window the only one on the screen. All other
windows are closed. For {count}
see the :quit
command
above :count_quit.:fc
:fclose
:[count]fc[lose][!]
Close [count] floating windows with the highest zindex values.
'!' to close all floating windows.<Down>
CTRL-W_<Down>
CTRL-W CTRL-J
CTRL-W_CTRL-J
CTRL-W_j
CTRL-W j Move cursor to Nth window below current one. Uses the cursor
position to select between alternatives.<Up>
CTRL-W_<Up>
CTRL-W CTRL-K
CTRL-W_CTRL-K
CTRL-W_k
CTRL-W k Move cursor to Nth window above current one. Uses the cursor
position to select between alternatives.<Left>
CTRL-W_<Left>
CTRL-W CTRL-H
CTRL-W_CTRL-H
CTRL-W <BS>
CTRL-W_<BS>
CTRL-W_h
CTRL-W h Move cursor to Nth window left of current one. Uses the
cursor position to select between alternatives.<Right>
CTRL-W_<Right>
CTRL-W CTRL-L
CTRL-W_CTRL-L
CTRL-W_l
CTRL-W l Move cursor to Nth window right of current one. Uses the
cursor position to select between alternatives.CTRL-W_w
CTRL-W_CTRL-W
CTRL-W CTRL-W
Without count: move cursor to window below/right of the
current one. If there is no window below or right, go to
top-left window.
With count: go to Nth window (windows are numbered from
top-left to bottom-right). To obtain the window number see
bufwinnr() and winnr(). When N is larger than the number
of windows go to the last window.CTRL-W_W
CTRL-W W Without count: move cursor to window above/left of current
one. If there is no window above or left, go to bottom-right
window. With count: go to Nth window, like with CTRL-W
w.{arg}
:winc[md] [count] {arg}
Like executing CTRL-W
[count] {arg}
. Example::wincmd j
:exe nr .. "wincmd w"
CTRL-W
commands can also be executed with :wincmd, for those
places where a Normal mode command can't be used or is inconvenient (e.g.
in a browser-based terminal).CTRL-W_r
CTRL-W_CTRL-R
E443
CTRL-W CTRL-R
Rotate windows downwards/rightwards. The first window becomes
the second one, the second one becomes the third one, etc.
The last window becomes the first window. The cursor remains
in the same window.
This only works within the row or column of windows that the
current window is in.CTRL-W_R
CTRL-W R Rotate windows upwards/leftwards. The second window becomes
the first one, the third one becomes the second one, etc. The
first window becomes the last window. The cursor remains in
the same window.
This only works within the row or column of windows that the
current window is in.CTRL-W_x
CTRL-W_CTRL-X
CTRL-W CTRL-X
Without count: Exchange current window with next one. If there
is no next window, exchange with previous window.
With count: Exchange current window with Nth window (first
window is 1). The cursor is put in the other window.
When vertical and horizontal window splits are mixed, the
exchange is only done in the row or column of windows that the
current window is in.CTRL-W
K will change that in
horizontally split windows. CTRL-W
H does it the other way around.CTRL-W_K
CTRL-W K Move the current window to be at the very top, using the full
width of the screen. This works like :topleft split
, except
it is applied to the current window and no new window is
created.CTRL-W_J
CTRL-W J Move the current window to be at the very bottom, using the
full width of the screen. This works like :botright split
,
except it is applied to the current window and no new window
is created.CTRL-W_H
CTRL-W H Move the current window to be at the far left, using the
full height of the screen. This works like
:vert topleft split
, except it is applied to the current
window and no new window is created.CTRL-W_L
CTRL-W L Move the current window to be at the far right, using the full
height of the screen. This works like :vert botright split
,
except it is applied to the current window and no new window
is created.CTRL-W_T
CTRL-W T Move the current window to a new tab page. This fails if
there is only one window in the current tab page.
This works like :tab split
, except the previous window is
closed.
When a count is specified the new tab page will be opened
before the tab page with this index. Otherwise it comes after
the current tab page.CTRL-W_=
CTRL-W = Make all windows (almost) equally high and wide, but use
'winheight' and 'winwidth' for the current window.
Windows with 'winfixheight' set keep their height and windows
with 'winfixwidth' set keep their width.
To equalize only vertically (make window equally high) use
vertical wincmd =
.
To equalize only horizontally (make window equally wide) use
horizontal wincmd =
.:res
:resize
CTRL-W_-
CTRL-W - Decrease current window height by N (default 1).
If used after :vertical: decrease width by N.CTRL-W_+
CTRL-W + Increase current window height by N (default 1).
If used after :vertical: increase width by N.CTRL-_
CTRL-W_CTRL-_
CTRL-W__
CTRL-W _ Set current window height to N (default: highest possible).:resize
above, but apply the size to window {winnr}
instead of the current window.{nr}
.CTRL-W_<
CTRL-W < Decrease current window width by N (default 1).CTRL-W_>
CTRL-W > Increase current window width by N (default 1).:vertical-resize
CTRL-W_bar
CTRL-W | Set current window width to N (default: widest possible).win-scrolled-resized
If you want to get notified of changes in window sizes, the WinResized
autocommand event can be used.
If you want to get notified of text in windows scrolling vertically or
horizontally, the WinScrolled autocommand event can be used. This will also
trigger in window size changes.
Exception: the events will not be triggered when the text scrolls for
'incsearch'.
WinResized-event
The WinResized event is triggered after updating the display, several
windows may have changed size then. A list of the IDs of windows that changed
since last time is provided in the v:event.windows variable, for example:
[1003, 1006]
WinScrolled-event
The WinScrolled event is triggered after WinResized, and also if a window
was scrolled. That can be vertically (the text at the top of the window
changed) or horizontally (when 'wrap' is off or when the first displayed part
of the first line changes). Note that WinScrolled will trigger many more
times than WinResized, it may slow down editing a bit.{ all: {width: 0, height: 2, leftcol: 0, skipcol: 0, topline: 1, topfill: 0}, 1003: {width: 0, height: -1, leftcol: 0, skipcol: 0, topline: 0, topfill: 0}, 1006: {width: 0, height: 1, leftcol: 0, skipcol: 0, topline: 1, topfill: 0}, }Note that the "all" entry has the absolute values of the individual windows accumulated.
winlayout()
and getwininfo()
functions.:al
:all
:sal
:sall
:[N]sal[l][!] [N]
Rearrange the screen to open one window for each argument.
All other windows are closed. When a count is given, this is
the maximum number of windows to open.
With the :tab modifier open a tab page for each argument.
When there are more arguments than 'tabpagemax' further ones
become split windows in the last tab page.
When the 'hidden' option is set, all buffers in closed windows
become hidden.
When 'hidden' is not set, and the 'autowrite' option is set,
modified buffers are written. Otherwise, windows that have
buffers that are modified are not removed, unless the [!] is
given, then they become hidden. But modified buffers are
never abandoned, so changes cannot get lost.
[N] is the maximum number of windows to open. 'winheight'
also limits the number of windows opened ('winwidth' if
:vertical was prepended).
Buf/Win Enter/Leave autocommands are not executed for the new
windows here, that's only done when they are really entered.
If autocommands change the window layout while this command is
busy an error will be given. E249
:sa
:sargument
Short for ":split | argument [N]": split window and go to Nth
argument. But when there is no such argument, the window is
not split. Also see ++opt and +cmd.:sn
:snext
Short for ":split | [N]next": split window and go to Nth next
argument. But when there is no next file, the window is not
split. Also see ++opt and +cmd.:spr
:sprevious
:[N]sN[ext][!] [++opt] [+cmd] [N] :sN
:sNext
Short for ":split | [N]Next": split window and go to Nth
previous argument. But when there is no previous file, the
window is not split. Also see ++opt and +cmd.:sre
:srewind
:sre[wind][!] [++opt] [+cmd]
Short for ":split | rewind": split window and go to first
argument. But when there is no argument list, the window is
not split. Also see ++opt and +cmd.:sla
:slast
:sla[st][!] [++opt] [+cmd]
Short for ":split | last": split window and go to last
argument. But when there is no argument list, the window is
not split. Also see ++opt and +cmd.:dr
:drop
:dr[op] [++opt] [+cmd] {file}
..
Edit the first {file}
in a window.
:windo
:[range]windo {cmd}
Execute {cmd}
in each window or if [range] is given
only in windows for which the window number lies in
the [range]. It works like doing this:CTRL-W t :{cmd} CTRL-W w :{cmd} etc.
{cmd}
can contain '|' to concatenate several commands.
{cmd}
must not open or close windows or reorder them.:bufdo
:[range]bufdo[!] {cmd}
Execute {cmd}
in each buffer in the buffer list or if
[range] is given only for buffers for which their
buffer number is in the [range]. It works like doing
this::bfirst :{cmd} :bnext :{cmd} etc.
{cmd}
can contain '|' to concatenate several commands.
{cmd}
must not delete buffers or add buffers to the
buffer list.
Note: While this command is executing, the Syntax
autocommand event is disabled by adding it to
'eventignore'. This considerably speeds up editing
each buffer.:windo set nolist foldcolumn=0 | normal! znThis resets the 'list' option and disables folding in all windows.
:bufdo set fileencoding= | updateThis resets the 'fileencoding' in each buffer and writes it if this changed the buffer. The result is that all buffers will use the 'encoding' encoding (if conversion succeeds).
:sta
:stag
:sta[g][!] [tagname]
Does ":tag[!] [tagname]" and splits the window for the found
tag. See also :tag.CTRL-W_]
CTRL-W_CTRL-]
CTRL-W CTRL-]
Split current window in two. Use identifier under cursor as a
tag and jump to it in the new upper window.
In Visual mode uses the Visually selected text as a tag.
Make new window N high.CTRL-W_g]
CTRL-W g ] Split current window in two. Use identifier under cursor as a
tag and perform ":tselect" on it in the new upper window.
In Visual mode uses the Visually selected text as a tag.
Make new window N high.CTRL-W_g_CTRL-]
CTRL-W g CTRL-]
Split current window in two. Use identifier under cursor as a
tag and perform ":tjump" on it in the new upper window.
In Visual mode uses the Visually selected text as a tag.
Make new window N high.CTRL-W_f
CTRL-W_CTRL-F
CTRL-W CTRL-F
Split current window in two. Edit file name under cursor.
Like ":split gf", but window isn't split if the file does not
exist.
Uses the 'path' variable as a list of directory names where to
look for the file. Also the path for current file is
used to search for the file name.
If the name is a hypertext link that looks like
"type://machine/path", only "/path" is used.
If a count is given, the count'th matching file is edited.CTRL-W_F
Split current window in two. Edit file name under cursor and
jump to the line number following the file name. See gF for
details on how the line number is obtained.CTRL-W_gf
Open a new tab page and edit the file name under the cursor.
Like "tab split" and "gf", but the new tab page isn't created
if the file does not exist.CTRL-W_gF
Open a new tab page and edit the file name under the cursor
and jump to the line number following the file name. Like
"tab split" and "gF", but the new tab page isn't created if
the file does not exist.CTRL-W_gt
Go to next tab page, same as gt
.CTRL-W_gT
Go to previous tab page, same as gT
.:pta
:ptag
:pta[g][!] [tagname]
Does ":tag[!] [tagname]" and shows the found tag in a
"Preview" window without changing the current buffer or cursor
position. If a "Preview" window already exists, it is re-used
(like a help window is). If a new one is opened,
'previewheight' is used for the height of the window. See
also :tag.
See below for an example. CursorHold-example
Small difference from :tag: When [tagname] is equal to the
already displayed tag, the position in the matching tag list
is not reset. This makes the CursorHold example work after a
:ptnext.CTRL-W_z
CTRL-W CTRL-Z
CTRL-W_CTRL-Z
:pc
:pclose
:pc[lose][!] Close any "Preview" window currently open. When the 'hidden'
option is set, or when the buffer was changed and the [!] is
used, the buffer becomes hidden (unless there is another
window editing it). The command fails if any "Preview" buffer
cannot be closed. See also :close.CTRL-W_}
Use identifier under cursor as a tag and perform a :ptag on
it. Make the new Preview window (if required) N high. If N is
not given, 'previewheight' is used.CTRL-W_g}
Use identifier under cursor as a tag and perform a :ptjump on
it. Make the new Preview window (if required) N high. If N is
not given, 'previewheight' is used.:ped
:pedit
:ped[it][!] [++opt] [+cmd] {file}
Edit {file}
in the preview window. The preview window is
opened like with :ptag. The current window and cursor
position isn't changed. Useful example::pedit +/fputc /usr/include/stdio.h
:ps
:psearch
:[range]ps[earch][!] [count] [/]pattern[/]
Works like :ijump but shows the found match in the preview
window. The preview window is opened like with :ptag. The
current window and cursor position isn't changed. Useful
example::psearch popen
:au! CursorHold *.[ch] ++nested exe "silent! psearch " .. expand("<cword>")
CursorHold-example
:au! CursorHold *.[ch] ++nested exe "silent! ptag " .. expand("<cword>")This will cause a ":ptag" to be executed for the keyword under the cursor, when the cursor hasn't moved for the time set with 'updatetime'. "++nested" makes other autocommands be executed, so that syntax highlighting works in the preview window. The "silent!" avoids an error message when the tag could not be found. Also see CursorHold. To disable this again:
:au! CursorHoldA nice addition is to highlight the found tag, avoid the ":ptag" when there is no word under the cursor, and a few other things:
:au! CursorHold *.[ch] ++nested call PreviewWord() :func PreviewWord() : if &previewwindow " don't do this in the preview window : return : endif : let w = expand("<cword>") " get the word under cursor : if w =~ '\a' " if the word contains a letter : : " Delete any existing highlight before showing another tag : silent! wincmd P " jump to preview window : if &previewwindow " if we really get there... : match none " delete existing highlight : wincmd p " back to old window : endif : : " Try displaying a matching tag for the word under the cursor : try : exe "ptag " .. w : catch : return : endtry : : silent! wincmd P " jump to preview window : if &previewwindow " if we really get there... : if has("folding") : silent! .foldopen " don't want a closed fold : endif : call search("$", "b") " to end of previous line : let w = substitute(w, '\\', '\\\\', "") : call search('\<\V' .. w .. '\>') " position cursor on match : " Add a match highlight to the word at this position : hi previewWord term=bold ctermbg=green guibg=green : exe 'match previewWord "\%' .. line(".") .. 'l\%' .. col(".") .. 'c\k*"' : wincmd p " back to old window : endif : endif :endfun
:buffer-!
If the option 'hidden' ('hid') is set, abandoned buffers are kept for all
commands that start editing another file: ":edit", ":next", ":tag", etc. The
commands that move through the buffer list sometimes make the current buffer
hidden although the 'hidden' option is not set. This happens when a buffer is
modified, but is forced (with '!') to be removed from a window, and
'autowrite' is off or the buffer can't be written.<empty>
Use the value of 'hidden'.
hide Hide this buffer, also when 'hidden' is not set.
unload Don't hide but unload this buffer, also when 'hidden'
is set.
delete Delete the buffer.CTRL-^
", where N is the buffer number.CTRL-^
a an active buffer: it is loaded and visible
h a hidden buffer: It is loaded, but currently not
displayed in a window hidden-buffer
-
a buffer with 'modifiable' off
= a readonly buffer
R a terminal buffer with a running job
F a terminal buffer with a finished job
? a terminal buffer without a job: :terminal NONE
+ a modified buffer
x a buffer with read errors-
buffers with 'modifiable' off
= readonly buffers
a active buffers
u unlisted buffers (overrides the "!")
h hidden buffers
x buffers with a read error
% current buffer
# alternate buffer
R terminal buffers with a running job
F terminal buffers with a finished job
t show time last used and sort buffers
Combining flags means they are "and"ed together, e.g.:
h+ hidden buffers which are modified
a+ active buffers which are modifiedfilter /\.vim/ ls
:bad
:badd
:bad[d] [+lnum] {fname}
Add file name {fname}
to the buffer list, without loading it,
if it wasn't listed yet. If the buffer was previously
deleted, not wiped, it will be made listed again.
If "lnum" is specified, the cursor will be positioned at that
line when the buffer is first entered. Note that other
commands after the + will be ignored.:balt
:balt [+lnum] {fname}
Like :badd
and also set the alternate file for the current
window to {fname}
.:bd
:bdel
:bdelete
E516
:bd[elete][!] [N]
Unload buffer [N] (default: current buffer) and delete it from
the buffer list. If the buffer was changed, this fails,
unless when [!] is specified, in which case changes are lost.
The file remains unaffected. Any windows for this buffer are
closed. If buffer [N] is the current buffer, another buffer
will be displayed instead. This is the most recent entry in
the jump list that points into a loaded buffer.
Actually, the buffer isn't completely deleted, it is removed
from the buffer list unlisted-buffer and option values,
variables and mappings/abbreviations for the buffer are
cleared. Examples::.,$-bdelete "delete buffers from the current one to " last but one :%bdelete " delete all buffers
:bw
:bwipe
:bwipeout
E517
:bw[ipeout][!] {bufname}
:N,Mbw[ipeout][!]
:bw[ipeout][!] N1 N2 ...
Like :bdelete, but really delete the buffer. Everything
related to the buffer is lost. All marks in this buffer
become invalid, option settings are lost, the jumplist and
tagstack data will be purged, etc. Don't use this
unless you know what you are doing. Examples::.+,$bwipeout " wipe out all buffers after the current " one :%bwipeout " wipe out all buffers
:bun
:bunload
E515
:bun[load][!] [N]
Unload buffer [N] (default: current buffer). The memory
allocated for this buffer will be freed. The buffer remains
in the buffer list.
If the buffer was changed, this fails, unless when [!] is
specified, in which case the changes are lost.
Any windows for this buffer are closed. If buffer [N] is the
current buffer, another buffer will be displayed instead.
This is the most recent entry in the jump list that points
into a loaded buffer.{bufname}
Like ":bunload[!] [N]", but buffer given by name.
Also see {bufname}.:b
:bu
:buf
:buffer
E86
Edit buffer [N] from the buffer list. If [N] is not given,
the current buffer remains being edited. See :buffer-! for
[!]. This will also edit a buffer that is not in the buffer
list, without setting the 'buflisted' flag.
Also see +cmd.{bufname}
{bufname}
Edit buffer for {bufname}
from the buffer list. A partial
name also works, so long as it is unique in the list of
buffers.
Note that a buffer whose name is a number cannot be referenced
by that name; use the buffer number instead.
Insert a backslash before a space in a buffer name.
See :buffer-! for [!].
This will also edit a buffer that is not in the buffer list,
without setting the 'buflisted' flag.
Also see +cmd.:sb
:sbuffer
Split window and edit buffer [N] from the buffer list. If [N]
is not given, the current buffer is edited. Respects the
"useopen" setting of 'switchbuf' when splitting. This will
also edit a buffer that is not in the buffer list, without
setting the 'buflisted' flag.
Also see +cmd.{bufname}
Split window and edit buffer for {bufname} from the buffer
list. This will also edit a buffer that is not in the buffer
list, without setting the 'buflisted' flag.
Note: If what you want to do is split the buffer, make a copy
under another name, you can do it this way::w foobar | sp #
:bn
:bnext
E87
Go to [N]th next buffer in buffer list. [N] defaults to one.
Wraps around the end of the buffer list.
See :buffer-! for [!].
Also see +cmd.
If you are in a help buffer, this takes you to the next help
buffer (if there is one). Similarly, if you are in a normal
(non-help) buffer, this takes you to the next normal buffer.
This is so that if you have invoked help, it doesn't get in
the way when you're browsing code/text buffers. The next three
commands also work like this.:sbn
:sbnext
:[N]sbn[ext] [+cmd] [N]
Split window and go to [N]th next buffer in buffer list.
Wraps around the end of the buffer list. Uses 'switchbuf'
Also see +cmd.:bN
:bNext
:bp
:bprevious
E88
:[N]bp[revious][!] [+cmd] [N]
Go to [N]th previous buffer in buffer list. [N] defaults to
one. Wraps around the start of the buffer list.
See :buffer-! for [!] and 'switchbuf'.
Also see +cmd.:sbN
:sbNext
:sbp
:sbprevious
:[N]sbp[revious] [+cmd] [N]
Split window and go to [N]th previous buffer in buffer list.
Wraps around the start of the buffer list.
Uses 'switchbuf'.
Also see +cmd.:br
:bre
:brewind
Go to first buffer in buffer list. If the buffer list is
empty, go to the first unlisted buffer.
See :buffer-! for [!].:sbr
:sbrewind
Split window and go to first buffer in buffer list. If the
buffer list is empty, go to the first unlisted buffer.
Respects the 'switchbuf' option.
Also see +cmd.:bl
:blast
Go to last buffer in buffer list. If the buffer list is
empty, go to the last unlisted buffer.
See :buffer-! for [!].:sbl
:sblast
Split window and go to last buffer in buffer list. If the
buffer list is empty, go to the last unlisted buffer.
Respects 'switchbuf' option.:bm
:bmodified
E84
Go to [N]th next modified buffer. Note: this command also
finds unlisted buffers. If there is no modified buffer the
command fails.:sbm
:sbmodified
Split window and go to [N]th next modified buffer.
Respects 'switchbuf' option.
Note: this command also finds buffers not in the buffer list.:unh
:unhide
:sun
:sunhide
:[N]sun[hide] [N]
Rearrange the screen to open one window for each loaded buffer
in the buffer list. When a count is given, this is the
maximum number of windows to open.:ba
:ball
:sba
:sball
:[N]sba[ll] [N] Rearrange the screen to open one window for each buffer in
the buffer list. When a count is given, this is the maximum
number of windows to open. 'winheight' also limits the number
of windows opened ('winwidth' if :vertical was prepended).
Buf/Win Enter/Leave autocommands are not executed for the new
windows here, that's only done when they are really entered.
When the :tab modifier is used new windows are opened in a
new tab, up to 'tabpagemax'.:setlocal buftype=nowrite :setlocal bufhidden=delete :setlocal noswapfile
scratch-buffer
scratch Contains text that can be discarded at any time. It is kept
when closing the window, it must be deleted explicitly.
Settings::setlocal buftype=nofile :setlocal bufhidden=hide :setlocal noswapfile
unlisted-buffer
unlisted The buffer is not in the buffer list. It is not used for
normal editing, but to show a help file, remember a file name
or marks. The ":bdelete" command will also set this option,
thus it doesn't completely delete the buffer. Settings::setlocal nobuflisted