:action {action_id} 로 IntelliJ Idea 의 행위를 실행할 수 있다.:actionlist [pattern] : 액션의 목록을 볼 수 있다.IdeaVim: track action Ids 설정을 활성화 하면 IntelliJ 에서 한 행위들에 대한 Action ID를 볼 수 있게 된다.map 단축키 <Action>(action_id) " 예 " Map \r to the Reformat Code action map \r <Action>(ReformatCode) " Map <leader>d to start debug map <leader>d <Action>(Debug) " Map \b to toggle the breakpoint on the current line map \b <Action>(ToggleLineBreakpoint)
set easymotion
set surround
set commentary
set multiple-cursors
:s/ab/a^Mb/g 명령으로 문자열 대체시에 ^M을 <Ctrl-V><Enter>로 입력하면 ab 문자열이 a 그리고 줄바꿈 후 b로 대체 된다.<Ctrl-V>다른키를 통한 특수문자 입력을 지원하지 않고 있다.:s/ab/a\rb/g 처럼 \r로 새줄기호를 나타내면 작동한다. 어떤 경우에는 \n이 새줄기호 역할을 하기도 한다고 한다.