How to call Emacs Lisp functions in Emacs org-mode? -
when have elisp function
(defun hello (param) ... )
how can run (hello abc.txt)
org mode? learned how link http [[mine:...]]
tag. expect similar way, [[lisp:hello(abc.txt)]]
or something.
added
as post explains, have (runmate)
, (runeditor (something))
elisp command.
it works fine alt-x runmate
in emacs, when run [[lisp:(runmate)]]
, following dialog box.
solved
it should have used [[elisp:(runmate)]]
.
you're close. need [[elisp:(hello "abc.txt")]]
[i'm assuming abc.txt string]
Comments
Post a Comment