[vim/Linux] 6. vim-multiple-cursor와 vim-smooth-scroll
2017 / 07 / 14
Sublime Text의 가장 큰 특징은 같은 문자열을 한 번에 골라서 수정할 수 있다는 것입니다. www.sublimetext.com에 의 메인 화면에서부터 그 기능을 서설명하고 있습니다.
vim-multiple-cursor를 설치하면 vim에서도 같은 기능을 사용할 수 있습니다.
.vimrc
에 Plugin 'terryma/vim-multiple-cursors'
을 추가하고 :PluginInstall
을 합시다.
.vimrc
에 다음과 같이 설정을 추가하면 됩니다.
" vim-multiple-cursor
let g:multi_cursor_use_default_mapping=0
" Default mapping
let g:multi_cursor_next_key='<C-n>'
let g:multi_cursor_prev_key='<C-p>'
let g:multi_cursor_skip_key='<C-x>'
let g:multi_cursor_quit_key='<Esc>'
Ctrl + n을 누르면 단어를 선택합니다. 계속해서 Ctrl + n을 누르면 같은 단어들을 선택할 수 있습니다. Ctrl + p를 누르면 이전 단어로 돌아갈 수 있고, Ctrl + x를 누르면 현재 단어를 스킵하고 다음 단어로 넘어갑니다.
여러 단어를 선택한 상태에서 x를 누르면 단어가 한 번에 지워집니다. 이 상태에서 i를 누르면 한 번에 여러곳에서 단어를 입력할 수 있습니다.
Ctrl + D, Ctrl +U를 누르면 스크롤이 반페이지정도 내려가거나 올라갑니다. Ctrl + F, Ctrl + B를 누르면 스크롤이 한 페이지정도 내려가거나 올라갑니다. 그러나 움직이는 애니메이션이 없어서 위로 올라가는지 내려가는지 알기 힘들 때도 있습니다. 이 플러그인은 페이지 이동에 애니메이션을 추가합니다.
.vimrc
에 Plugin 'terryma/vim-smooth-scroll'
을 추가하고 :PluginInstall
을 합니다.
.vimrc
에 다음과 같이 설정을 추가합니다.
" vim-smooth-scroll
noremap <silent> <c-b> :call smooth_scroll#up(&scroll*2, 10, 5)<CR>
noremap <silent> <c-f> :call smooth_scroll#down(&scroll*2, 10, 5)<CR>
noremap <silent> <c-u> :call smooth_scroll#up(&scroll, 10, 3)<CR>
noremap <silent> <c-d> :call smooth_scroll#down(&scroll, 10, 3)<CR>
지금까지 설정한 .vimrc는 다음과 같습니다.
" Basic Settings
colorscheme CodeSchool3
set termguicolors
syntax on
set number
set relativenumber
set hlsearch
set ignorecase
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
autocmd FileType make setlocal noexpandtab
" Key Settings
nnoremap <F2> :set invpaste paste?<CR>
set pastetoggle=<F2>
let mapleader = ","
nnoremap <leader>q :bp<CR>
nnoremap <leader>w :bn<CR>
" Key Setting - resize windows
nnoremap <silent> <Leader>= :exe "resize +3"<CR>
nnoremap <silent> <Leader>- :exe "resize -3"<CR>
nnoremap <silent> <Leader>] :exe "vertical resize +8"<CR>
nnoremap <silent> <Leader>[ :exe "vertical resize -8"<CR>
nnoremap <silent> <Leader>+ :exe "resize " . (winheight(0) * 3/2)<CR>
nnoremap <silent> <Leader>_ :exe "resize " . (winheight(0) * 2/3)<CR>
nnoremap <silent> <Leader>} :exe "vertical resize " . (winheight(0) * 3/2)<CR>
nnoremap <silent> <Leader>{ :exe "vertical resize " . (winheight(0) * 2/3)<CR>
" Vundle
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'
" Keep Plugin commands between vundle#begin/end.
" vim-airline
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'The-NERD-Tree'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'terryma/vim-smooth-scroll'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
" for vim-airline
let g:airline#extensions#tabline#enabled = 1 " turn on buffer list
let g:airline_theme='hybrid'
set laststatus=2 " turn on bottom bar
" The-NERD-Tree
autocmd BufEnter * lcd %:p:h
autocmd VimEnter * if !argc() | NERDTree | endif
nmap <leader>ne :NERDTreeToggle<cr>
let NERDTreeShowLineNumbers=1
let g:NERDTreeWinPos = "right"
" vim-multiple-cursor
let g:multi_cursor_use_default_mapping=0
" Default mapping
let g:multi_cursor_next_key='<C-n>'
let g:multi_cursor_prev_key='<C-p>'
let g:multi_cursor_skip_key='<C-x>'
let g:multi_cursor_quit_key='<Esc>'
" vim-smooth-scroll
noremap <silent> <c-b> :call smooth_scroll#up(&scroll*2, 10, 5)<CR>
noremap <silent> <c-f> :call smooth_scroll#down(&scroll*2, 10, 5)<CR>
noremap <silent> <c-u> :call smooth_scroll#up(&scroll, 10, 3)<CR>
noremap <silent> <c-d> :call smooth_scroll#down(&scroll, 10, 3)<CR>
vim-multiple-cursor: github.com/terryma/vim-multiple-cursors
vim-smooth-scroll: github.com/terryma/vim-smooth-scroll