prosseek
prosseek

Reputation: 190769

How to control the variable in emacs?

The page 49 of org mode manual has the following comment.

"To limit tag inheritance to specific tags, or to turn it off entirely, use the variable org-use-tag-iheritance and org-tags-exclude-from-inheritance." 

It seems that I should set those variables to 1 or t inside emacs. Is this correct? If so, how can I do that?

Upvotes: 0

Views: 143

Answers (2)

phils
phils

Reputation: 73256

To configure these permanently, you can use (setq variable value) in your .emacs file. Alternatively, as these variables are both defined with defcustom, you can also use:

M-x customize-variable org-use-tag-iheritance
and M-x customize-variable org-tags-exclude-from-inheritance

to configure them either temporarily or permanently.

Upvotes: 2

phimuemue
phimuemue

Reputation: 35983

M-x set-variable RET var RET value (from http://www.delorie.com/gnu/docs/emacs/emacs_478.html)

Upvotes: 5

Related Questions