X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/da4f9691597928065d849fe9c0863ed3a756b52d..472da5eb5d7b032311812c992436b572a58f352d:/doc/vim-markdown.txt diff --git a/doc/vim-markdown.txt b/doc/vim-markdown.txt index 109ffdc..9bc972c 100644 --- a/doc/vim-markdown.txt +++ b/doc/vim-markdown.txt @@ -26,6 +26,7 @@ Contents ~ |vim-markdown-do-not-require-.md-extensions-for-markdown-links| 13. Auto-write when following link |vim-markdown-auto-write-when-following-link| + 14. Change default file extension |vim-markdown-auto-extension-ext| 4. Mappings |vim-markdown-mappings| 5. Commands |vim-markdown-commands| 6. Credits |vim-markdown-credits| @@ -309,6 +310,28 @@ this option will automatically save any edits you made before moving you: > let g:vim_markdown_autowrite = 1 < +------------------------------------------------------------------------------- + *vim-markdown-auto-extension-ext* +Change default file extension ~ + +If you would like to use a file extension other than '.md' you may do so using +the 'vim_markdown_auto_extension_ext' variable: +> + let g:vim_markdown_auto_extension_ext = 'txt' +< +------------------------------------------------------------------------------- + *vim-markdown-edit-url-in* +Change how to open new files ~ + +By default when following a link the target file will be opened in your +current buffer. This behavior can change if you prefer using splits or tabs +by using the 'vim_markdown_edit_url_in' variable. Possible values are 'tab', +'vsplit', 'hsplit', 'current' opening in a new tab, vertical split, horizontal +split, and current buffer respectively. Defaults to current buffer if not +set: +> + let g:vim_markdown_edit_url_in = 'tab' +< =============================================================================== *vim-markdown-mappings* Mappings ~