2021-03-11 07:42:00 -07:00
|
|
|
#+TITLE: Completions: man
|
2021-03-11 08:40:09 -07:00
|
|
|
|
|
|
|
** Leven 1
|
|
|
|
|
|
|
|
Completions for man pages are found via:
|
|
|
|
|
|
|
|
#+begin_src shell
|
2021-03-19 16:12:01 -06:00
|
|
|
ls /usr/{share,X11R6,local}/man/man[1-9] | sort -u > $MAN_CACHE
|
2021-03-11 08:40:09 -07:00
|
|
|
#+end_src
|
|
|
|
|
|
|
|
Currently the cache is never re-created. Operating without a cache causes
|
|
|
|
significant load times. If one requires the cache to be refreshed they can run
|
|
|
|
the following in ~.xsession~ or similar:
|
|
|
|
|
|
|
|
#+begin_src shell
|
|
|
|
rm -f ${LOAD_PATH}/cache/man
|
|
|
|
#+end_src
|