mirror of
https://github.com/amix/vimrc
synced 2025-07-07 08:45:00 +08:00
Add support of auto format files.
This commit is contained in:
20
sources_non_forked/vim-autoformat/plugin/utils.vim
Normal file
20
sources_non_forked/vim-autoformat/plugin/utils.vim
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
" Simple python-based random number generator
|
||||
function! g:RandomInt()
|
||||
if has("python3")
|
||||
python3 << EOF
|
||||
import random
|
||||
result = random.randrange(1, 1000000)
|
||||
vim.command('return ' + str(result))
|
||||
EOF
|
||||
else
|
||||
python << EOF
|
||||
import random
|
||||
result = random.randrange(1, 1000000)
|
||||
vim.command('return ' + str(result))
|
||||
EOF
|
||||
endif
|
||||
endfunction
|
||||
|
||||
" Put the uncopyable messages text into the buffer
|
||||
command! PutMessages redir @" | messages | redir END | put
|
Reference in New Issue
Block a user