vi, vim macro regist and run and more ... vim macro 꼭 필요하지 않지만... 알면 대박인 팁 ~ - regist : a key에 4칸 밀기 (스페이스 삽입) 등록하기, 입력순서 : 'q' 'a' 'i' [space]*4 [esc] 'q' 'a' ~'z'까지 입력 가능함. qai [esc]q - run onece@a - run macro to multi-lines : 현재라인부터 3라인아래라인까지 'a' 매크로 실행.:.,.+3norm! @a 편하게 살자 2015.05.08
vi vim advanced options vi vim 사용중 가장 기억하지 못하는 것들이 set 옵션들이다.그래서 갈무리 해 둡니다...원본 : http://www.yolinux.com/TUTORIALS/LinuxTutorialAdvanced_vi.htmlVi/Vim modes:Vi/Vim modes are set using the "set" command and its many options.:set all - display all mode settings of your editing session. :set termcap - display terminal settings of your editing session.:set ic - Change default to ignore case for text searches Default is cha.. 프로그램 2014.06.09
VIM MASTER Ubuntu vim 설치 및 설정 원본 : http://hninja.tistory.com/ 우분투에 vim설치 하고 syntax 하이라이트를 설정 아래와 같이 합니다. 1. sudo apt-get install vim 2. 자신의 홈 디렉토리에 .vimrc 파일을 생성 set autoindent set cindent set smartindent set nocompatible set visualbell set backspace=indent,eol,start set history=50 set ruler set showcmd set incsearch set tabstop=4 set shiftwidth=4 set number if has("syntax") syntax on endif colo evening unix 2011.02.28