From 43ae4ea7d4b47ff86540351f9a9de82b2427d160 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Wed, 11 Jun 2025 11:03:42 +0200 Subject: [PATCH] papis: Fix config setting including comment Comments apparently are only comments at the beginning of a line in the config file for papis. Noted. --- writing/papis/config/papis/config | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/writing/papis/config/papis/config b/writing/papis/config/papis/config index 2729f4e..2852fab 100644 --- a/writing/papis/config/papis/config +++ b/writing/papis/config/papis/config @@ -12,7 +12,8 @@ file-browser = vifm add-edit = True # ref-format = {doc[author_list][0][family]}{doc[year]} ref-format = bbt: -add-folder-name = {doc[author_list][0][family]}-{doc[title]} # NOTE: Has issues if no author list +# NOTE: Has issues if no author list +add-folder-name = {doc[author_list][0][family]}-{doc[title]} add-file-name = {doc[author_list][0][family]}{doc[year]} header-format-file = ~/.config/papis/headerformat extra-bibtex-keys = ["tags", "readstatus", "priority"] @@ -72,3 +73,4 @@ tags = {"red": "important", "green": "extra", "blue": "toread"} full-year = True title-words = 2 title-chars = 20 +title-case = lower