From 2a9fff5b8bd5dd5928e0dd066ab2887e294b4efd Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 9 Nov 2014 05:55:58 -0500 Subject: plugin/auditory.vim: Mappings that didn't quite work Add commented mappings that I've been trying to get working but that for one reason or another haven't been able to figure out how to do so. --- plugin/auditory.vim | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'plugin') diff --git a/plugin/auditory.vim b/plugin/auditory.vim index 641a506..7f2904a 100644 --- a/plugin/auditory.vim +++ b/plugin/auditory.vim @@ -110,6 +110,9 @@ 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 :call auditory#Play('/Resources/Normal_Mode/Down.wav') \| exec 'normal!' v:count1 . '' + " nnoremap :call auditory#Play('/Resources/Normal_Mode/Up.wav') \| exec 'normal!' v:count1 . '' + 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 . '_' @@ -137,6 +140,10 @@ function! s:NormalModeMappings() nnoremap z. :call auditory#Play('/Resources/Normal_Mode/Jump.wav')z. nnoremap zz :call auditory#Play('/Resources/Normal_Mode/Jump.wav')zz nnoremap zb :call auditory#Play('/Resources/Normal_Mode/Jump.wav')zb + " nnoremap :call auditory#Play('/Resources/Normal_Mode/Jump.wav') \| exec 'normal!' v:count1 . '' + " nnoremap :call auditory#Play('/Resources/Normal_Mode/Jump.wav') \| exec 'normal!' v:count1 . '' + " nnoremap :call auditory#Play('/Resources/Normal_Mode/Jump.wav') \| exec 'normal!' v:count1 . 'cr> + " nnoremap :call auditory#Play('/Resources/Normal_Mode/Jump.wav') \| exec 'normal!' v:count1 . '' nnoremap ( :call auditory#Play('/Resources/Normal_Mode/Jump.wav') \| exec 'normal!' v:count1 . '(' nnoremap ) :call auditory#Play('/Resources/Normal_Mode/Jump.wav') \| exec 'normal!' v:count1 . ')' @@ -151,6 +158,11 @@ function! s:NormalModeMappings() nnoremap x :call auditory#Play('/Resources/Normal_Mode/Delete.wav') \| exec 'normal!' v:count1 . 'x' vnoremap x :call auditory#Play('/Resources/Normal_Mode/Delete.wav') \| exec 'normal!' v:count1 . 'x' + " nnoremap d :call auditory#Play('/Resources/Normal_Mode/Delete.wav') \| exec 'normal!' v:count1 . 'd' + " nnoremap d :set opfunc=d \| call auditory#Play('/Resources/Normal_Mode/Delete.wav') \| exec 'normal!' v:count1 . @g + + " inoremap :call auditory#Play('/Resources/auto_complete.wav')a + " inoremap :call auditory#Play('/Resources/auto_complete.wav')a endfunction call s:NormalModeMappings() -- cgit v1.2.3