From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Dumais Subject: Detangle - How to get it to work Date: Mon, 5 Aug 2013 13:36:09 -0600 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34165) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V6QZj-0005NF-Lc for emacs-orgmode@gnu.org; Mon, 05 Aug 2013 15:36:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V6QZf-0002o0-SQ for emacs-orgmode@gnu.org; Mon, 05 Aug 2013 15:36:15 -0400 Received: from mail-la0-x22e.google.com ([2a00:1450:4010:c03::22e]:51613) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V6QZf-0002nn-IH for emacs-orgmode@gnu.org; Mon, 05 Aug 2013 15:36:11 -0400 Received: by mail-la0-f46.google.com with SMTP id eh20so2392365lab.19 for ; Mon, 05 Aug 2013 12:36:10 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, I think detangle is a must for collaborative work. I think I have read the instructions correctly, yet I can't seem to get it to work. Here is a minimal test: Org file named test.org: #+PROPERTY: comments link * Some source #+begin_src clojure :tangle yes (defn hello [] (println "hello")) #+end_src This produces the following file named test.clj upon tangling: ;; [[file:~/test.org::*Some%20source][Some\ source:1]] (defn hello [] (println "hello")) ;; Some\ source:1 ends here When I add a line to the file: (def x 1) and save, then do M-x org-babel-detangle, it says: Detangled 0 code blocks Is there something I'm missing? Thanks!