From c5f0842c45c9e6204eb368e8a11c19aaa76db1c5 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 9 Nov 2014 04:29:35 -0500 Subject: plugin/auditory.vim: Add 'x' mapping Use the Delete sound. --- plugin/auditory.vim | 3 +++ 1 file changed, 3 insertions(+) (limited to 'plugin') diff --git a/plugin/auditory.vim b/plugin/auditory.vim index 6de2684..ec121c3 100644 --- a/plugin/auditory.vim +++ b/plugin/auditory.vim @@ -130,6 +130,9 @@ 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 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' endfunction call s:NormalModeMappings() -- cgit v1.2.3