Tag Archives: vim
Vim: Save and Run Shortcut
Make Vim more IDE-like by assigning F5 to save and run your current script. Just add this to your ~/.vimrc map <F5> <Esc>:w<CR>:!%:p<CR> This maps the F5 key to run two things: :w, which saves your file, and :!%:p, which will run your current script (! runs a shell command and %:p expands to the path of your current file). … Continue reading
Vim: Case Insensitive Searches
Use “<strong>\c</strong>” anywhere in a search to ignore case (overriding your ignorecase or smartcase settings). e.g. “<strong>/\cfoo</strong>” or “<strong>/foo\c</strong>” will match foo, Foo, fOO, FOO, etc. Use “<strong>\C</strong>” anywhere in a search to force case matching. e.g. “<strong>/\Cfoo</strong>” or “<strong>/foo\C</strong>” will only match foo. You can set vim to ignore case on all your searches by running “<strong>:set ignorecase</strong>”. If … Continue reading