diff options
| -rw-r--r-- | autoload/auditory.vim | 6 | ||||
| -rw-r--r-- | plugin/auditory.vim | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/autoload/auditory.vim b/autoload/auditory.vim index 31718dc..915c561 100644 --- a/autoload/auditory.vim +++ b/autoload/auditory.vim @@ -202,8 +202,8 @@ function! s:DeleteLine(type) endfunction -" Normal mode -" =========== +" Standard Mappings +" ================= let s:mappings = {} let s:mappings['h'] = { @@ -440,7 +440,7 @@ let s:mappings['<c-r>'] = { \ 'map_to': "<c-r>", \ } -function! auditory#AssignNormalModeMappings() +function! auditory#AssignMappings() for [key, value] in items(s:mappings) " If this an `execute` mapping, add a pipe. " Otherwise <cr> to exit command mode. 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() |
