vim 메모 사용
vim 기본 조작
i/I,a/A,o/O:
h,j,k,l:
ctrl+f:
ctrl+b:
v,V,ctrl+v: n<>->n tab
/[?]pattern:
:%s/from/to/gc :
r/R:
d^:
D/d$:
rx:
ynl/ynw: n /
y$/Y:
ndd: n
p:
x:
u:
ctrl+r:
vim 프로필:
" This is my _vimrc under windows platform
" and it can be used on *nix too
" all the difference of them is the font setting session
" happy Viming, guys!
" copyLeft (#) Abruzzi John
" autoload _vimrc
autocmd! bufwritepost _vimrc source %
" vim
set linebreak " line break
set nocompatible " no compatible
set history=400 " history
set ruler
set number " line number
set hlsearch " highlight search
set noincsearch " no in C search
set expandtab " expand table
set t_vb= "close bell
set foldmethod=marker
set tabstop=4 " table step
set shiftwidth=4
set nobackup " don't backup
set smarttab " smart table
set smartindent " smart indent
set autoindent " auto indent
set cindent "cindent
set cursorline " hightlight cursor line
"set guioptions-=m "
set guioptions-=r "
set guioptions-=L "
set guioptions-=T "
colorscheme desert " color scheme
filetype plugin indent on " filetype setting
set completeopt=longest,menu " for code complete
" the following function is used for show the status bar on the buttom
function! CurrectDir()
let curdir = substitute(getcwd(), "", "", "g")
return curdir
endfunction
set statusline=\ [File]\ %F%m%r%h\ %w\ \ [PWD]\ %r%{CurrectDir()}%h\ \ %=[Line]\ %l,%c\ %=\ %P
"
if has("win32")
set guifont=Courier_New:h10:cANSI
endif
"
if exists("syntax_on")
syntax reset
else
syntax on
endif
" plugin config begin
" NERDTree key-map
map :NERDTreeToggle
" plugin cofig end
" vim tab binding
map nt :tabnew % "open a new tab in normal mode
map tc :tabclose " close tab
map tn :tabnext " next tab
map tp :tabprev " preveiw tab
" hjkl
imap
imap
imap
imap
" that's all, folks!
상용 플러그 인:
1.NERDTree
2.tagList
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Lua에서 neovim 플러그인용 UI를 만드는 방법마지막 에서는 부동 창을 사용하여 Lua에서 플러그인을 만드는 기본 사항을 살펴보았습니다. 편리한 측면 탐색에서 마지막으로 연 파일을 표시하는 간단한 플러그인을 만들어 봅시다. 인터페이스 학습에 집중하면서 이러한 목...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.