Skip to content

Instantly share code, notes, and snippets.

@rcoproc
Last active May 14, 2020 07:21
Show Gist options
  • Save rcoproc/c591b5578f4a8fb1a7bf38f2b7222c9d to your computer and use it in GitHub Desktop.
Save rcoproc/c591b5578f4a8fb1a7bf38f2b7222c9d to your computer and use it in GitHub Desktop.

My VIM superfast Commands

Search and Replace

  1. 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
  1. Search and replace a range:
:8,10 s/search/replace/g

Tags

  1. Ctags(install ctags first):

    :!ctags -R .
    
    or in terminal
    
    #> ctags -R .
    
  2. Navigate in tags: CTRL+] or CTRL+O

  3. View others tags: gCTRL+]

Contents

  1. :Ag my_module # Search all files within content

  2. Normal Mode: gagiw # to search the word

  3. Delete inner "quotes, word, paragraph"

diw , di' ,dip , di""
  1. Save as: w filename or w! filename

Fold

zC                  # Close All
zR                  # Open All
<space>             # Close/Open Current Fold

File Explorer

1.:find company.rb

2.:b commpany # oppen in buffers

Window

  1. Move/Swap Position: CTRL+W CTRL+R

  2. Move Position: CTRL+W left/right keys or plugin Choosewin with '-' key

Buffers

  1. List all : :BufExplorer or :MRU

  2. Close all, except current:

:BufOnly               # mapeamento de: command! BufOnly execute '%bdelete|edit #|normal `"'

Plugins

  1. NERDTREE: 'ne (open file explorer) - CTRL+X or q(close file explorer)

  2. VIM-MOTION: ''s(search character), ''b(search back)

  3. Gbrowse:

    :Gbrowse     # open current file in remote repository`
    :GBrowse     # open git tree
    
  4. 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
    
  5. 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
    
    
  6. Refactor(refactor-rails.vim)

    'EM           # Extract Method
    'IF           # Indent File
    'mF           # Move Current File
    'rC           # Rename Controller
    
  7. JANKO/vim-test

     t<C-n>      :TestNearest
     t<C-f>      :TestFile
     t<C-s>      :TestSuit
     t<C-g>      :TestVisit
    
  8. NERDCommenter:

    'cc           # Coment current line
    'cu           # Uncomment the selected line(s)
    'c<space>     # Toggle comment
    
  9. 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
    
  10. COC.nvim:

    * These examples are custom key mappings.
    
    <space>a      # List Coc Diagnostics
    <space>c      # List Coc Commands
    <space>p      # Laste coc List.
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment