Skip to content

Latest commit

 

History

History
255 lines (209 loc) · 13 KB

vim.md

File metadata and controls

255 lines (209 loc) · 13 KB

Bookmarks tagged [vim]

https://stackoverflow.com/questions/2596805/how-do-i-make-git-use-the-editor-of-my-choice-for-commit...

If you want to set the editor only for Git, do either (you don’t need both):

Set core.editor in your Git config: git config --global core.editor "vim" Set the GIT_EDITOR environment variable: `ex...


https://devhints.io/

A ridiculous collection of web development cheatsheets · One-page guide to


https://github.com/rust-lang/rust.vim

provides file detection, syntax highlighting, formatting, Syntastic integration, and more.


https://github.com/timonv/vim-cargo

command bindings to quickly run cargo stuff from vim.


https://github.com/racer-rust/vim-racer

allows vim to use Racer for Rust code completion and navigation.


https://github.com/autozimu/LanguageClient-neovim

LSP client. Implemented in Rust and supports rls out of the box.


https://github.com/davidhalter/jedi-vim

Vim bindings for the Jedi auto-completion library for Python.


https://github.com/python-mode/python-mode

An all in one plugin for turning Vim into a Python IDE.


https://github.com/Valloric/YouCompleteMe

Includes Jedi-based completion engine for Python.


https://github.com/mhinz/vim-galore#readme

🎓 All things Vim! Contribute to mhinz/vim-galore development by creating an account on GitHub.


https://github.com/jessfraz/.vim

My .vim dotfiles and configurations. Contribute to jessfraz/.vim


https://www.vim.org/

Vim - the ubiquitous text editor Vim is a highly configurable text editor for efficiently creating and changing any kind of text. It is included as "vi" with most UNIX systems and with Apple OS X.

V...


https://www.linux.com/learn/vim-tips-basics-search-and-replace

Great explanation with good examples. One of them

  • 📆 published on: 2006-06-28
  • tags: vim

http://woliveiras.com.br/vimparanoobs/

William Oliveira Souza


http://aurelio.net/vim/vim-medio.txt

Aurelio Marinho Jargas


http://aurelio.net/vim/vim-basico.txt

Aurelio Marinho Jargas


http://aurelio.net/vim/vim-avancado.txt

Aurelio Marinho Jargas


https://code.google.com/p/vimbook

Sérgio Luiz Araújo Silva et al.


http://aurelio.net/curso/material/vim-ref.html

Aurelio Marinho Jargas


http://rus-linux.net/MyLDP/BOOKS/Vim/prosto-o-vim.pdf

(PDF)


http://www.opennet.ru/docs/RUS/vim_cookbook/

Steve Oualline


http://vim-jp.org/vimdoc-ja/usr_41.html

Bram Moolenaar, vimdoc-ja プロジェクト(翻訳)


http://d.hatena.ne.jp/thinca/20100201/1265009821

id:thinca


http://nanasi.jp/code.html

小見拓


https://vimebook.com/fr

Vincent Jousse (le livre n'est pas gratuit mais à prix libre)


http://yannesposito.com/Scratch/fr/blog/Learn-Vim-Progressively/


http://vimregex.com


https://web.archive.org/web/20130302172911/http://vim.runpaint.org/vim-recipes.pdf

(PDF)


http://www.truth.sk/vim/vimbook-OPL.pdf

Steve Oualline (PDF)


https://leanpub.com/VimLikeAPro

Tim Ottinger


http://learnvimscriptthehardway.stevelosh.com


http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/


http://www.swaroopch.com/notes/vim/


http://www.study-area.org/tips/vim/index.html


http://man.chinaunix.net/newsoft/vi/doc/help.html


http://vim.wikia.com/wiki/Search_and_replace

The :substitute command searches for a text pattern, and replaces it with a text string. There are many options, but these are what you probably want:

:%s/foo/bar/g Find each occurrence of 'foo' ...


http://vim.wikia.com/wiki/Cut/copy_and_paste_using_visual_selection

To cut-and-paste or copy-and-paste:

  1. Position the cursor at the beginning of the text you want to cut/copy.
  2. Press v to begin character-based visual selection, or V to select whole lines,...

http://vim.wikia.com/wiki/Display_line_numbers

How to display line number in vim :set number or :set nu

Hide numbers :set nonumber or :set nonu