From 9e58677093650f9b1c31a4b16f011845c18cd699 Mon Sep 17 00:00:00 2001 From: snailed Date: Mon, 15 Aug 2022 13:45:36 +0000 Subject: [PATCH 1/3] Fix bug with spaces in directory names (#1166) Sorry for making another merge request here, but I realized that the command would fail if the filepath contained spaces. Adding quotation marks fixes this issue --- .config/nvim/init.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 3945dcc..2bd166e 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -85,10 +85,10 @@ set noshowcmd nnoremap S :%s//g " Compile document, be it groff/LaTeX/markdown/etc. - map c :w! \| !compiler %:p + map c :w! \| !compiler "%:p" " Open corresponding .pdf/.html or preview - map p :!opout %:p + map p :!opout "%:p" " Runs a script that cleans out tex build files whenever I close out of a .tex file. autocmd VimLeave *.tex !texclear % From 9ff4910d4a422444a2d03886c408fd006406f411 Mon Sep 17 00:00:00 2001 From: appeasementPolitik <108810900+appeasementPolitik@users.noreply.github.com> Date: Mon, 15 Aug 2022 15:25:16 +0000 Subject: [PATCH 2/3] ~/.consaved becomes ~/.config/cronsaved (#1167) --- .local/bin/cron/crontog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/cron/crontog b/.local/bin/cron/crontog index 5aba5e6..c9a640f 100755 --- a/.local/bin/cron/crontog +++ b/.local/bin/cron/crontog @@ -1,6 +1,6 @@ #!/bin/sh # Toggles all cronjobs off/on. -# Stores disabled crontabs in ~/.consaved until restored. +# Stores disabled crontabs in ~/.config/cronsaved until restored. ([ -f "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved ] && crontab - < "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && rm "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && notify-send "🕓 Cronjobs re-enabled.") || ( crontab -l > "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && crontab -r && notify-send "🕓 Cronjobs saved and disabled.") From e864d6f9f2440735e046bfd7d85bab3f4740dac5 Mon Sep 17 00:00:00 2001 From: snailed Date: Tue, 16 Aug 2022 12:25:21 +0000 Subject: [PATCH 3/3] Texclear fix for directories with spaces (#1169) Add double quotes to prevent splitting directory names with spaces --- .local/bin/texclear | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/texclear b/.local/bin/texclear index f38f7be..4cdb02e 100755 --- a/.local/bin/texclear +++ b/.local/bin/texclear @@ -9,7 +9,7 @@ case "$1" in dir=$(dirname "$file") base="${file%.*}" find "$dir" -maxdepth 1 -type f -regextype gnu-awk -regex "^$base\\.(4tc|xref|tmp|pyc|pyg|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 - rm -rdf "$dir/_minted-$(basename -- $base)" + rm -rdf "$dir/_minted-$(basename -- "$base")" ;; *) printf "Give .tex file as argument.\\n" ;; esac