diff options
| author | Teddy Wing | 2014-11-09 03:17:22 -0500 | 
|---|---|---|
| committer | Teddy Wing | 2014-11-09 03:19:11 -0500 | 
| commit | db90126c5a7b4031a7a97dd9c9b2e704ef06fdee (patch) | |
| tree | 502e673fba7403b0216995d652f0d72e955a4790 | |
| parent | 25911a09a859f54e5a1098e9fb99eaafd62a8203 (diff) | |
| download | auditory.vim-db90126c5a7b4031a7a97dd9c9b2e704ef06fdee.tar.bz2 | |
plugin/auditory.vim: Add 0^_$g_ mappings
Add mappings for beginning and end of line that play the left and right
sounds.
| -rw-r--r-- | plugin/auditory.vim | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/plugin/auditory.vim b/plugin/auditory.vim index 36d26e0..cb4cdfc 100644 --- a/plugin/auditory.vim +++ b/plugin/auditory.vim @@ -62,6 +62,12 @@ function! s:NormalModeMappings()  	nnoremap <silent> gj :<c-u>call auditory#Play('./Resources/Normal_Mode/Down.wav') \| exec 'normal!' v:count1 . 'gj'<cr>  	nnoremap <silent> gk :<c-u>call auditory#Play('./Resources/Normal_Mode/Up.wav') \| exec 'normal!' v:count1 . 'gk'<cr> +	nnoremap <silent> 0 :<c-u>call auditory#Play('./Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . '0'<cr> +	nnoremap <silent> ^ :<c-u>call auditory#Play('./Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . '^'<cr> +	nnoremap <silent> _ :<c-u>call auditory#Play('./Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . '_'<cr> +	nnoremap <silent> $ :<c-u>call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . '$'<cr> +	nnoremap <silent> g_ :<c-u>call auditory#Play('./Resources/Normal_Mode/Right.wav') \| exec 'normal!' v:count1 . 'g_'<cr> +	  	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> | 
