[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Org-mode documentation within Emacs
From: |
François Pinard |
Subject: |
Re: [O] Org-mode documentation within Emacs |
Date: |
Tue, 23 Apr 2013 11:24:02 -0400 |
User-agent: |
Gnus/5.130006 (Ma Gnus v0.6) Emacs/23.4 (gnu/linux) |
Alan Schmitt <address@hidden> writes:
> Karl Voit writes:
>> "C-h i" was my first guess but it does not list Org-mode at all :-(
> This is what I have in my configuration files:
> (add-to-list 'Info-directory-list "/Users/schmitta/.emacs.d/org/info")
Hi, Org people.
Just in case useful, I added a command to Emacs just for listing the Org
manual. Easy for me to remember: "om" == "Org manual". Here is my
little code, adapt to taste!
(defvar fp-org-distribution "~/emacs/_/org-mode")
; [...]
(defun fp-org-info ()
(interactive)
(require 'info)
(let ((Info-directory-list (cons (concat fp-org-distribution "/doc")
Info-directory-list)))
(org-info)))
; [...]
(global-set-key "\C-com" 'fp-org-info)
François
- Re: [O] Org-mode documentation within Emacs, (continued)
- Re: [O] Org-mode documentation within Emacs, Sebastien Vauban, 2013/04/23
- Re: [O] Org-mode documentation within Emacs, Alan Schmitt, 2013/04/24
- Re: [O] Org-mode documentation within Emacs, Xiao-Yong Jin, 2013/04/24
- Re: [O] Org-mode documentation within Emacs, Alan Schmitt, 2013/04/24
- Re: [O] Org-mode documentation within Emacs, Eric S Fraga, 2013/04/24
- Re: [O] Org-mode documentation within Emacs, Suvayu Ali, 2013/04/24
Re: [O] Org-mode documentation within Emacs,
François Pinard <=
Re: [O] Org-mode documentation within Emacs, Suvayu Ali, 2013/04/23
Re: [O] Org-mode documentation within Emacs, Achim Gratz, 2013/04/23