美文网首页
IdeaVim 配置

IdeaVim 配置

作者: artcccj | 来源:发表于2021-12-18 09:25 被阅读0次

需要的插件

  • IdeaVim
  • IdeaVimExtension

我的配置

" 在normal模式下保持英文输入法(IdeaVimExtension)
:set keep-english-in-normal
" 在normal模式下保持英文输入法,插入模式下回复插入模式时的输入法(IdeaVimExtension)
:set keep-english-in-normal-and-restore-in-insert
" 显示行号
set nu
" 显示相对行号
set relativenumber

syntax on

set laststatus=4
" 将tab替换为相应数量的空格
set expandtab

set tabstop=4

set shiftwidth=4

set history=2000

set nobackup
set noswapfile

let mapleader=' '

" 退出、保存关闭"
nnoremap <Leader>q :q<CR>
nnoremap <Leader>Q :qa!<CR>

" redo
nnoremap U <C-r>

" 跳转到实体类
nnoremap <Leader>c :action GotoClass<CR>

" 跳转到声明
nnoremap <Leader>d :action GotoDeclaration<CR>

" 查看断点
nnoremap <Leader>b :action ViewBreakpoints<CR>

" 跳到实现类
nnoremap <Leader>i :action GotoImplementation<CR>

" 跳转到文件
nnoremap <Leader>f :action GotoFile<CR>

" 跳转Action
nnoremap <Leader>a :action GotoAction<CR>

" 跳到测试类,没有自动创建
nnoremap <Leader>t :action GotoTest<CR>

" 注释
nnoremap <Leader>/ :action CommentByLineComment<CR>

" 优化导包
nnoremap <Leader>O :action OptimizeImports<CR>

" run
nnoremap <Leader>R :action Run<CR>

" debug
nnoremap <Leader>D :action Debug<CR>

" 重命名 文件
nnoremap <Leader>N :action RenameFile<CR>
" 重命名 变量、类名
nnoremap <Leader>N :action RenameElement<CR>

" 复制class 引用
nnoremap <Leader>cr :action CopyReference<CR>

" 抽取方法
nnoremap <Leader>M :action ExtractMethod<CR>

" 格式化代码
nnoremap <Leader>F :action ReformatCode<CR>

" 展示类继承关系
nnoremap <Leader>H :action TypeHierarchy<CR>

" 实现方法
nnoremap <Leader>m :action ImplementMethods<CR>

" 覆盖方法
nnoremap <Leader>o :action OverrideMethods<CR>

" 上一个tab
nnoremap <Leader>h :action PreviousTab<CR>

" 下一个tab
nnoremap <Leader>l :action NextTab<CR>

" 展示错误信息
nnoremap <Leader>E :action ShowErrorDescription<CR>

" 展示错误信息
nnoremap <Leader>nE :action GotoNextError<CR>

" 展示tab页面
nnoremap <Leader>T :action Switcher<CR>

相关文章

  • IdeaVim 配置

    需要的插件 IdeaVim IdeaVimExtension 我的配置

  • ideavim

    安装IdeaVim settings-plugin 搜索ideavim 点击即可安装 首先配置启动快捷键,默认是c...

  • Neovim 配置

    01. VIM 配置 02. Neovim 配置 03. IdeaVim 进阶配置 04. VsVim 配置 前言...

  • IdeaVim 进阶配置

    简介 IdeaVim 是一个基于 IntelliJ 平台的 Vim 插件,可以在 IntelliJ IDEA, ...

  • IdeaVim插件的使用

    IdeaVim插件使用技巧--JetBrains Plugin Vim技巧和插件

  • ideavim键盘流

    ideavim键盘流 作为一个vimer,不管使用什么IDE或者编辑器,安装完成后的第一步就是安装vim插件。 我...

  • ideaVim - 常用操作

    使用vim得好处就是可以解放鼠标 操作起来还是很方便的 慢慢习惯了就好 行尾:shift + 4($) 行首:sh...

  • Android Studio + ideaVim

    块编辑 v:从光标处开始选择 shift + v:选择整行 列编辑 control + v:进入列编辑模式,光标上...

  • IDEA 常用插件与配置

    1. 常用插件 IdeaVim 截止至 2021.03.07 日,插件最后更新时间:2021.05.04IdeaV...

  • IdeaVim插件使用技巧

    在 IDEA Intellij小技巧和插件 一文中简单介绍了一下IdeaVim插件。在这里详细总结一下这个插件在日...

网友评论

      本文标题:IdeaVim 配置

      本文链接:https://www.haomeiwen.com/subject/zhzwfrtx.html