writing: Add papis configuration
This commit is contained in:
parent
9f5bca4a62
commit
c306e30219
4 changed files with 60 additions and 0 deletions
16
writing/.config/papis/scripts/papis-reload
Executable file
16
writing/.config/papis/scripts/papis-reload
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env python
|
||||
# papis-short-help: Manually rebuild cache for all libraries
|
||||
#
|
||||
# This tiny script updates all libraries by rebuilding their caches.
|
||||
# Useful to invoke after manual edits in one of your library folders
|
||||
# so you don't have to think about which library you changed stuff in
|
||||
# and just get everything updated. Might take a little time but
|
||||
# should generally be a quick process (even with 1000s of entries).
|
||||
|
||||
import papis.api
|
||||
|
||||
libs = papis.api.get_libraries()
|
||||
|
||||
for lib in libs:
|
||||
papis.api.clear_lib_cache(lib)
|
||||
papis.api.get_all_documents_in_lib()
|
||||
Loading…
Add table
Add a link
Reference in a new issue