Variable: org-clock-into-drawer

org-clock-into-drawer is a customizable variable defined in org-clock.el.gz.

Value

t

Documentation

Non-nil when clocking info should be wrapped into a drawer.

When non-nil, clocking info will be inserted into the same drawer as log notes (see variable org-log-into-drawer(var)/org-log-into-drawer(fun)), if it exists, or "LOGBOOK" otherwise. If necessary, the drawer will be created.

When an integer, the drawer is created only when the number of clocking entries in an item reaches or exceeds this value.

When a string, it becomes the name of the drawer, ignoring the log notes drawer altogether.

Do not check directly this variable in a Lisp program. Call function org-clock-into-drawer(var)/org-clock-into-drawer(fun) instead.

This variable was added, or its default value changed, in Org version
8.3.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defcustom org-clock-into-drawer t
  "Non-nil when clocking info should be wrapped into a drawer.

When non-nil, clocking info will be inserted into the same drawer
as log notes (see variable `org-log-into-drawer'), if it exists,
or \"LOGBOOK\" otherwise.  If necessary, the drawer will be
created.

When an integer, the drawer is created only when the number of
clocking entries in an item reaches or exceeds this value.

When a string, it becomes the name of the drawer, ignoring the
log notes drawer altogether.

Do not check directly this variable in a Lisp program.  Call
function `org-clock-into-drawer' instead."
  :group 'org-todo
  :group 'org-clock
  :version "26.1"
  :package-version '(Org . "8.3")
  :type '(choice
	  (const :tag "Always" t)
	  (const :tag "Only when drawer exists" nil)
	  (integer :tag "When at least N clock entries")
	  (const :tag "Into LOGBOOK drawer" "LOGBOOK")
	  (string :tag "Into Drawer named...")))