Variable: xwidget-webkit-cookie-file

xwidget-webkit-cookie-file is a customizable variable defined in xwidget.el.gz.

Value

nil

Documentation

The name of the file where xwidget-webkit-browse-url will store cookies.

They will be stored as plain text in Mozilla "cookies.txt" format. If nil, do not store cookies. You must kill all xwidget-webkit buffers for this setting to take effect after setting it to nil.

This variable was added, or its default value changed, in Emacs 29.1.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defcustom xwidget-webkit-cookie-file nil
  "The name of the file where `xwidget-webkit-browse-url' will store cookies.
They will be stored as plain text in Mozilla \"cookies.txt\"
format.  If nil, do not store cookies.  You must kill all xwidget-webkit
buffers for this setting to take effect after setting it to nil."
  :type '(choice (const :tag "Do not store cookies" nil) file)
  :version "29.1")