VI 에서 <div ... > 닫히는 </div> 등 찾기
본문
VI 에서 <div ... > 닫히는 </div> 등 찾기
html 이 요즘 복잡해져 </div> 닫히는 문장을 찾기 어려울때가 맞다.
vi 를 사용하시는 분들에게 이런 어려움을 해소하기 위해 패키지 관리 도구를 사용하여 플러그인을 설치할 수도 있습니다.
여기서는 Vundle을 사용하는 예를 들겠습니다.
설치 내용
<div
..> 에
닫히는 </div>
등을
찾기위해
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vi ~/.vimrc
set nocompatible " be iMproved, required
filetype off " required
" Set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
" call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Add all your plugins here (note older versions of Vundle
" used Bundle instead of Plugin)
Plugin 'vim-scripts/matchit.zip'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
플러그인 설치
vim을 열고 :PluginInstall 명령어를 실행하여 플러그인을 설치합니다
vim +PluginInstall +qall
사용 방법
vim
을 열고 HTML 파일에서
<div>
태그에 커서를 놓고
%
키를 누르면 일치하는
</div>
태그로 이동할 수 있습니다. 이는 다른 쌍의 태그들 (
<p>
,
<span>
,
<a>
등)에도 동일하게 적용됩니다.
위 방법들을 통해
matchit
플러그인을 설치하고 사용할 수 있습니다.
댓글목록0
댓글 포인트 안내