]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add support for another extension
authorcodybuell <cody@codybuell.com>
Mon, 26 Jun 2017 17:49:01 +0000 (13:49 -0400)
committercodybuell <cody@codybuell.com>
Mon, 26 Jun 2017 17:49:01 +0000 (13:49 -0400)
ftplugin/markdown.vim

index 21c9442c09eed2ef84ad7011f74ba482a0116eae..f5d09898bea9ac4232aa8e24f8fd0a85556095ce 100644 (file)
@@ -586,9 +586,15 @@ if !exists("*s:EditUrlUnderCursor")
             write
           endif
           if get(g:, 'vim_markdown_no_extensions_in_markdown', 0)
-              execute 'edit' fnamemodify(expand('%:~'), ':p:h').'/'.l:url.'.md'
+              " use another file extension if preferred
+              if exists('g:vim_markdown_auto_extension_ext')
+                let l:ext = '.'.g:vim_markdow_auto_extension_ext
+              else
+                let l:ext = '.md'
+              endif
+              execute 'edit' fnameescape(fnamemodify(expand('%:~'), ':p:h').'/'.l:url.l:ext)
           else
-              execute 'edit' l:url 
+              execute 'edit' fnameescape(l:url)
           endif
       else
           echomsg 'The cursor is not on a link.'