aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2014-11-09 04:14:31 -0500
committerTeddy Wing2014-11-09 04:14:31 -0500
commitf5fabac36c8769af1ff88fd9c7c455f9339a3e0a (patch)
treee4879e6f1d4118f8b611c3fc00ca64ca8266c0c0
parent2253eafc992d04e639f44de587c7e6bac119c1c8 (diff)
downloadauditory.vim-f5fabac36c8769af1ff88fd9c7c455f9339a3e0a.tar.bz2
plugin/auditory.vim: Add paste sounds
-rw-r--r--plugin/auditory.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/auditory.vim b/plugin/auditory.vim
index e2773db..857b3ba 100644
--- a/plugin/auditory.vim
+++ b/plugin/auditory.vim
@@ -118,6 +118,9 @@ function! s:NormalModeMappings()
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> p :<c-u>call auditory#Play('./Resources/Normal_Mode/Paste.wav') \| exec 'normal!' v:count1 . 'p'<cr>
+ nnoremap <silent> P :<c-u>call auditory#Play('./Resources/Normal_Mode/Paste.wav') \| exec 'normal!' v:count1 . 'P'<cr>
endfunction
call s:NormalModeMappings()