mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 21:03:12 +00:00
Correct pandoc data directory path in completions
Incorrectly assumed that pandoc uses XDG_CONFIG_HOME, it turns out the path is hard-coded as $HOME/.pandoc unless explicitly otherwise specified in the command-line.
This commit is contained in:
parent
460bc00698
commit
6b7501d715
1 changed files with 1 additions and 4 deletions
|
@ -5,10 +5,7 @@
|
|||
set -l informats commonmark creole docbook docx epub gfm haddock html jats json latex markdown markdown_github markdown_mmd markdown_phpextra markdown_strict mediawiki muse native odt opml org rst t2t textile tikiwiki twiki vimwiki
|
||||
set -l outformats asciidoc beamer commonmark context docbook docbook4 docbook5 docx dokuwiki dzslides epub epub2 epub3 fb2 gfm haddock html html4 html5 icml jats json latex man markdown markdown_github markdown_mmd markdown_phpextra markdown_strict mediawiki ms muse native odt opendocument opml org plain pptx revealjs rst rtf s5 slideous slidy tei texinfo textile zimwiki
|
||||
set -l highlight_styles pygments tango espresso zenburn kate monochrome breezedark haddock
|
||||
|
||||
# Instead of hardcoding $HOME/.config/... here or doing the $XDG_CONFIG_HOME
|
||||
# song and dance, (ab)use what fish already knows about the config directory
|
||||
set -l datadir (readlink -f $__fish_config_dir/../.pandoc)
|
||||
set -l datadir $HOME/.pandoc
|
||||
|
||||
# Only suggest installed engines
|
||||
set -l pdfengines
|
||||
|
|
Loading…
Reference in a new issue