mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:20:03 +08:00
7 lines
185 B
VimL
7 lines
185 B
VimL
function! unicode#groups()
|
|
|
|
return map(split(globpath(g:unite_unicode_data_path, '*.txt'), '\n'),
|
|
\ '[fnamemodify(v:val, ":t:r"), fnamemodify(v:val, ":p")]')
|
|
|
|
endfunction
|