aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autoload/heresy.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/autoload/heresy.vim b/autoload/heresy.vim
index 0468d58..57fa852 100644
--- a/autoload/heresy.vim
+++ b/autoload/heresy.vim
@@ -147,9 +147,13 @@ function! g:SetShortcuts()
" Move the current / selected line(s) up
inoremap <silent> <C-Up> <C-O>:m -2<CR>
snoremap <silent> <C-Up> <C-O>:m '<-2<CR>gv=gv<C-G>
+ inoremap <silent> <C-K> <C-O>:m -2<CR>
+ snoremap <silent> <C-K> <C-O>:m '<-2<CR>gv=gv<C-G>
" Move the current / selected line(s) down
inoremap <silent> <C-Down> <C-O>:m +1<CR>
snoremap <silent> <C-Down> <C-O>:m '>+1<CR>gv=gv<C-G>
+ inoremap <silent> <C-J> <C-O>:m +1<CR>
+ snoremap <silent> <C-J> <C-O>:m '>+1<CR>gv=gv<C-G>
endif
if g:heresy_tab_shortcuts == 1