download
Sign in or create your account
|
Project List
|
Help
Project Home
Downloads
Issues
Source
Source Tree
|
Change Log
|
How To Get The Code
download Git Source Tree
Root
/
vimm200811
/
rand.vim
1
2
function! Rand(max)
3
perl << EOF
4
my $max = VIM::Eval('a:max');
5
my $value = int(rand($max)), '\n';
6
VIM::DoCommand("let l:r = $value")
7
EOF
8
return l:r
9
endfunction
10
11
12
Download this file
Branches:
master