How do I use Telescope for fuzzy finding in Neovim?
:Telescope find_files
Telescope is a highly extensible fuzzy finder for Neovim.
170 results for ":help"
:Telescope find_files
Telescope is a highly extensible fuzzy finder for Neovim.
grn, gra, grr, gri
Starting with Neovim 0.
\%(pattern\)\@=
Vim's lookahead assertion \@= confirms that the current position is followed by a pattern — without including those characters in the match.
:silent! %normal @q
Combining :silent!, the % range, and :normal @q gives you a powerful pattern for applying a macro across an entire file while gracefully skipping lines that don
:set wildmenu
The wildmenu option enhances Vim's command-line completion by showing a horizontal menu of matches above the command line when you press .
config #config #command-line #completion #productivity #vimrc
:cabbrev tn tabnew
Command-line abbreviations with cabbrev let you create short aliases for frequently used Ex commands.
command-line #command-line #abbreviation #shortcuts #productivity
:setlocal winfixwidth
When you use a sidebar-style split for file trees, docs, or logs, automatic window equalization can constantly resize it.
/\(pattern\)\@<=target or /target\(pattern\)\@=
Vim supports zero-width assertions (lookahead and lookbehind) in its regex engine.
"#p or <C-r># in insert mode
The # register always contains the name of the alternate file — typically the file you were editing just before the current one.
[/ and ]/
Vim provides two motions for navigating C-style block comments (/ .
:s/pattern/~/
In a Vim substitution, using ~ as the replacement string repeats the replacement text from the most recent :s command.
:digraphs
:digraphs (abbreviated :dig) displays a full reference table of every digraph registered in Vim.
command-line #editing #special-characters #insert-mode #command-line
:set iskeyword+={char}
iskeyword defines which characters are considered word characters in Vim.
grn
Neovim 0.
:%s/pattern/\=@0/g
The \=@0 replacement expression inserts the contents of register 0 (last yank) as the replacement text.
:set statusline=%f\ %m%r%h%w\ %=%l/%L\ %p%%
Vim's statusline option accepts printf-style format codes that display file info, position, mode, and any custom expression.
:tab sb N
How it works The :tab sb N command opens buffer number N in a brand new tab page.
:find filename
The :find command searches for a file by name across all directories in your path setting and opens it.
buffers-windows #buffers #file-management #navigation #workflow
dV{motion}
In operator-pending mode — the brief state after typing an operator like d, c, or y but before entering the motion — you can prefix the motion with v, V, or
{count}H and {count}L
Most Vim users know H jumps to the first visible line, M to the middle, and L to the last.