summaryrefslogtreecommitdiffstats
path: root/other/ideavimrc
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2022-05-09 03:56:41 -0500
committerMitsuo Tokumori <[email protected]>2022-05-09 03:56:41 -0500
commit835d17588c1fef809b885a3c65b2fc07c785a143 (patch)
tree48566d732ce4f923bf7fda30a01bb71b8a2b10a6 /other/ideavimrc
parent9e04edd1ce6c0c5510a624fcf0dbdd40ccf4f945 (diff)
downloaddotfiles-835d17588c1fef809b885a3c65b2fc07c785a143.tar.gz
dotfiles-835d17588c1fef809b885a3c65b2fc07c785a143.tar.bz2
dotfiles-835d17588c1fef809b885a3c65b2fc07c785a143.zip
Add ideavimrc for PyCharm Vim plugin
Diffstat (limited to 'other/ideavimrc')
-rw-r--r--other/ideavimrc10
1 files changed, 9 insertions, 1 deletions
diff --git a/other/ideavimrc b/other/ideavimrc
index f88b024..c746971 100644
--- a/other/ideavimrc
+++ b/other/ideavimrc
@@ -32,12 +32,20 @@ set ignorecase
set smartcase
set showmode
nnoremap <C-L> :nohl<CR><C-L>
+nnoremap <F7> :tabp<CR>
+nnoremap <F8> :tabn<CR>
""" IdeaVim options
+" Join and justify paragraphs/lines
set ideajoin " smartjoin
+vnoremap gq :action FillParagraph<CR>
+" Thank you: https://stackoverflow.com/a/37842786/7498073
+" TIP: Got the action name by listing all actions that contain the word fill
+" `:actionlist fill`
"set ideamarks
""" Plugins
+" Couldn't make it to work well :(
" https://github.com/abrookins/WrapToColumn
-nmap gq :action com.andrewbrookins.idea.wrap.WrapAction<CR>
+" vnoremap gq :action com.andrewbrookins.idea.wrap.WrapParagraphAction<CR>