Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- ;;-*-mode: emacs-lisp; coding: utf-8;-*-
- ;; Copyright: 2016 Mitchell Tishmack
- ;; Tangle an org mode file with babel using emacs.
- (let ((default-directory "~/.emacs.d"))
- (normal-top-level-add-subdirs-to-load-path))
-
- (load-file (if (getenv "OPTIONS")
- (concat (concat "./" (getenv "OPTIONS")) ".el")
- "./options.el"))
-
- (require 'org-install)
- (require 'org)
-
- ;; Iterate through all the files given and tangle them
- (dolist
- (file command-line-args-left)
- (princ file)
- (org-babel-tangle-file file))
|