diff options
author | Teddy Wing | 2019-06-05 20:32:49 +0200 |
---|---|---|
committer | Teddy Wing | 2019-06-05 20:32:49 +0200 |
commit | c0a8a7cee99894fd24144cf44f3498e6b50b9958 (patch) | |
tree | ab40596f451622d1dab588ea7cf1c9073d800cd1 /bundle/jira-text-formatting-notation-help/plugin | |
parent | 0254acfd71877910ce19ec3404cd8e25c1b13e6b (diff) | |
download | dotvim-c0a8a7cee99894fd24144cf44f3498e6b50b9958.tar.bz2 |
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.
Diffstat (limited to 'bundle/jira-text-formatting-notation-help/plugin')
-rw-r--r-- | bundle/jira-text-formatting-notation-help/plugin/jira_text_formatting_notation_help.vim | 7 |
1 files changed, 7 insertions, 0 deletions
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() |