aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2014-11-09 03:00:43 -0500
committerTeddy Wing2014-11-09 03:02:12 -0500
commitfe9267955261717afd820acd735a363b9c3557ca (patch)
treed198dfca8bc8284d8cca0a67ff4e2089e84d0cc9
parent150485631767df9309d94810b3678d1594e9c93b (diff)
downloadauditory.vim-fe9267955261717afd820acd735a363b9c3557ca.tar.bz2
plugin/auditory.vim: Add webWEB mappings
Add mappings to the 'w', 'e', 'b' keys and their uppercase equivalents. These map to the Left and Right sounds.
-rw-r--r--plugin/auditory.vim7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugin/auditory.vim b/plugin/auditory.vim
index 193e6b0..f93ae40 100644
--- a/plugin/auditory.vim
+++ b/plugin/auditory.vim
@@ -58,6 +58,13 @@ function! s:NormalModeMappings()
nnoremap <silent> j :<c-u>call auditory#Play('./Resources/Normal_Mode/Down.wav') \| exec 'normal!' v:count1 . 'j'<cr>
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> 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>
+ 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>
endfunction
call s:NormalModeMappings()