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...
- 📆 published on: 2010-04-08
- tags: git, vim, emacs, editor, commit-message
A ridiculous collection of web development cheatsheets · One-page guide to
- tags: cheatsheet, bash, react, sass, vim
- source code
https://github.com/rust-lang/rust.vim
provides file detection, syntax highlighting, formatting, Syntastic integration, and more.
- tags: rust, ide, vim
- source code
https://github.com/timonv/vim-cargo
command bindings to quickly run cargo stuff from vim.
- tags: rust, ide, vim
- source code
https://github.com/racer-rust/vim-racer
allows vim to use Racer for Rust code completion and navigation.
- tags: rust, ide, vim
- source code
https://github.com/autozimu/LanguageClient-neovim
LSP client. Implemented in Rust and supports rls out of the box.
- tags: rust, ide, vim
- source code
https://github.com/davidhalter/jedi-vim
Vim bindings for the Jedi auto-completion library for Python.
- tags: python, editor-plugins, ide, vim
- source code
https://github.com/python-mode/python-mode
An all in one plugin for turning Vim into a Python IDE.
- tags: python, editor-plugins, ide, vim
- source code
https://github.com/Valloric/YouCompleteMe
Includes Jedi-based completion engine for Python.
- tags: python, editor-plugins, ide, vim
- source code
https://github.com/mhinz/vim-galore#readme
🎓 All things Vim! Contribute to mhinz/vim-galore development by creating an account on GitHub.
- tags: awesome-list, editor, vim
- source code
https://github.com/jessfraz/.vim
My .vim dotfiles and configurations. Contribute to jessfraz/.vim
- tags: vim, dotfiles
- source code
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
小見拓
Vincent Jousse (le livre n'est pas gratuit mais à prix libre)
http://yannesposito.com/Scratch/fr/blog/Learn-Vim-Progressively/
- tags: free-programming-books, vim
https://web.archive.org/web/20130302172911/http://vim.runpaint.org/vim-recipes.pdf
(PDF)
- tags: free-programming-books, vim
http://www.truth.sk/vim/vimbook-OPL.pdf
Steve Oualline (PDF)
- tags: free-programming-books, vim
https://leanpub.com/VimLikeAPro
Tim Ottinger
- tags: free-programming-books, vim
http://learnvimscriptthehardway.stevelosh.com
- tags: free-programming-books, vim
http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/
- tags: free-programming-books, vim
http://www.swaroopch.com/notes/vim/
- tags: free-programming-books, 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' ...
- tags: vim
http://vim.wikia.com/wiki/Cut/copy_and_paste_using_visual_selection
To cut-and-paste or copy-and-paste:
- Position the cursor at the beginning of the text you want to cut/copy.
- Press v to begin character-based visual selection, or V to select whole lines,...
- tags: vim
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
- tags: vim