aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorTeddy Wing2015-07-19 11:42:47 -0400
committerTeddy Wing2015-07-19 11:47:10 -0400
commit98b259d4065ef5b986d5d3cda953518061a6117f (patch)
tree0eb48be025a9e9cb6531bc286fb65abdf74d6bc0 /plugin
parent073fad07c8f9a7b2d59aa9a71061425c095d270e (diff)
downloadauditory.vim-98b259d4065ef5b986d5d3cda953518061a6117f.tar.bz2
auditory.vim: `AssignNormalModeMappings` -> `AssignMappings`
Rename the function because we're not only assigning normal mode mappings here, we're also assigning visual mode mappings. And we might be assigning mappings for other modes here too in the future, so this name doesn't make sense. I had originally called it this to distinguish it from the insert mode set defined in plugin/auditory.vim with the `CursorMovedI` autocommand, but I think this should be more clear about what it's doing. Edit: Also modify the comment above this section for similar reasons.
Diffstat (limited to 'plugin')
-rw-r--r--plugin/auditory.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/auditory.vim b/plugin/auditory.vim
index ba46fa2..87bfd71 100644
--- a/plugin/auditory.vim
+++ b/plugin/auditory.vim
@@ -20,4 +20,4 @@ augroup END
command! AuditoryToggleGalaxyFarFarAway call auditory#ToggleGalaxyFarFarAway()
-call auditory#AssignNormalModeMappings()
+call auditory#AssignMappings()