vim.md

July 15, 2021 · View on GitHub

Bookmarks tagged [vim]

www.codever.land/bookmarks/t/vim

How do I make Git use the editor of my choice for commits?

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...


Devhints — TL;DR for developer documentation

https://devhints.io/

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


rust.vim

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

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


vim-cargo

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

command bindings to quickly run cargo stuff from vim.


vim-racer

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

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


autozimu/LanguageClient-neovim

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

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


jedi-vim

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

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


python-mode

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

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


YouCompleteMe

https://github.com/Valloric/YouCompleteMe

Includes Jedi-based completion engine for Python.


awesome-vim-galore

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

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


Vim dotfiles and configurations example

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

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


welcome home : vim online

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...


Vim tips: The basics of search and replace | Linux.com | The source for Linux information

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

Great explanation with good examples. One of them

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

Vim para Noobs

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

William Oliveira Souza


Vim Médio

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

Aurelio Marinho Jargas


Vim Básico

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

Aurelio Marinho Jargas


Vim Avançado

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

Aurelio Marinho Jargas


O Editor de Texto Vim

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

Sérgio Luiz Araújo Silva et al.


Editor VI - Guia de Referência

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

Aurelio Marinho Jargas


Просто о Vim

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

(PDF)


Поваренная Книга Vim

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

Steve Oualline


Vim スクリプト書法

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

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


Vim スクリプト基礎文法最速マスター

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

id:thinca


Vim スクリプトリファレンス

http://nanasi.jp/code.html

小見拓


Vim pour les humains

https://vimebook.com/fr

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


Learn Vim Progressively

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


Vim Regular Expressions 101

http://vimregex.com


Vim Recipes

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

(PDF)


Vi Improved -- Vim

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

Steve Oualline (PDF)


Use Vim Like A Pro

https://leanpub.com/VimLikeAPro

Tim Ottinger


Learn Vimscript the Hard Way

http://learnvimscriptthehardway.stevelosh.com


Learn Vim Progressively

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


A Byte of Vim

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


大家來學 VIM

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


Vim Manual(中文版)

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


Search and replace | Vim Tips Wiki | Fandom powered by Wikia

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' ...


Cut/copy and paste using visual selection | Vim Tips Wiki | Fandom powered by Wikia

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,...

Display line number in 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