aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorTeddy Wing2015-08-16 02:19:58 -0400
committerTeddy Wing2015-08-16 02:26:31 -0400
commita612f8fb835df92648401606dec6c2d07fa3ae4b (patch)
treedf9acd2ee66fe72fd8eda0f9ac220740c28cc73b /plugin
parentd5b7bd6857e82fd2b164d41b929426394dcbf10e (diff)
downloadauditory.vim-a612f8fb835df92648401606dec6c2d07fa3ae4b.tar.bz2
Unmap insert mode sounds from `auditory#Unmap()`
* Move the insert mode autocommand definition into a new function that turns on insert mode sounds * Create a function to turn off insert mode sounds * Call these from our normal `AssignMappings` and `Unmap` functions so we can turn all our sounds on and off in one fell swoop
Diffstat (limited to 'plugin')
-rw-r--r--plugin/auditory.vim6
1 files changed, 0 insertions, 6 deletions
diff --git a/plugin/auditory.vim b/plugin/auditory.vim
index 21082f0..e8ceeba 100644
--- a/plugin/auditory.vim
+++ b/plugin/auditory.vim
@@ -11,12 +11,6 @@ if !executable('mplayer')
endif
-augroup auditory#insert_mode
- autocmd!
- autocmd CursorMovedI * call auditory#PlayScale()
-augroup END
-
-
command! AuditoryToggleGalaxyFarFarAway call auditory#ToggleGalaxyFarFarAway()
command! AuditoryOff call auditory#Unmap()