How do I view the contents of all registers in Vim?
:registers
The :registers command displays the contents of all Vim registers, showing you exactly what text is stored in each one.
2277 results for "@a"
:registers
The :registers command displays the contents of all Vim registers, showing you exactly what text is stored in each one.
:Telescope live_grep
Telescope's livegrep picker provides real-time regex search across your entire project as you type.
vim.fs.root()
vim.
:[range]center [width]
Vim's built-in :left, :center, and :right Ex commands align text without plugins or external tools.
:checkhealth
Neovim ships with a built-in health framework that runs diagnostic checks for core components and installed plugins.
.
The .
<C-w>+ and <C-w>-
The + and - commands increase or decrease the height of the current split window by one line.
:%bd | e#
How it works Vim does not have a built-in single command to close all buffers except the current one, but you can achieve this with a two-part command: :%bd e#.
R (in netrw)
Vim's built-in file explorer netrw lets you rename files and directories without leaving the editor.
:DB
The vim-dadbod plugin by Tim Pope turns Vim into a powerful database client.
:split
The :split command (or s) splits the current window horizontally, creating a new window above with the same file.
:set list listchars=tab:>-,trail:~,eol:$
Enabling list mode makes Vim render normally invisible characters using configurable symbols defined in listchars.
:TestNearest
The vim-test plugin by Janko Marohnić provides a universal interface for running tests from within Vim.
( / ) / { / }
Vim treats sentences and paragraphs as first-class navigation units.
navigation #navigation #motions #text-objects #prose #editing
:call DeleteHiddenBuffers()
Define a function or use a plugin.
:center, :right, :left
Vim includes three built-in Ex commands for text alignment that most users never discover: :center, :right, and :left.
% (in netrw)
Vim's built-in file explorer netrw (opened with :Explore or :Ex) is more capable than it looks.
:cfdo %s/old/new/g | update
The :cfdo %s/old/new/g update command performs a search and replace across every file in the quickfix list and saves each one.
:Make / :Dispatch
The vim-dispatch plugin by Tim Pope provides asynchronous build and command execution so you can run compilers, test suites, and other long-running commands wit
:lua require('ufo').openAllFolds()
nvim-ufo is a Neovim plugin that replaces the built-in fold system with one powered by LSP (textDocument/foldingRange) or treesitter.