diff options
| author | Teddy Wing | 2014-11-09 07:25:22 -0500 |
|---|---|---|
| committer | Teddy Wing | 2014-11-09 07:25:22 -0500 |
| commit | 74ec915a110a2c19841fcaed6b91c2233ed9d9f1 (patch) | |
| tree | 81cf751e48fc73bced55f14b677f347f62b9068c /autoload | |
| parent | 6b9e75174e5d211ca41295667da48a859c58bb2d (diff) | |
| download | auditory.vim-74ec915a110a2c19841fcaed6b91c2233ed9d9f1.tar.bz2 | |
autoload/auditory.vim: Fix '0' mapping
'0' wasn't doing what 0 is normally supposed to do. Modify the mapping
to make it work.
Diffstat (limited to 'autoload')
| -rw-r--r-- | autoload/auditory.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/auditory.vim b/autoload/auditory.vim index 906bbe8..c9c27e8 100644 --- a/autoload/auditory.vim +++ b/autoload/auditory.vim @@ -142,7 +142,7 @@ function! auditory#NormalModeMappings() " nnoremap <silent> <space> :<c-u>call auditory#Play('/Resources/Normal_Mode/Down.wav') \| exec 'normal!' v:count1 . '<space>'<cr> " nnoremap <silent> <bs> :<c-u>call auditory#Play('/Resources/Normal_Mode/Up.wav') \| exec 'normal!' v:count1 . '<bs>'<cr> - nnoremap <silent> 0 :<c-u>call auditory#Play('/Resources/Normal_Mode/Left.wav') \| exec 'normal!' v:count1 . '0'<cr> + nnoremap <silent> 0 :<c-u>call auditory#Play('/Resources/Normal_Mode/Left.wav')<cr>0 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> |
