Move expansion functions to autoload
parent
8aabeb05f2
commit
aa5e54a32e
|
@ -30,6 +30,44 @@ let s:active_register = "\""
|
||||||
let s:registry = {}
|
let s:registry = {}
|
||||||
|
|
||||||
|
|
||||||
|
" FUNCTION: ExpandRegister(reg) {{{1
|
||||||
|
" ==============================================================================
|
||||||
|
" Convenience method to determine which register is being currently used.
|
||||||
|
" The unnamed register defaults to the last used register to avoid having to
|
||||||
|
" constantly prefix registration. This can be changed by setting the value of
|
||||||
|
" g:persist_unnamed_register to 1.
|
||||||
|
|
||||||
|
function! highlight#expand_register(reg)
|
||||||
|
if !g:persist_unnamed_register && a:reg ==# '"'
|
||||||
|
return s:active_register
|
||||||
|
endif
|
||||||
|
return a:reg
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
" FUNCTION: ExpandFlag(flag) {{{1
|
||||||
|
" ==============================================================================
|
||||||
|
" Convenience method used to make the mappings in plugin/highlight.vim a bit
|
||||||
|
" easier to read through. The passed flag can be:
|
||||||
|
"
|
||||||
|
" c: Indicates the current word, with word boundary.
|
||||||
|
" g: Indicates the current word, without word boundary.
|
||||||
|
" v: Indicates the current visual selection.
|
||||||
|
"
|
||||||
|
" Throws an error otherwise.
|
||||||
|
|
||||||
|
function! highlight#expand_flag(flag) abort
|
||||||
|
if a:flag ==# 'c'
|
||||||
|
return '\<' . expand('<cword>') . '\>'
|
||||||
|
elseif a:flag ==# 'g'
|
||||||
|
return expand('<cword>')
|
||||||
|
elseif a:flag ==# 'v'
|
||||||
|
return highlight#get_visual_selection()
|
||||||
|
endif
|
||||||
|
throw 'Could not expand passed flag: ' . a:flag
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
" FUNCTION: CountPattern(pattern) {{{1
|
" FUNCTION: CountPattern(pattern) {{{1
|
||||||
" ==============================================================================
|
" ==============================================================================
|
||||||
" Convenience method used to display the number of times the passed pattern has
|
" Convenience method used to display the number of times the passed pattern has
|
||||||
|
|
|
@ -55,72 +55,34 @@ if !exists('g:persist_unnamed_register')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
" FUNCTION: ExpandRegister(reg) {{{1
|
|
||||||
" ==============================================================================
|
|
||||||
" Convenience method to determine which register is being currently used.
|
|
||||||
" The unnamed register defaults to the last used register to avoid having to
|
|
||||||
" constantly prefix registration. This can be changed by setting the value of
|
|
||||||
" g:persist_unnamed_register to 1.
|
|
||||||
|
|
||||||
function! s:ExpandRegister(reg)
|
|
||||||
if !g:persist_unnamed_register && a:reg ==# '"'
|
|
||||||
return s:active_register
|
|
||||||
endif
|
|
||||||
return a:reg
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
|
|
||||||
" FUNCTION: ExpandFlag(flag) {{{1
|
|
||||||
" ==============================================================================
|
|
||||||
" Convenience method used to make the mappings in plugin/highlight.vim a bit
|
|
||||||
" easier to read through. The passed flag can be:
|
|
||||||
"
|
|
||||||
" c: Indicates the current word, with word boundary.
|
|
||||||
" g: Indicates the current word, without word boundary.
|
|
||||||
" v: Indicates the current visual selection.
|
|
||||||
"
|
|
||||||
" Throws an error otherwise.
|
|
||||||
|
|
||||||
function! s:ExpandFlag(flag) abort
|
|
||||||
if a:flag ==# 'c'
|
|
||||||
return '\<' . expand('<cword>') . '\>'
|
|
||||||
elseif a:flag ==# 'g'
|
|
||||||
return expand('<cword>')
|
|
||||||
elseif a:flag ==# 'v'
|
|
||||||
return highlight#get_visual_selection()
|
|
||||||
endif
|
|
||||||
throw 'Could not expand passed flag: ' . a:flag
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
|
|
||||||
" MAPPINGS: {{{1
|
" MAPPINGS: {{{1
|
||||||
" ==============================================================================
|
" ==============================================================================
|
||||||
|
|
||||||
" Append Searches
|
" Append Searches
|
||||||
noremap <Plug>HRegistry_AppendToSearch
|
noremap <Plug>HRegistry_AppendToSearch
|
||||||
\ :call highlight#append_to_search(s:ExpandRegister(v:register), s:ExpandFlag('c'))<Bar>
|
\ :call highlight#append_to_search(highlight#expand_register(v:register), highlight#expand_flag('c'))<Bar>
|
||||||
\ call highlight#count_pattern(s:ExpandFlag('c'))<CR>
|
\ call highlight#count_pattern(highlight#expand_flag('c'))<CR>
|
||||||
noremap <Plug>HRegistry_GAppendToSearch
|
noremap <Plug>HRegistry_GAppendToSearch
|
||||||
\ :call highlight#append_to_search(s:ExpandRegister(v:register), s:ExpandFlag('g'))<Bar>
|
\ :call highlight#append_to_search(highlight#expand_register(v:register), highlight#expand_flag('g'))<Bar>
|
||||||
\ call highlight#count_pattern(s:ExpandFlag('g'))<CR>
|
\ call highlight#count_pattern(highlight#expand_flag('g'))<CR>
|
||||||
noremap <Plug>HRegistry_VisualAppendToSearch
|
noremap <Plug>HRegistry_VisualAppendToSearch
|
||||||
\ :call highlight#append_to_search(s:ExpandRegister(v:register), s:ExpandFlag('v'))<Bar>
|
\ :call highlight#append_to_search(highlight#expand_register(v:register), highlight#expand_flag('v'))<Bar>
|
||||||
\ call highlight#count_pattern(s:ExpandFlag('v'))<CR>
|
\ call highlight#count_pattern(highlight#expand_flag('v'))<CR>
|
||||||
|
|
||||||
" Remove Searches
|
" Remove Searches
|
||||||
noremap <Plug>HRegistry_RemoveFromSearch
|
noremap <Plug>HRegistry_RemoveFromSearch
|
||||||
\ :call highlight#remove_from_search(s:ExpandRegister(v:register), s:ExpandFlag('c'))<CR>
|
\ :call highlight#remove_from_search(highlight#expand_register(v:register), highlight#expand_flag('c'))<CR>
|
||||||
noremap <Plug>HRegistry_VisualRemoveFromSearch
|
noremap <Plug>HRegistry_VisualRemoveFromSearch
|
||||||
\ :call highlight#remove_from_search(s:ExpandRegister(v:register), s:ExpandFlag('v'))<CR>
|
\ :call highlight#remove_from_search(highlight#expand_register(v:register), highlight#expand_flag('v'))<CR>
|
||||||
|
|
||||||
" Other Modifications
|
" Other Modifications
|
||||||
noremap <Plug>HRegistry_ClearRegister
|
noremap <Plug>HRegistry_ClearRegister
|
||||||
\ :call highlight#clear_register(s:ExpandRegister(v:register))<Bar>
|
\ :call highlight#clear_register(highlight#expand_register(v:register))<Bar>
|
||||||
\ call highlight#activate_register(s:ExpandRegister(v:register))<CR>
|
\ call highlight#activate_register(highlight#expand_register(v:register))<CR>
|
||||||
noremap <Plug>HRegistry_ActivateRegister
|
noremap <Plug>HRegistry_ActivateRegister
|
||||||
\ :call highlight#activate_register(s:ExpandRegister(v:register))<CR>
|
\ :call highlight#activate_register(highlight#expand_register(v:register))<CR>
|
||||||
noremap <Plug>HRegistry_CountLastSeen
|
noremap <Plug>HRegistry_CountLastSeen
|
||||||
\ :call highlight#count_pattern(s:ExpandFlag('c'))<CR>
|
\ :call highlight#count_pattern(highlight#expand_flag('c'))<CR>
|
||||||
|
|
||||||
" Normal Mappings
|
" Normal Mappings
|
||||||
nmap <silent> & <Plug>HRegistry_AppendToSearch
|
nmap <silent> & <Plug>HRegistry_AppendToSearch
|
||||||
|
|
Loading…
Reference in New Issue