Skip to content
This repository has been archived by the owner on Jun 1, 2020. It is now read-only.

Commit

Permalink
Ahora el refile es el el archivo actual, en las agendas, y en los org
Browse files Browse the repository at this point in the history
buffers abiertos
  • Loading branch information
nanounanue committed Apr 26, 2020
1 parent 7ae40eb commit 8f250f9
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions emacs/emacs-org-mode.org
Original file line number Diff line number Diff line change
Expand Up @@ -463,13 +463,12 @@ Org Capture Templates are explained [[http://orgmode.org/manual/Capture-template
(use-feature org
:demand t
:config
(setq org-projects-files (directory-files-recursively nanounanue/projects-directory "\\.org$"))
(setq org-directory-files (directory-files-recursively org-directory "\\.org$"))

;; Targets include this file and any file contributing to the agenda - up to 9 levels deep
(setq org-refile-targets (quote ((nil :maxlevel . 9)
(org-directory-files :maxlevel . 9)
(org-agenda-files :maxlevel . 9))))
;; El archivo actual a un nivel de 9, las agendas y los archivos en abiertos
(setq org-refile-targets '((nil :maxlevel . 9)
(org-agenda-files :maxlevel . 3)
(org-buffer-list :maxlevel . 3)))


;; Use full outline paths for refile targets
(setq org-refile-use-outline-path t)
Expand Down

0 comments on commit 8f250f9

Please sign in to comment.