Skip to content

junegunn/vim-fnr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

vim-fnr

Find-N-Replace in Vim with live preview (experimental)

Installation

Use your favorite plugin manager. vim-fnr requires vim-pseudocl.

With vim-plug:

Plug 'junegunn/vim-pseudocl'
Plug 'junegunn/vim-fnr'

Usage

  • Normal mode
    • <Leader>r<Movement> - Substitution in the range
    • <Leader>R - Substitution of the word under the cursor in the entire document
  • Visual mode
    • <Leader>r - Substitution in the selected range
    • <Leader>R - Substitution of the selected string in the entire document
  • Command line
    • :<Range>FNR

The command is repeatable with . key if you have installed repeat.vim.

Special keys

  • Tab
    • i - case-insensitive match
    • w - word-boundary match (\<STRING\>)
    • g - substitute all occurrences
    • c - confirm each substitution
    • Tab or Enter to return
  • CTRL-N or CTRL-P
    • Auto-completion

Options

" Defaults
let g:fnr_flags   = 'gc'
let g:fnr_hl_from = 'Todo'
let g:fnr_hl_to   = 'IncSearch'

Custom mappings

nmap <Leader>r <Plug>(FNR)
xmap <Leader>r <Plug>(FNR)
nmap <Leader>R <Plug>(FNR%)
xmap <Leader>R <Plug>(FNR%)

License

MIT

About

🎭 Find-N-Replace helper free of regular expressions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published