Makes vim compile neomutt files as markdown

This commit is contained in:
Jonathan Hodgson 2019-06-05 17:53:22 +01:00
parent caeebf119a
commit c249f1076f
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ case "$file" in
*\.tex|*\.latex) textype "$file" ;;
#*\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
#*\.md) pandoc "$file" -o "$base".pdf ;;
*\.md) mdtype "$file" "$2" ;;
/tmp/neomutt*|*\.md) mdtype "$file" "$2" ;;
*config.h) make && sudo make install ;;
*\.c) cc "$file" -o "$base" && "$base" ;;
*\.py) python "$file" ;;

View file

@ -5,7 +5,7 @@
basename="${1%.*}"
case "$1" in
*.tex|*.latex|*.md|*.rmd|*.ms|*.me|*.mom) setsid "$READER" "$basename".pdf >/dev/null 2>&1 & ;;
/tmp/neomutt*|*.tex|*.latex|*.md|*.rmd|*.ms|*.me|*.mom) setsid "$READER" "$basename".pdf >/dev/null 2>&1 & ;;
*.html) setsid "$TRUEBROWSER" --new-window "$basename".html >/dev/null 2>&1 & ;;
*.sent) setsid sent "$1" >/dev/null 2>&1 & ;;
esac