Guest User

Untitled

a guest
May 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. (defun jay/count-heading-lines ()
  2. "Count lines in this heading and append to line as a tag"
  3. (interactive)
  4. (let (here there)
  5. (save-excursion
  6. (setq here (line-number-at-pos (point)))
  7. (save-excursion
  8. (org-forward-heading-same-level 1)
  9. (setq there (line-number-at-pos (point)))))
  10. (org-set-tags-to (number-to-string (- there here 1)))))
Add Comment
Please, Sign In to add comment