From 5821170d49b6a7a8c94c279808cd2eeba3be920f Mon Sep 17 00:00:00 2001 From: VG Date: Mon, 27 Jul 2015 14:13:36 +0200 Subject: renames ftplugin to plugin since it is not filetype dependent --- ftplugin/uuid_anchor.vim | 29 ----------------------------- plugin/uuid_anchor.vim | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 29 deletions(-) delete mode 100644 ftplugin/uuid_anchor.vim create mode 100644 plugin/uuid_anchor.vim diff --git a/ftplugin/uuid_anchor.vim b/ftplugin/uuid_anchor.vim deleted file mode 100644 index 1e5dfdd..0000000 --- a/ftplugin/uuid_anchor.vim +++ /dev/null @@ -1,29 +0,0 @@ -" UUID Anchor vim plugin -" Language: Python (ft=python) -" Maintainer: VG -" 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 uuid :call CreateAnchorUUID() - endif -endif diff --git a/plugin/uuid_anchor.vim b/plugin/uuid_anchor.vim new file mode 100644 index 0000000..1e5dfdd --- /dev/null +++ b/plugin/uuid_anchor.vim @@ -0,0 +1,29 @@ +" UUID Anchor vim plugin +" Language: Python (ft=python) +" Maintainer: VG +" 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 uuid :call CreateAnchorUUID() + endif +endif -- cgit v1.2.3