Ideavim
Vim and Ideavim settings stored here for seamless integration.
README
Question: What are the differences between all these mapping commands anyways!?
map remap noremap inoremap vnoremap
Answer: Stack Overflow Vim Mapping
- n: normal only
- v: visual and select
- o: operator-pending
- x: visual only
- s: select only
- i: insert
- c: command-line
- l: insert, command-line, regexp-search
turn off loud annoying bells triggered on error push
-
set visualbell -
set noerrorbells
Hit jk to enter normal mode!
-
inoremap jkQuestion: ... But what if I want to write jk!?
Answer: No problem! Just hit j wait one second, and hit k!
