ide/vim
-
Practical Vim 2판 정리 페이지 Indexide/vim 2019. 1. 16. 08:30
Practical Vim 2판 정리 페이지 https://github.com/rxedu/practical-vim Vim을 시작하는 법 - 원문 : Getting started with Vim Vim 텍스트 개체: 궁극의 가이드 - 원문 : Vim Text Objects: The Definitive GuideVim에 대해 점진적으로 학습하기 - 원문 : YBlog - Learn Vim Progressively Vim의 탭은 그렇게 쓰는 게 아니다. 버퍼와 탭의 사용법 - 원문 : Vim Tab Madness. Buffers vs Tabs Practical Vim 2판 정리 페이지 정말 잘 정리해 놓은 페이지다. Use Vim’s Factory Settings 1. The Vim Way Tip 1. Dot ..
-
7 Habits For Effective Text Editing 2.0ide/vim 2017. 4. 21. 08:30
7 Habits For Effective Text Editing 2.0 http://www.moolenaar.net/ 7 Habits For Effective Text Editing 2.0 효과적인 텍스트 편집을위한 7 가지 습관 2.0 게시일: 2012. 8. 22. Google Tech Talks February 13, 2007 ABSTRACT A large percentage of time behind the computer screen is spent on editing text. Investing a little time in learning more efficient ways to use a text editor pays itself back fairly quickly. This present..
-
vim bookide/vim 2017. 4. 14. 08:30
Learn Vimscript the Hard Way Practical Vim 2판 정리 페이지 완전 초보를 위한 Vim Interactive Vim tutorial: 30분이면 끝낼 수 있다. Vim Tutorial How to Learn Vim - The Best Tutorials for Vim Beginners: 가이드 라인 소개 Getting Started with Vim Vim에 대해 점진적으로 학습하기 VIM Adventures: 게임으로 배우는 Vim Vimdoc : the online source for Vim documentation Why Vim? Vim Cheat Sheet Ten Things You Don’t Know About Vim
-
vi/vimide/vim 2017. 3. 9. 08:30
vi를 진정으로 이해해라 Practical Vim 2판 정리 페이지 완전 초보를 위한 Vim 동사(verb) y Copy : 복사 'yy'(statement) is 'y_' d Cut : 복사한 후 삭제 p Paste : 붙여넣기 m vi 에는 26"마크"와 26 "레지스터"가 있다. (영단어 26) 보통 ‘a’를 첫 번째 마크, ‘z’를 다음 마크, ‘b’는 다른 마크로, ‘e’를 또 다른 마크로 사용한다 ma : a 마킹 'a : a로 이동 `a : a로 이동, backquoet y`a 현재 커서에서 `a까지 Copy d`a 현재 커서에서 `a까지 Cut { } { : 현재커서가 위치한 단락 처음으로 이동 } : 현재커서가 위치한 단락 마지막으로 이동 y?bar 현재 줄에서 “bar” 문자열을 포함하..
-
github.com/crooloose/.vimrcide/vim 2017. 2. 27. 08:30
A more useful statusline in vim? [closed] .vimrc 설정하기 (set) https://github.com/scrooloose/vimfiles/blob/master/vimrc set nocompatible "set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() "let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' Plugin 'jlanzarotta/bufexplorer' Plugin 'godlygeek/csapprox' Plugin 'ctrlpvim/ctrlp.vim' ..
-
neovimide/vim 2017. 2. 13. 08:30
literally the future of vim Installing Neovim OS X El Capitan에서 neovim 설치하기 MAC # Homebrew brew install neovim/neovim/neovim # Macports sudo port selfupdate sudo port install neovim # config cp -r ~/.vimrc ~/.config/nvim/init.nvim #alias nvi="nvim" > ~/.profile Linux # Debian sudo apt-get install neovim # Ubuntu sudo apt-get install software-properties-common sudo apt-get install python-software..