1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-09 19:11:15 +02:00

added shell and vim shortcuts for octave

This commit is contained in:
TiynGER
2020-11-01 16:33:10 +01:00
parent 85298c3b9e
commit 901c6856af
2 changed files with 5 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ case "$file" in
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf > "$base".pdf ;;
*\.rmd) echo "require(rmarkdown); render('$file')" | R -q --vanilla ;;
*\.tex) textype "$file" ;;
*\.m) octave --no-window-system "$file" ;;
*\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
*config.h) sudo make install ;;
*\.c) if [ -f Makefile ]; then make run; else cc "$file" -o "$base" && "$base"; fi ;;