diff options
| author | VG <vg@devys.org> | 2015-07-27 13:32:08 +0200 | 
|---|---|---|
| committer | VG <vg@devys.org> | 2015-07-27 13:32:08 +0200 | 
| commit | eec5a2bcfac6b6d24de39aa9c15135ab825a8f8c (patch) | |
| tree | c25f33b77f85178b3135c459a22b1b9c6ef0f1db /ftplugin | |
| download | vim-uuid-anchor-eec5a2bcfac6b6d24de39aa9c15135ab825a8f8c.tar.gz vim-uuid-anchor-eec5a2bcfac6b6d24de39aa9c15135ab825a8f8c.tar.bz2 vim-uuid-anchor-eec5a2bcfac6b6d24de39aa9c15135ab825a8f8c.zip | |
first commit
Diffstat (limited to 'ftplugin')
| -rw-r--r-- | ftplugin/uuid_anchor.vim | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/ftplugin/uuid_anchor.vim b/ftplugin/uuid_anchor.vim new file mode 100644 index 0000000..1e5dfdd --- /dev/null +++ b/ftplugin/uuid_anchor.vim @@ -0,0 +1,29 @@ +" UUID Anchor vim plugin +" Language:     Python (ft=python) +" Maintainer:   VG <vg@devys.org> +" Version:      Vim 7 (may work with lower Vim versions, but not tested) +" URL:          http://git.devys.org/vim-uuid-anchor + +" Only do this when not done yet for this buffer +if exists("g:loaded_uuid_anchor_ftplugin") +    finish +endif +let loaded_uuid_anchor_ftplugin = 1 + +function! CreateAnchorUUID() +python << EOF +import vim +import random +generated_uuid = '{:08X}'.format(random.randint(0,256**4)) +vim.current.line += generated_uuid +vim.command(''' normal l"uye ''') +EOF +endfunction + +" Add mappings, unless the user didn't want this. +" The default mapping is registered, unless the user remapped it already. +if !exists("no_plugin_maps") && !exists("no_uuid_anchor_maps") +    if !hasmapto(' CreateAnchorUUID(') +        imap <leader><leader>uuid <C-o>:call CreateAnchorUUID()<CR> +    endif +endif | 
