From db90126c5a7b4031a7a97dd9c9b2e704ef06fdee Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 9 Nov 2014 03:17:22 -0500 Subject: plugin/auditory.vim: Add 0^_$g_ mappings Add mappings for beginning and end of line that play the left and right sounds. --- plugin/auditory.vim | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'plugin') diff --git a/plugin/auditory.vim b/plugin/auditory.vim index 36d26e0..cb4cdfc 100644 --- a/plugin/auditory.vim +++ b/plugin/auditory.vim @@ -62,6 +62,12 @@ function! s:NormalModeMappings() nnoremap gj :call auditory#Play('./Resources/Normal_Mode/Down.wav') \| exec 'normal!' v:count1 . 'gj' nnoremap gk :call auditory#Play('./Resources/Normal_Mode/Up.wav') \| exec 'normal!' v:count1 . 'gk' + nnoremap 0 :call auditory#Play('./Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . '0' + nnoremap ^ :call auditory#Play('./Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . '^' + nnoremap _ :call auditory#Play('./Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . '_' + nnoremap $ :call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . '$' + nnoremap g_ :call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'g_' + 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' -- cgit v1.2.3