From c0a8a7cee99894fd24144cf44f3498e6b50b9958 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 5 Jun 2019 20:32:49 +0200 Subject: Add 'jira-text-formatting-notation-help' plugin Plugin that opens a window containing the text formatting guide for Jira. The guide is taken from: $ w3m -dump 'https://jira.atlassian.com/secure/WikiRendererHelpAction.jspa?section=all' Since I'm using the go-jira CLI, I need the reference for any special formatting I want to use. I figured it would help to have that information right next to my Vim buffer instead of having to switch to a browser and open the web page. --- .../plugin/jira_text_formatting_notation_help.vim | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 bundle/jira-text-formatting-notation-help/plugin/jira_text_formatting_notation_help.vim (limited to 'bundle/jira-text-formatting-notation-help/plugin') diff --git a/bundle/jira-text-formatting-notation-help/plugin/jira_text_formatting_notation_help.vim b/bundle/jira-text-formatting-notation-help/plugin/jira_text_formatting_notation_help.vim new file mode 100644 index 0000000..e2037e5 --- /dev/null +++ b/bundle/jira-text-formatting-notation-help/plugin/jira_text_formatting_notation_help.vim @@ -0,0 +1,7 @@ +if exists('g:loaded_jira_text_formatting_notation_help') + finish +endif +let g:loaded_jira_text_formatting_notation_help = 1 + +command! JiraTextFormattingNotationHelp + \ :call jira_text_formatting_notation_help#Open() -- cgit v1.2.3