1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 05:50:06 +08:00
SpaceVim/bundle/org-mode/autoload/org/util.vim

8 lines
137 B
VimL
Raw Normal View History

2022-01-15 22:22:23 +08:00
let s:NUM = SpaceVim#api#import('data#number')
function! org#util#random(range) abort
return s:NUM.random(1, a:range)
endfunction