Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

19 řádky
530 B

  1. ;;-*-mode: emacs-lisp; coding: utf-8;-*-
  2. ;; Copyright: 2016 Mitchell Tishmack
  3. ;; Tangle an org mode file with babel using emacs.
  4. (let ((default-directory "~/.emacs.d"))
  5. (normal-top-level-add-subdirs-to-load-path))
  6. (load-file (if (getenv "OPTIONS")
  7. (concat (concat "./" (getenv "OPTIONS")) ".el")
  8. "./options.el"))
  9. (require 'org-install)
  10. (require 'org)
  11. ;; Iterate through all the files given and tangle them
  12. (dolist
  13. (file command-line-args-left)
  14. (princ file)
  15. (org-babel-tangle-file file))