From fe9267955261717afd820acd735a363b9c3557ca Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 9 Nov 2014 03:00:43 -0500 Subject: 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. --- plugin/auditory.vim | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'plugin') 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 j :call auditory#Play('./Resources/Normal_Mode/Down.wav') \| exec 'normal!' v:count1 . 'j' nnoremap k :call auditory#Play('./Resources/Normal_Mode/Up.wav') \| exec 'normal!' v:count1 . 'k' nnoremap l :call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'l' + + nnoremap b :call auditory#Play('./Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . 'b' + nnoremap w :call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'w' + nnoremap e :call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'e' + nnoremap B :call auditory#Play('./Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . 'B' + nnoremap W :call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'W' + nnoremap E :call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'E' endfunction call s:NormalModeMappings() -- cgit v1.2.3