mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
7 lines
187 B
VimL
7 lines
187 B
VimL
function! ExtendedRegexObject(...)
|
|
return call('extended_regex#ExtendedRegex', a:000)
|
|
endfunction
|
|
|
|
" ERex is a global object with access to Vim's vars:
|
|
let ERex = ExtendedRegexObject()
|