aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorTeddy Wing2014-11-09 04:27:30 -0500
committerTeddy Wing2014-11-09 04:27:30 -0500
commit416d7bec227415336fbf561fd41a87c9321fd7e6 (patch)
tree637f4beb519a228c73b0cc0dd9076a5850868b3b /plugin
parent9c7c874af30acfb089b0bfeb7811cdbfd7c9d43c (diff)
downloadauditory.vim-416d7bec227415336fbf561fd41a87c9321fd7e6.tar.bz2
plugin/auditory.vim: Add zt/z./zz/zb mappings
Use the Jump sound for these comands.
Diffstat (limited to 'plugin')
-rw-r--r--plugin/auditory.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugin/auditory.vim b/plugin/auditory.vim
index 618f603..6de2684 100644
--- a/plugin/auditory.vim
+++ b/plugin/auditory.vim
@@ -125,6 +125,11 @@ function! s:NormalModeMappings()
nnoremap / :<c-u>call auditory#Play('./Resources/Normal_Mode/Search.wav')<cr>/
nnoremap n :<c-u>call auditory#Play('./Resources/Normal_Mode/Search.wav')<cr>n
nnoremap N :<c-u>call auditory#Play('./Resources/Normal_Mode/Search.wav')<cr>N
+
+ nnoremap <silent> zt :<c-u>call auditory#Play('./Resources/Normal_Mode/Jump.wav')<cr>zt
+ nnoremap <silent> z. :<c-u>call auditory#Play('./Resources/Normal_Mode/Jump.wav')<cr>z.
+ nnoremap <silent> zz :<c-u>call auditory#Play('./Resources/Normal_Mode/Jump.wav')<cr>zz
+ nnoremap <silent> zb :<c-u>call auditory#Play('./Resources/Normal_Mode/Jump.wav')<cr>zb
endfunction
call s:NormalModeMappings()