aboutsummaryrefslogtreecommitdiffstats
path: root/autoload
diff options
context:
space:
mode:
authorTeddy Wing2014-11-09 07:25:22 -0500
committerTeddy Wing2014-11-09 07:25:22 -0500
commit74ec915a110a2c19841fcaed6b91c2233ed9d9f1 (patch)
tree81cf751e48fc73bced55f14b677f347f62b9068c /autoload
parent6b9e75174e5d211ca41295667da48a859c58bb2d (diff)
downloadauditory.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.vim2
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>