|
@@ -13156,8 +13156,8 @@ blocks.
|
|
|
|
|
|
@lisp
|
|
|
(setq org-babel-default-header-args
|
|
|
-(cons '(:noweb . "yes")
|
|
|
-(assq-delete-all :noweb org-babel-default-header-args)))
|
|
|
+ (cons '(:noweb . "yes")
|
|
|
+ (assq-delete-all :noweb org-babel-default-header-args)))
|
|
|
@end lisp
|
|
|
|
|
|
@node Language-specific header arguments, Buffer-wide header arguments, System-wide header arguments, Using header arguments
|
|
@@ -13202,9 +13202,9 @@ blocks in the subtree rooted at the following heading:
|
|
|
|
|
|
@example
|
|
|
* outline header
|
|
|
-:PROPERTIES:
|
|
|
-:cache: yes
|
|
|
-:END:
|
|
|
+ :PROPERTIES:
|
|
|
+ :cache: yes
|
|
|
+ :END:
|
|
|
@end example
|
|
|
|
|
|
@kindex C-c C-x p
|
|
@@ -15402,7 +15402,7 @@ function:
|
|
|
|
|
|
@lisp
|
|
|
(defun yas/org-very-safe-expand ()
|
|
|
- (let ((yas/fallback-behavior 'return-nil)) (yas/expand)))
|
|
|
+ (let ((yas/fallback-behavior 'return-nil)) (yas/expand)))
|
|
|
@end lisp
|
|
|
|
|
|
Then, tell Org mode what to do with the new function:
|
|
@@ -15410,10 +15410,10 @@ Then, tell Org mode what to do with the new function:
|
|
|
@lisp
|
|
|
(add-hook 'org-mode-hook
|
|
|
(lambda ()
|
|
|
- (make-variable-buffer-local 'yas/trigger-key)
|
|
|
- (setq yas/trigger-key [tab])
|
|
|
- (add-to-list 'org-tab-first-hook 'yas/org-very-safe-expand)
|
|
|
- (define-key yas/keymap [tab] 'yas/next-field)))
|
|
|
+ (make-variable-buffer-local 'yas/trigger-key)
|
|
|
+ (setq yas/trigger-key [tab])
|
|
|
+ (add-to-list 'org-tab-first-hook 'yas/org-very-safe-expand)
|
|
|
+ (define-key yas/keymap [tab] 'yas/next-field)))
|
|
|
@end lisp
|
|
|
|
|
|
@item @file{windmove.el} by Hovav Shacham
|
|
@@ -16054,9 +16054,9 @@ The corresponding block writer function could look like this:
|
|
|
|
|
|
@lisp
|
|
|
(defun org-dblock-write:block-update-time (params)
|
|
|
- (let ((fmt (or (plist-get params :format) "%d. %m. %Y")))
|
|
|
- (insert "Last block update at: "
|
|
|
- (format-time-string fmt (current-time)))))
|
|
|
+ (let ((fmt (or (plist-get params :format) "%d. %m. %Y")))
|
|
|
+ (insert "Last block update at: "
|
|
|
+ (format-time-string fmt (current-time)))))
|
|
|
@end lisp
|
|
|
|
|
|
If you want to make sure that all dynamic blocks are always up-to-date,
|
|
@@ -16451,8 +16451,8 @@ Entries in comment trees and in archive trees will be ignored.
|
|
|
|
|
|
@lisp
|
|
|
(org-map-entries
|
|
|
- '(org-todo "UPCOMING")
|
|
|
- "+TOMORROW" 'file 'archive 'comment)
|
|
|
+ '(org-todo "UPCOMING")
|
|
|
+ "+TOMORROW" 'file 'archive 'comment)
|
|
|
@end lisp
|
|
|
|
|
|
The following example counts the number of entries with TODO keyword
|