- Search and replace an entire file:
:%s/search/replace/g
:%s/search/replace/gc # with confirm options
:%s/Kang\|Kodos/alien/gc # search many terms(Kang or Kodos)
:'<,'>s/foo/bar/g # search within visual selection
- Search and replace a range:
:8,10 s/search/replace/g
-
Ctags(install ctags first):
:!ctags -R . or in terminal #> ctags -R .
-
Navigate in tags: CTRL+] or CTRL+O
-
View others tags: gCTRL+]
-
:Ag my_module
# Search all files within content -
Normal Mode:
gagiw # to search the word
-
Delete inner "quotes, word, paragraph"
diw , di' ,dip , di""
- Save as:
w filename or w! filename
zC # Close All
zR # Open All
<space> # Close/Open Current Fold
1.:find company.rb
2.:b commpany # oppen in buffers
-
Move/Swap Position:
CTRL+W CTRL+R
-
Move Position:
CTRL+W left/right keys
or plugin Choosewin with '-' key
-
List all :
:BufExplorer
or:MRU
-
Close all, except current:
:BufOnly # mapeamento de: command! BufOnly execute '%bdelete|edit #|normal `"'
-
NERDTREE: 'ne (open file explorer) - CTRL+X or q(close file explorer)
-
VIM-MOTION: ''s(search character), ''b(search back)
-
Gbrowse:
:Gbrowse # open current file in remote repository` :GBrowse # open git tree
-
Gist:
:Gist # Post current buffer to gist(use -p private Gist) :Gist -e # update remote vim :Gist -l # list your public gist :Gist -p # create a Private Gist :Gist -b # open browser remote gist
-
VIM-RAILS:
:Extract scope_file # Select the code first gf # Go to file , more help rails-navigation :Eenvironment # Open the list of folders/files :Emodel :Econtroller :Elayout :Eschema :Espec :Elib :Elocale :Estylesheet :Einitializer :Etask :Emailer :Ehelper :Ctags
-
Refactor(refactor-rails.vim)
'EM # Extract Method 'IF # Indent File 'mF # Move Current File 'rC # Rename Controller
-
JANKO/vim-test
t<C-n> :TestNearest t<C-f> :TestFile t<C-s> :TestSuit t<C-g> :TestVisit
-
NERDCommenter:
'cc # Coment current line 'cu # Uncomment the selected line(s) 'c<space> # Toggle comment
-
Translator:
* These examples are custom key mappings. tw # Translate in window. same with :TranslateW tt # Translate in status line. Same with :Translate tx # Translate from memory. Same with :TranslateX :TranslateW target_lang=es # Translate to Spanish :TranslateW! # Invert Source Lang to TargetLang
-
COC.nvim:
* These examples are custom key mappings. <space>a # List Coc Diagnostics <space>c # List Coc Commands <space>p # Laste coc List.