From a26e45afea561659fd0f1acca2c1d95e27b5f7ad Mon Sep 17 00:00:00 2001 From: TiynGER Date: Tue, 3 Nov 2020 09:53:03 +0100 Subject: [PATCH] nvim: indent.log gets cleared after closing tex-files indent.log is a log written, when we reformat a tex file. it is of no use and can be deleted as soon as we close nvim. --- .local/bin/tools/nvim/texclear | 1 + 1 file changed, 1 insertion(+) diff --git a/.local/bin/tools/nvim/texclear b/.local/bin/tools/nvim/texclear index e7a0516..771add6 100755 --- a/.local/bin/tools/nvim/texclear +++ b/.local/bin/tools/nvim/texclear @@ -9,6 +9,7 @@ case "$1" in file=$(readlink -f "$1") dir=$(dirname "$file") base="${file%.*}" + if [ -f "$dir/indent.log" ]; then rm "$dir/indent.log"; fi find "$dir" -maxdepth 1 -type f -regextype gnu-awk -regex "^$base\\.(4tc|xref|tmp|pyc|pyo|fls|vrb|fdb_latexmk|bak|swp|aux|log|synctex\\(busy\\)|lof|lot|maf|idx|mtc|mtc0|nav|out|snm|toc|bcf|run\\.xml|synctex\\.gz|blg|bbl)" -delete ;; *) printf "Give .tex file as argument.\\n" ;; esac