aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--doom.d/modules/literate.org11
2 files changed, 11 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index bef14f8..14ce90a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
TAGS
doom.d/config.el
-doom.d/modules/*.el
+doom.d/bin/*.el
mpd/*
diff --git a/doom.d/modules/literate.org b/doom.d/modules/literate.org
index 5b8a640..1544c1b 100644
--- a/doom.d/modules/literate.org
+++ b/doom.d/modules/literate.org
@@ -37,6 +37,15 @@ literate module of doom.
(warn (format "Problem with tanging %S to %S" SRC DEST)))
(kill-buffer output))))))
#+END_SRC
+* Destination for parser
+Generate the destination for a literate config org file to parse to, in this
+case the bin folder in the private directory
+#+BEGIN_SRC elisp
+(defun oreodave/literate/destination(SRC)
+ (replace-regexp-in-string ".*/\\(\\w+\\).org" (expand-file-name (concat oreodave/literate/bin-dir "\\1.el")) SRC))
+#+END_SRC
+This is not fitted onto the parser because the parser could be fitted to
+multiple /differing/ outputs easily if it isn't specified a destination.
* Procedure for all files
We need a procedure that parses all the org files in the doom-private-dir and
modules directory into Emacs lisp files, using the parser function we've made.
@@ -48,7 +57,7 @@ Assume all org files in the private directory contribute to the config.
(let ((files (directory-files-recursively "~/.doom.d/" ".org")))
(dolist (file files)
(message "Compiling and parsing %s" file)
- (oreodave/literate/tangle file (replace-regexp-in-string ".org" ".el" file)))))
+ (oreodave/literate/tangle file (oreodave/literate/destination file)))))
#+END_SRC
* Hook on save
Now we need to make a hook that, when the current buffer is an org file in the