From 25911a09a859f54e5a1098e9fb99eaafd62a8203 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 9 Nov 2014 03:16:43 -0500 Subject: plugin/auditory.vim: Add gj & gk mappings Map to up and down sounds. --- plugin/auditory.vim | 3 +++ 1 file changed, 3 insertions(+) (limited to 'plugin') diff --git a/plugin/auditory.vim b/plugin/auditory.vim index f93ae40..36d26e0 100644 --- a/plugin/auditory.vim +++ b/plugin/auditory.vim @@ -59,6 +59,9 @@ function! s:NormalModeMappings() nnoremap k :call auditory#Play('./Resources/Normal_Mode/Up.wav') \| exec 'normal!' v:count1 . 'k' nnoremap l :call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'l' + 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 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