码迷,mamicode.com
首页 > 系统相关 > 详细

ideavim插件配置文件

时间:2021-06-29 16:11:42      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:between   设置   pre   ace   quick   ext   module   off   bin   

ideavim插件配置


set scrolloff=3 " 3 lines above/below cursor when scrolling
" 突出显示当前行
set cursorline
" 在状态栏显示正在输入的命令
set showcmd
" Emulated Plugins
set surround
" Use Idea to join lines smartly
set ideajoin
" Multiple cursors support
set multiple-cursors
" Vim 的默认寄存器和系统剪贴板共享
set clipboard+=unnamed
set history=100000
" select模式下复制
if has("clipboard")
    vnoremap <C-C> "+y
endif

" 修改leader键
let mapleader = ‘ ‘
imap ,. <Esc>
vmap ,. <Esc>


" 设置文内智能搜索提示
" 高亮search命中的文本
set hlsearch
" 打开增量搜索模式,随着键入即时搜索
set incsearch
" 搜索时忽略大小写
set ignorecase
" 有一个或以上大写字母时仍大小写敏感
set smartcase
" 去掉搜索高亮
nnoremap <leader>/ :nohls<CR>
" clear the highlighted search result
nnoremap <Leader>sc :nohlsearch<CR>


" These create newlines like o and O but stay in normal mode
nmap zj o<Esc>k
nmap zk O<Esc>j


" key bindings for quickly movign between windows 
" h left, l right, k up, j down
nmap <leader>h <c-w>h
nmap <leader>l <c-w>l
nmap <leader>k <c-w>k
nmap <leader>j <c-w>j

" Move half page faster
nnoremap <leader>d  <C-d>
nnoremap <leader>u  <C-u>
" Tab operation
nnoremap tn gt
nnoremap tp gT
" Closing tabs
nmap tx :action CloseContent<cr>
nmap tX :action ReopenClosedTab<cr>


" Move to the start of line
nnoremap H ^

" Move to the end of line
nnoremap L $

" Redo
nnoremap U <C-r>

" Yank to the end of line
nnoremap Y y$

nmap <leader>b :action Back<cr>
nmap <leader>f :action Forward<cr>
nmap <leader>c :action GotoClass<cr>
nmap <leader>sp  :action FileStructurePopup<cr>
nmap <leader>ed :action ShowErrorDescription<cr>
nmap == :action ReformatCode<cr>

" Switches between .cc and .h file!
nmap <leader>s :action GotoRelated<cr>

" Won‘t work in visual mode (with vmap) for some reason.
" Use default map of <c-/> for that.
nmap gcc :action CommentByLineComment<cr>
nmap ;; :action CommentByLineComment<cr>
nmap gzz :action CommentByBlockComment<CR>

" Terminal
nmap <leader>T :action ActivateTerminalToolWindow<cr>    


" Errors
nmap <leader>q :action GotoNextError<cr>
nmap <leader>Q :action GotoPreviousError<cr>


" 映射到idea快捷键
" 弹出输入框,可以跳到指定类
nnoremap <Space>gc :action GotoClass<CR>
" 弹出输入框,跳转到指定操作
nnoremap <Space>ga :action GotoAction<CR>
" 跳转到定义
nnoremap <Space>gd :action GotoDeclaration<CR>
" 跳转到实现
nnoremap <Space>gi :action GotoImplementation<CR>
" 跳转到指定的文件
nnoremap <Space>gf :action GotoFile<CR>
" 跳转到方法的声明
nnoremap <Space>gs :action GotoSuperMethod<CR>
" 跳转到测试
nnoremap <Space>gt :action GotoTest<CR>
" 跳转到变量的声明
nnoremap <Space>gS :action GotoSymbol<CR>

nnoremap <Leader>oi :action OptimizeImports<CR>


" 查找使用
nnoremap <Space>fu :action FindUsages<CR>
" 显示使用
nnoremap <Space>su :action ShowUsages<CR>
nnoremap  fsp :action FileStructurePopup<CR>
nnoremap <Leader>fp :action ShowFilePath<CR>
nnoremap <Leader>re :action RenameElement<CR>
nnoremap <Leader>rf :action RenameFile<CR>
nnoremap <Leader>se :action SearchEverywhere<CR>

nnoremap <Leader>su :action ShowUsages<CR>
nnoremap <Leader>pm :action ShowPopupMenu<CR>
nnoremap <Leader>tc :action CloseActiveTab<CR>
nnoremap <leader>th :action TypeHierarchy<CR>
nnoremap wt :action ActiveToolwindowGroup<CR>
nnoremap wj :action ActivateStructureToolWindow<CR>
nnoremap fip :action FindInPath<CR>
nnoremap <leader>nc :action NewClass<CR>
nnoremap <leader>np :action NewProject<CR>
nnoremap <leader>nm :action NewModule<CR>
nnoremap <leader>nf :action NewFile<CR>








" 前进,相当似于eclipse中的alt+方向右键
nnoremap gf :action Forward<CR>
" 后退,相当于eclipse中的alt+方向左键
nnoremap gb :action Back<CR>

" gh=go head, 映射vim中的^
nnoremap gh ^
" gl=go last,映射vim中的$
nnoremap gl $

" Window operation
nnoremap <Space>ww <C-W>w
nnoremap <Space>wc <C-W>c
nnoremap <Space>wj <C-W>j
nnoremap <Space>wk <C-W>k
nnoremap <Space>wh <C-W>h
nnoremap <Space>wl <C-W>l
nnoremap <Space>ws <C-W>s
nnoremap <Space>w- <C-W>-
nnoremap <Space>w+ <C-W>+
nnoremap <Space>w= <C-W>=

nnoremap <Space>wv <C-W>vf

ideavim插件配置文件

标签:between   设置   pre   ace   quick   ext   module   off   bin   

原文地址:https://www.cnblogs.com/skystarry/p/14949681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!