Variable: filesets-cache-fill-content-hooks

filesets-cache-fill-content-hooks is an alias and customizable for filesets-cache-fill-content-hook, defined in filesets.el.gz.

This variable is obsolete since 24.3; use filesets-cache-fill-content-hook instead.

Value

nil

Documentation

Hook run when writing the contents of filesets' cache file.

The hook is called with the cache file as current buffer and the cursor at the last position. I.e. each hook has to make sure that the cursor is at the last position.

Possible uses: If you don't want to save filesets-data in your normal configuration file, you can add a something like this

(lambda ()
(insert (format "(setq-default filesets-data \\='%S)"
filesets-data))
(newline 2))

to this hook.

Don't forget to check out filesets-menu-ensure-use-cached.

Probably introduced at or before Emacs version 24.3.

Aliases

filesets-cache-fill-content-hooks (obsolete since 24.3)