dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit cc08a516cb5739668f5e9f3d9580461404a18ade
parent 1ce232a4e50563c1cd14ac4143e4cf1825b82df1
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Thu, 28 Nov 2019 11:37:12 +0100

Continuous compilation requires implicit open

Diffstat:
M.local/bin/compile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.local/bin/compile b/.local/bin/compile @@ -48,7 +48,7 @@ handle_target() { preview="-pv" fi if [ "$continuous" = 1 ]; then - latexmk -pvc $preview -pdf -f "$1" + latexmk -pvc -pdf -f "$1" else latexmk -pdf $preview -f "$1" fi;;