pandoc-vimhl 0.1.2.1 → 0.1.2.2
raw patch · 3 files changed
+3/−2 lines, 3 files
Files
- Changelog.md +1/−1
- pandoc-vimhl.cabal +1/−1
- vimhl.hs +1/−0
Changelog.md view
@@ -1,4 +1,4 @@-### 0.1.2.1+### 0.1.2.2 - Added Cabal flag *debug* (off by default) for printing how vim runs to *stderr*.
pandoc-vimhl.cabal view
@@ -1,5 +1,5 @@ name: pandoc-vimhl-version: 0.1.2.1+version: 0.1.2.2 synopsis: Pandoc filter for native Vim code highlighting description: Pandoc filter for native Vim code highlighting in HTML and PDF documents. Requires Vim and plugin
vimhl.hs view
@@ -77,6 +77,7 @@ (_, _, _, handle) <- createProcess (shell vimcmd) {std_in = UseHandle hin, std_out = UseHandle hout} r <- waitForProcess handle+ unless (r == ExitSuccess) $ exitWith r #ifdef DEBUG hPutStrLn stderr "done" #endif