aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2014-11-09 03:16:43 -0500
committerTeddy Wing2014-11-09 03:16:43 -0500
commit25911a09a859f54e5a1098e9fb99eaafd62a8203 (patch)
tree7c91f68be17193ba1ee8dec9b664e8e2335a15fc
parentfe9267955261717afd820acd735a363b9c3557ca (diff)
downloadauditory.vim-25911a09a859f54e5a1098e9fb99eaafd62a8203.tar.bz2
plugin/auditory.vim: Add gj & gk mappings
Map to up and down sounds.
-rw-r--r--plugin/auditory.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/auditory.vim b/plugin/auditory.vim
index f93ae40..36d26e0 100644
--- a/plugin/auditory.vim
+++ b/plugin/auditory.vim
@@ -59,6 +59,9 @@ function! s:NormalModeMappings()
nnoremap <silent> k :<c-u>call auditory#Play('./Resources/Normal_Mode/Up.wav') \| exec 'normal!' v:count1 . 'k'<cr>
nnoremap <silent> l :<c-u>call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'l'<cr>
+ nnoremap <silent> gj :<c-u>call auditory#Play('./Resources/Normal_Mode/Down.wav') \| exec 'normal!' v:count1 . 'gj'<cr>
+ nnoremap <silent> gk :<c-u>call auditory#Play('./Resources/Normal_Mode/Up.wav') \| exec 'normal!' v:count1 . 'gk'<cr>
+
nnoremap <silent> b :<c-u>call auditory#Play('./Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . 'b'<cr>
nnoremap <silent> w :<c-u>call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'w'<cr>
nnoremap <silent> e :<c-u>call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'e'<cr>