Re: [O] Best practice for providing an Org-based application?

2019-09-18 Thread Thorsten Jolitz
d, concert rehearsals etc in Org-mode, and to be able to easily transpose songs (its ob-lilypond) for Bb or Eb instruments or so. OTOH isn't managing a choir or band quite similar to managing a project, and thus (ob-)taskjuggler would be a very helpful tool here? -- cheers, Thorsten

Re: [O] [Feature request] Repeatable tasks workday

2019-03-16 Thread Thorsten Jolitz
holydays, and then call the functionality with a specific calendar. Even within Germany e.g. the states have different holydays, so an enterprise with plants in different states needs to create different calenders. -- cheers, Thorsten

Re: [O] [SOLVED]

2018-03-09 Thread Thorsten Jolitz
llows this line-- >> | Uwe Brauer writes: ...[] >> ` > > > I found the culprit > > (setq message-yank-prefix " > ") > > No idea why I had this, but may be it is ages there. Just moving it out > my init files and everything worked as expected. Thanks Ok, good ... ;-) -- cheers, Thorsten

Re: [O] how do you compose mails in Gnus with org-mode

2018-03-09 Thread Thorsten Jolitz
llows this line-- >> | Uwe Brauer writes: ...[] >> ` > > I almost see the same but indented since I user supercite. Isn't that the problem already? In an org file, this: , | * headline | * headline | hello ` has only one headline, indentation for the * is not allowed. -- cheers, Thorsten

Re: [O] how do you compose mails in Gnus with org-mode

2018-03-08 Thread Thorsten Jolitz
Uwe Brauer writes: >>>> "Thorsten" == Thorsten Jolitz writes: > >> A good start would be to try outshine with emacs-lisp mode. >> With your outshine config done, write a file like foo.el > >> , >> | ;;

Re: [O] how do you compose mails in Gnus with org-mode

2018-03-07 Thread Thorsten Jolitz
s/ | ;; :part-of-emacs: no | ;; :author: Jonathan Leech-Pepin | ;; :author_email: jonathan.leechpepin AT gmail DOT com | ;; :keywords: emacs org-mode export | ;; :END: ` This is the README , | outorg-export | = | | Automated exporting of sections of source files to any format org can export to. ` -- cheers, Thorsten

Re: [O] how do you compose mails in Gnus with org-mode

2018-03-06 Thread Thorsten Jolitz
Uwe Brauer writes: >>>> "Thorsten" == Thorsten Jolitz writes: > >> Uwe Brauer writes: >>>>>> "Thorsten" == Thorsten Jolitz writes: >>> >>> > Joseph Vidal-Rosset writes: >>> > Hallo >>> &

Re: [O] how do you compose mails in Gnus with org-mode

2018-03-06 Thread Thorsten Jolitz
Thorsten Jolitz writes: > Uwe Brauer writes: > >>>>> "Thorsten" == Thorsten Jolitz writes: >> >>> Joseph Vidal-Rosset writes: >>> Hallo >> >>>> I know that the subject of my email exists already. >>

Re: [O] how do you compose mails in Gnus with org-mode

2018-03-06 Thread Thorsten Jolitz
Uwe Brauer writes: >>>> "Thorsten" == Thorsten Jolitz writes: > >> Joseph Vidal-Rosset writes: >> Hallo > >>> I know that the subject of my email exists already. >>> > [[https://lists.gnu.org/archive/html/emacs-orgm

Re: [O] [Error]

2018-03-06 Thread Thorsten Jolitz
Uwe Brauer writes: >>>> "Thorsten" == Thorsten Jolitz writes: > >> Joseph Vidal-Rosset writes: >> Hallo > >>> I know that the subject of my email exists already. >>> > [[https://lists.gnu.org/archive/html/emacs-orgm

Re: [O] Feature suggestion and code review request: org-babel-cycle-src-block-header

2018-03-04 Thread Thorsten Jolitz
> Professor John Kitchin > Doherty Hall A207F > Department of Chemical Engineering > Carnegie Mellon University > Pittsburgh, PA 15213 > 412-268-7803 > @johnkitchin > http://kitchingroup.cheme.cmu.edu > > On Sat, Mar 3, 2018 at 12:26 PM, Thorsten

Re: [O] [FYI] Programming with org-dp (by example)

2018-03-04 Thread Thorsten Jolitz
Thorsten Jolitz writes: PS Ups ... a few little bugs in the code, here is version 2 #+BEGIN_SRC emacs-lisp (defconst tj/radio-rgxp "^#\\+attr_org:[[:space:]]+:radio") (defconst tj/radio-temp "temp") (defconst tj/radio-wind "wind") (defvar tj/radio-rw '(&qu

[O] [FYI] Programming with org-dp (by example)

2018-03-04 Thread Thorsten Jolitz
-property itm :checkbox 'on)) ((and (string-equal label "yellow") (or (member temp tj/radio-temp-yellow) (member temp tj/radio-wind-yellow))) (org-element-put-property itm :checkbox 'on)) ((and (string-equal label "green") (or (member temp tj/radio-temp-green) (member temp tj/radio-wind-green))) (org-element-put-property itm :checkbox 'on))) itm)) #+END_SRC -- cheers, Thorsten

Re: [O] Feature suggestion and code review request: org-babel-cycle-src-block-header

2018-03-03 Thread Thorsten Jolitz
Thorsten Jolitz writes: PS One more to show that one can not only easily modify a certain org element, but that its just as easy to convert it to another type of org element. Use this (call M-x tj/obch) #+BEGIN_SRC emacs-lisp (defun tj/obch () "docstring" (interactive) (org

Re: [O] Feature suggestion and code review request: org-babel-cycle-src-block-header

2018-03-03 Thread Thorsten Jolitz
; (insert new-header-string) > (unless we-were-before-replacement-zone > (incf default-position-to-return-to (length new-header-string))) > (goto-char (if (<= fallback-position > default-position-to-return-to > (+ fallback-position (length new-header-string))) > fallback-position > default-position-to-return-to) > > ;; example for mailing list > ;; Common Lisp assumed! > (defun akater/org-babel-cycle-header nil > (interactive) > (org-babel-cycle-src-block-header-string > '("lisp :tangle no :results none" ;; type 2 above > "lisp :tangle yes :results none" ;; type 3 above > "lisp :results type verbatim" ;; type 1 above > ))) > #+end_src > > Ideally, I envision something along these lines (some specific > choices > below don't really make sense): > #+begin_src emacs-lisp > (defcustom org-babel-standard-header-sequences-alist > '((development-setup-1 > (lisp > (((:tangle . "no") > (:results . "none")) > ((:tangle . "yes") > (:results . "none")) > ((:results . "type verbatim" > (python > (((:tangle . "no") > (:results . "none")) > ((:tangle . "yes") > (:results . "none")) > ((:results . "type output" > ) > (development-setup-2 > (C > (((:tangle . "no") > (:results . "none")) > ((:tangle . "yes") > (:results . "raw" > (julia > (((:tangle . "no") > (:results . "none")) > ((:tangle . "yes") > (:results . "none"))) > #+end_src > > -- cheers, Thorsten

Re: [O] question on org-element-interpret-data and when it works

2018-03-03 Thread Thorsten Jolitz
Nicolas Goaziou writes: > Thorsten Jolitz writes: > >> You used the word 'discrepancy', > > True. I inferred it from > > (funny enough, some org elements have 'value' as their content, others > 'content'). > > which, IMO, sounds

Re: [O] Exploring picolisp

2018-03-03 Thread Thorsten Jolitz
babel-picolisp-eoe | : -> 7 | : -> org-babel-picolisp-eoe | : (setq X2 (+ X1 1)) | 'org-babel-picolisp-eoe | -> 8 | : -> org-babel-picolisp-eoe | : (de foo1 (X) (+ X 2)) | 'org-babel-picolisp-eoe | -> foo1 | : -> org-babel-picolisp-eoe | : (setq X3 (foo1 8)) | 'org-babel-picolisp-eoe | -> 10 | : -> org-babel-picolisp-eoe | : ` Hope that helps -- cheers, Thorsten

Re: [O] question on org-element-interpret-data and when it works

2018-03-03 Thread Thorsten Jolitz
Nicolas Goaziou writes: > Thorsten Jolitz writes: > >> I have defined these two constants in org-dp.el to work around this >> discrepancy (and to know which elements do not have interpreted content >> at all): >> >> , >> | (defconst org-dp-no-con

Re: [O] question on org-element-interpret-data and when it works

2018-03-03 Thread Thorsten Jolitz
Nicolas Goaziou writes: Hello, > Thorsten Jolitz writes: > >> (funny enough, some org elements have 'value' as their content, others >> 'content'). > > Could you point out where there is such discrepancy in "org-element.el"? I have define

Re: [O] how do you compose mails in Gnus with org-mode

2018-03-03 Thread Thorsten Jolitz
[...] ` and tells you how to exit again: M-# -- cheers, Thorsten

Re: [O] question on org-element-interpret-data and when it works

2018-03-03 Thread Thorsten Jolitz
, | (org-dp-rewire 'example-block nil t ;cont ins | nil ;aff | nil ;elem | :switches '(lambda (old elem) ) | :preserve-indent '(lambda (old elem) ) | :value '(lambda (old elem) ) ` Again, check the docstring of org-dp-rewire for more info on its args. I hope this helps already, feel free to ask any further questions (maybe put me in Cc since I'm not a very frecuent visitor of the list). If I find time and motivation I might look at your specific example/use case, but I cannot promise that. -- cheers, Thorsten

Re: [O] function for inserting a block

2017-12-10 Thread Thorsten Jolitz
x27; utility commands without much programming. Hope this is not off-topic. -- cheers, Thorsten

Re: [O] [RFC] Remove Org Struct mode

2017-09-09 Thread Thorsten Jolitz
won't conflict with major modes. -- cheers, Thorsten

[O] Show all timestamps in agenda custom command

2017-05-24 Thread Thorsten Grothe
uot;s" "Schule" todo "SCHULE" ((org-agenda-overriding-header "Schule") (org-agenda-prefix-format "○ %t%s") (org-agenda-entry-types '(:scheduled)) )) ... what can I do to solve this problem? Regards Thorsten Grothe

Re: [O] manipulate org tables using emacs-lisp

2016-10-01 Thread Thorsten Jolitz
Alan Schmitt writes: Hi Alan, > On 2016-09-30 22:52, Thorsten Jolitz writes: > >>> Are there functions for manipulating org-tables using emacs-lisp? More >>> precisely, I would like to refer to a table by its name, read some cells >>> (either by position or

Re: [O] manipulate org tables using emacs-lisp

2016-09-30 Thread Thorsten Jolitz
tab | | 1 | 2 | => (("my" "tab") ("1" "2")) -- cheers, Thorsten

Re: [O] Count words under subtrees

2016-09-27 Thread Thorsten Jolitz
.2 (info "(emacs)Echo Area") [#4] | 516:;; *** 1.3 (info "(emacs)Mode Line") [#4] | 521:;; *** 1.4 (info "(emacs)Menu Bar") [#2] ` -- cheers, Thorsten

Re: [O] iOrg

2016-09-16 Thread Thorsten Jolitz
Adam Porter writes: Hi Adam, > Thorsten Jolitz writes: > >> [WARNING: this is an extremely long post with lots of boxquotes that >> might turn out unreadable, you might want to consider this as spam >> and just ignore it] > > Hi Thorsten, > > I guess I h

Re: [O] iOrg

2016-09-14 Thread Thorsten Jolitz
Philip Hudson writes: [WARNING: this is an extremely long post with lots of boxquotes that might turn out unreadable, you might want to consider this as spam and just ignore it] Hi Philip, > On 12 September 2016 at 23:10, Nick Dokos wrote: >> Thorsten Jolitz writes: >> >

Re: [O] Programmatically handling org files

2016-09-12 Thread Thorsten Jolitz
ff (actually creating and inserting the new/modified element in text form) is left to the interpreters (from org-element.el). You just declare what you want and don't worry anymore how it is done (=> dp stands for declarative programming, in this context at least ;-) -- cheers, Thorsten

Re: [O] Multipart/Alternative reply to email?

2016-03-26 Thread Thorsten Jolitz
Uwe Brauer writes: >>>> "Thorsten" == Thorsten Jolitz writes: >> Peter Davis writes: >>> I realize this would require somehow converting the original message >>> to org-mode markup, and that seems very tricky. I just wondered

Re: [O] Multipart/Alternative reply to email?

2016-03-25 Thread Thorsten Jolitz
| | (outorg-copy-edits-and-exit) | | Replace code-buffer content with (converted) edit-buffer content and | kill edit-buffer ` -- cheers, Thorsten

Re: [O] Treat node or subtree as source block?

2016-03-05 Thread Thorsten Jolitz
t #+END_SRC #+results: : tj/node-to-src-block Calling this function with point on the following headline appends the (working) src-block that results from transforming the headline: * Hello World :elisp:results: (print "Hello World") #+BEGIN_SRC elisp :exports results (print "Hello World") #+END_SRC -- cheers, Thorsten

Re: [O] What does the _ in `(defun org-element-section-parser (_) ...)' stands for?

2016-02-11 Thread Thorsten Jolitz
John Kitchin writes: > On Wed, Feb 10, 2016 at 3:13 PM, Thorsten Jolitz > wrote: > > #+BEGIN_SRC emacs-lisp > (defun my-foo (_) > "Hello World. > Argument _ unknown argument." > (+ 1 1)) > #+END_SRC > > strange. in Emacs

Re: [O] strange behaviour with org-indent-mode

2016-02-10 Thread Thorsten Jolitz
be , | C-h v org--indent TAB ` shows you some potential culprits? -- cheers, Thorsten

Re: [O] What does the _ in `(defun org-element-section-parser (_) ...)' stands for?

2016-02-10 Thread Thorsten Jolitz
art for "_" to the docstring. I don't remember that I've seen this before, so maybe this is a rather new feature/convention? > Thorsten Jolitz writes: > >> Hi List, >> just out of curiosity, a few functions in org-element.el contain _ in >> t

[O] What does the _ in `(defun org-element-section-parser (_) ...)' stands for?

2016-02-09 Thread Thorsten Jolitz
Hi List, just out of curiosity, a few functions in org-element.el contain _ in their parameter list, but its not used in the body. What does it stand for? -- cheers, Thorsten

Re: [O] symbol's function definition is void: org-find-property

2016-02-08 Thread Thorsten Jolitz
> function definition is void: org-find-property. > What’s the problem? > Thank you for your help! What does ,[ C-h f org-find-property RET ] | org-find-property is a compiled Lisp function in `org.el'. | [...] ` say? Your "M-x org-version"? Do you have more than one Org-mode installed? -- cheers, Thorsten

Re: [O] [ANN] org-dp now on MELPA

2016-02-06 Thread Thorsten Jolitz
Rasmus writes: > Thorsten Jolitz writes: > >> Its not wrong or unfair, but not what I would say >> either. org-element does the same thing - parse the given text, work >> on the internal representation, write the new text by interpreting >> the modified interna

Re: [O] [ANN] org-dp now on MELPA

2016-02-06 Thread Thorsten Jolitz
Rasmus writes: > Thorsten Jolitz writes: > >> Xebar Saram writes: >> >> Hi Xebar, >> >>> Thx Thorsten >>> >>> i still use it daily :D >> >> I did not know that I have a user actually, because when I announced >> i

Re: [O] [ANN] org-dp now on MELPA

2016-02-06 Thread Thorsten Jolitz
Xebar Saram writes: Hi Xebar, > Thx Thorsten > > i still use it daily :D I did not know that I have a user actually, because when I announced it a year ago or so it never drew much attention (a bit to my surprise, I must admit). So I'm happy about the news ;-) You just used a f

Re: [O] What happened to `org-end-of-meta-data-and-drawers'?

2016-02-06 Thread Thorsten Jolitz
Rasmus writes: Hi Rasmus, > I’m happy to see you in this neck of the woods. thanks, I really hope that becomes a habit again ... > Thorsten Jolitz writes: > >> Not sure if I understand what "base your work off master" refers to, >> but I'll try cl-lib,

[O] [ANN] org-dp now on MELPA

2016-02-06 Thread Thorsten Jolitz
-cmd) t) ;or | | (org-dp-apply (org-dp-prompt) 'rewire) ; or | (org-dp-apply (my-custom-org-prompt-cmd) 'rewire) ` The advantage of this style of programming is that the internal Org element representation is so uniform (and the number of interpreted properties quite limited) that one solution might fit all (elements). -- cheers, Thorsten

Re: [O] What happened to `org-end-of-meta-data-and-drawers'?

2016-02-05 Thread Thorsten Jolitz
Nicolas Goaziou writes: Hello, > Thorsten Jolitz writes: > >> Hi List, >> again an Org function I used in one of my libraries has disappeared. >> >> , >> | org-dp-lib.el:483:1:Warning: the function >> | `org-end-of-meta-data-and-dr

[O] What happened to `org-end-of-meta-data-and-drawers'?

2016-02-05 Thread Thorsten Jolitz
date here ... -- cheers, Thorsten

Re: [O] Use of deprecated org-log-note-marker variable in outshine

2016-02-03 Thread Thorsten Jolitz
the code example - I used it. -- cheers, Thorsten

Re: [O] Use of deprecated org-log-note-marker variable in outshine

2016-02-03 Thread Thorsten Jolitz
p: > > ~/.emacs.d/elpa_25_0/outshine-20151203.802/outshine.elc:Warning: > reference to > free variable ‘org-log-note-marker’ > > @ Thorsten, Nicolas: What would be the best way to fix that? > > My org version: > Org-mode version 8.3.2 (release_8.3.2-469-ga902c8 @ > /ho

Re: [O] What happened to org-set-local

2016-02-03 Thread Thorsten Jolitz
mode.org/cgit.cgi/org-mode.git/commit/?id=07e16c2fc5687de5e1761bbf4ba3cf1777de15eb > Yes, thanks. Only that org-set-local took a quoted first arg, while setq-local takes an unquoted variable. -- cheers, Thorsten

[O] What happened to org-set-local

2016-02-03 Thread Thorsten Jolitz
Hi List, After updating Org from Git I get this error: , | and: Symbol's function definition is void: org-set-local ` Has it been replaced - with what? TIA -- cheers, Thorsten

Re: [O] OrgMode into Gnus buffers (message-mode included) ?

2015-12-22 Thread Thorsten Jolitz
or writing: - use orgstruct or - use outorg/outshine, and this: (add-hook 'message-mode-hook 'outline-minor-mode) - use ... (there might be more options) -- cheers, Thorsten

Re: [O] Using orgstruct-mode (or just org-cycle) in emacs-lisp-mode

2015-12-01 Thread Thorsten Jolitz
Jonas Bernoulli writes: Hi List, > Aaron Ecay writes: > >> Thorsten Jolitz wrote the outshine library > > I know. I used it for a while and contributed a few commits. But I > pretty much only used the cycling functionality at the time and when > I discovered that `or

Re: [O] [BUG] outshine and emacs 25.0.5.1 - Was: [error] orgmode git on emacs 25 - HEAD - org-global-cycle

2015-09-10 Thread Thorsten Jolitz
helps a bit ... -- cheers, Thorsten

Re: [O] outorg issue

2015-09-08 Thread Thorsten Jolitz
Kaushal writes: Hi all, Hi Bastien, > I don't know the outshine and outorg code in and out. But I wouldn't > mind keeping it maintained with the pull requests I get. > > That said, adding Thorsten Jolitz to this discussion. > @Thorsten Would you mind making me (

Re: [O] Getting heading properties from org-element

2015-07-05 Thread Thorsten Jolitz
(when (or (and negate-p (not memberp)) (and (not negate-p) memberp)) (setq filtered-props (cons (cons key val) filtered-props)) filtered-props))) #+END_SRC maybe thats somehow related... -- cheers, Thorsten

Re: [O] Sverweis like function for orgtbl

2015-02-16 Thread Thorsten Grothe
Thank you John and Michael for your suggestions, I will see if my knowledge is wide enough to understand this, unfortunately I'm a emacs newbie :-) Anyway I will answer after testing your suggestions! Regards Thorsten

[O] Sverweis like function for orgtbl

2015-02-16 Thread Thorsten Grothe
t possible? Thanks in advance! Regards Thorsten

Re: [O] org links and outshine

2014-11-07 Thread Thorsten Jolitz
Alan Schmitt writes: Hi Alan, > On 2014-11-03 09:06, Thorsten Jolitz writes: > >> Grant Rettke writes: >> >>> On Sat, Nov 1, 2014 at 5:58 AM, Thorsten Jolitz >>> wrote: >>>> And there is a new library >>>> >>>> [[http:/

[O] Command for "Set field formula" in radiotables

2014-11-05 Thread Thorsten Grothe
Hello List, I'm trying to assign a new shortcut for the function "Set field formula", but what is the command for that function? For "Set column formula" it is org-table-eval-formula &optional but I cannot find the command for the above function? What I'm doing wrong? Regards Thorsten Grothe

Re: [O] How do you interact with org src blocks for your gmane.emacs.orgmode correspondence?

2014-11-03 Thread Thorsten Jolitz
Grant Rettke writes: > On Sat, Nov 1, 2014 at 5:58 AM, Thorsten Jolitz wrote: >> And there is a new library >> >> [[http://goo.gl/pYYzS6][outorg-export]] > > I just used http://goo.gl/pYYzS6 and it worked fine; that looks like > an org mode link. It is an Org-m

Re: [O] Anyone using or interested in an org to Rmarkdown exporter?

2014-11-01 Thread Thorsten Jolitz
and exported for a > suitable vignette engine. > > If you already use Rmarkdown, etc, you get the ease of editting and > working in org-mode - cycling visibility of headlines, lists, src > blocks, and results, and of storing results inline, previewing latex > fragments, and all. > > HTH, Yes, definitely, thanks for the info. So it makes sense to add another tool ;) -- cheers, Thorsten

Re: [O] How do you interact with org src blocks for your gmane.emacs.orgmode correspondence?

2014-11-01 Thread Thorsten Jolitz
c backup files in a /tmp folder (one file for each explicit save with C-x C-s, and one saved when killing the *outorg-edit-buffer*). And there is a new library [[http://goo.gl/pYYzS6][outorg-export]] by Jonathan Leech-Pepin that keeps source-files and (Org) exports in sync. -- cheers, Thorsten

Re: [O] OrgStruct: start with collapsed view

2014-11-01 Thread Thorsten Jolitz
remember that orgstructs default conventions are different. Well, thinking about it, its probably a matter of buffer-local vars for outline-mode, and orgstructs sets its own variables leaving the outline vars as-is (correct?), but outshine uses the outline vars and thus does not find regexps for Org-style headers. Or so... -- cheers, Thorsten

Re: [O] Anyone using or interested in an org to Rmarkdown exporter?

2014-11-01 Thread Thorsten Jolitz
http://orgmode.org/cgit.cgi/org-mode.git/plain/contrib/lisp/ox-gfm.el > > [builds on an existing exporter] > http://orgmode.org/manual/Adding-export-back_002dends.html -- cheers, Thorsten

Re: [O] OrgStruct: start with collapsed view

2014-10-31 Thread Thorsten Jolitz
Karl Voit writes: > Hi! > > * Thorsten Jolitz wrote: >> Marcin Borkowski writes: >> >>> And now there's another problem: I'd like to have my init file >>> collapsed to only headlines on opening. Since I visit my init file >>> through a

Re: [O] How to extract TODOs from date-tree

2014-10-28 Thread Thorsten Jolitz
Jay Iyer writes: > Hi Thorsten, > The file entries are as follows and the task/note/project sub-heads generally > don't have active/inactive timestamps except when a scheduling/deadline is > specified. Thanks. > ** 2014-10 October > *** 2014-10-01 Wednesday

Re: [O] How to extract TODOs from date-tree

2014-10-28 Thread Thorsten Jolitz
[ C-h f org-element-contents RET ] > | org-element-contents is a compiled Lisp function in `org-element.el'. > | > | (org-element-contents ELEMENT) > | > | Extract contents from an ELEMENT. > ` > > and then 'org-element-property' and 'org-element-put-property' to get > and set timestamp info from the parent and any other info from the child > entries. -- cheers, Thorsten

Re: [O] How to extract TODOs from date-tree

2014-10-28 Thread Thorsten Jolitz
m an ELEMENT. ` and then 'org-element-property' and 'org-element-put-property' to get and set timestamp info from the parent and any other info from the child entries. -- cheers, Thorsten

Re: [O] Include results in a table

2014-10-28 Thread Thorsten Jolitz
vars x=A y=B (A and B must be named blocks for this, > use a #+NAME: A line) and then do (list A x B y) in block C and use the > :results format that outputs a list as a table (often it is the default, > otherwise try :results table or so). -- cheers, Thorsten

Re: [O] Include results in a table

2014-10-28 Thread Thorsten Jolitz
use a #+NAME: A line) and then do (list A x B y) in block C and use the :results format that outputs a list as a table (often it is the default, otherwise try :results table or so). -- cheers, Thorsten

Re: [O] An Org-mode LaTeX class?

2014-10-28 Thread Thorsten Jolitz
rogramming language the new version seems highly superior, and will most likely result in much cleaner and more readable code. Its well documented, search for 'The LaTeX 3 Interface' and 'The expl3 Package and LaTeX 3 Programming'. -- cheers, Thorsten

Re: [O] How to check whether the headline the point is on has some tag?

2014-10-24 Thread Thorsten Jolitz
point is at) has >> some tag (but not inherited)? >> >> TIA, alternatively you could use: * Headline :tag1: #+BEGIN_SRC emacs-lisp (let ((org-use-tag-inheritance nil)) (save-excursion (outline-previous-heading) (org-element-property :tags (org-element-at-point #+END_SRC #+results: | tag1 | -- cheers, Thorsten

Re: [O] 24.4.1; Emacs hangs with Org mode when point is in LOGBOOK

2014-10-21 Thread Thorsten Jolitz
refiling an Org task, but I already reported this a few weeks ago to the Emacs maintainers and it seems I have a "stripped binary" that does not deliver useful backtrace info. I don't use flyspell and I'm on Archlinux. Not very helpful, I know. -- cheers, Thorsten

Re: [O] Exzessive newlines in org-element item interpreter?

2014-10-20 Thread Thorsten Jolitz
Nick Dokos writes: > Thorsten Jolitz writes: > >> Your interpretation of 'obvious' seems (obviously?) be a bit overly >> optimistic sometimes. > > Probably apocryphal but ... > > http://mystatpage.wordpress.com/tag/g-h-hardy/ Nice. Whats really obvious

[O] Example or tutorial for org-invoice.el?

2014-10-20 Thread Thorsten Jolitz
. -- cheers, Thorsten

Re: [O] Exzessive newlines in org-element item interpreter?

2014-10-20 Thread Thorsten Jolitz
Nicolas Goaziou writes: > Hello, > > Thorsten Jolitz writes: > >> ,[ C-h f yes-or-no-p RET ] >> | yes-or-no-p is an alias for `y-or-n-p'. >> | >> | (yes-or-no-p PROMPT) >> | >> | Ask user a "y or n" question. >> ` &g

Re: [O] Exzessive newlines in org-element item interpreter?

2014-10-19 Thread Thorsten Jolitz
Nicolas Goaziou writes: > Thorsten Jolitz writes: > >> The conclusion of your answer above is that the item-interpreter cannot >> produce the complete org-mode syntax for plain-lists that is recognized >> by the parser and described in the manual? > This question is

Re: [O] Exzessive newlines in org-element item interpreter?

2014-10-19 Thread Thorsten Jolitz
Nicolas Goaziou writes: Hello, > Thorsten Jolitz writes: > >> One more question: bullet strings are parsed 'as-is', but the >> interpreter seems to have its own logic that is a bit difficult to grok >> (or are there syntax errors too?): > > This is sim

Re: [O] Exzessive newlines in org-element item interpreter?

2014-10-19 Thread Thorsten Jolitz
Thorsten Jolitz writes: > Nicolas Goaziou writes: [...] >> You should not provide 'on, 'off or 'trans, and even less strings, but >> on, off or trans since your expression is already quoted. One more question: bullet strings are parsed 'as-is', but the

Re: [O] New key binding C-Tab -- how to not use it

2014-10-19 Thread Thorsten Jolitz
C-Tab for moving between windows. Try , | (org-defkey org-mode-map "\C-TAB" 'undefined) ` not sure if the TAB is correct here, maybe try , , etc if it does not work. -- cheers, Thorsten

Re: [O] Exzessive newlines in org-element item interpreter?

2014-10-19 Thread Thorsten Jolitz
Nicolas Goaziou writes: > Hello, > > Thorsten Jolitz writes: > >> Hi List, >> >> evaluating this >> >> #+BEGIN_SRC emacs-lisp >> (org-element-interpret-data >> '(item (:bullet "1" :tag "hello" :checkbox "tran

[O] Exzessive newlines in org-element item interpreter?

2014-10-18 Thread Thorsten Jolitz
on a newline, which looks strange in my eyes. Is that intended? PS and checkbox is ignored, no matter if I give 'on, 'off and 'trans as symbols or strings. -- cheers, Thorsten

Re: [O] How to change a link?

2014-10-18 Thread Thorsten Jolitz
Nick Dokos writes: > Marcin Borkowski writes: > >> On 2014-10-17, at 00:19, Thorsten Jolitz wrote: >> >>>> OK, so what is the canonical way of doing this? I don't want to use >>>> org-dp, since it is another dependency. >>> >>&g

Re: [O] How to change a link?

2014-10-18 Thread Thorsten Jolitz
Marcin Borkowski writes: > On 2014-10-17, at 00:19, Thorsten Jolitz wrote: > >> However, here is a org-dp solution, use 't' instead of 'prepend to >> replace the links, and whatever you want instead of "file+emacs" as >> replacement. Of cour

Re: [O] How to change a link?

2014-10-16 Thread Thorsten Jolitz
(cdr | (split-string | raw-val ":" t))) | ":"))) | (org-element-put-property link :raw-link new-val))) | 'prepend) |org-link-re-with-space t) | #+END_SRC ` -- cheers, Thorsten

Re: [O] How to change a link?

2014-10-15 Thread Thorsten Jolitz
Thorsten Jolitz writes: > Marcin Borkowski writes: > >> On 2014-10-16, at 00:28, Thorsten Jolitz wrote: >> >>> Marcin Borkowski writes: >>> >>>> I see. What is the most interesting for me is the idea of >>>> getting/setting propertie

Re: [O] How to change a link?

2014-10-15 Thread Thorsten Jolitz
Marcin Borkowski writes: > On 2014-10-16, at 00:28, Thorsten Jolitz wrote: > >> Marcin Borkowski writes: >> >>> I see. What is the most interesting for me is the idea of >>> getting/setting properties, that's what I was looking for. >> >> T

Re: [O] How to change a link?

2014-10-15 Thread Thorsten Jolitz
ats why I called the library , | org-dp.el --- Declarative Local Programming with Org Elements ` it allows to leave most of the low-level parsing and interpreting stuff to the parser framework, you only need to 'declare' the element-type and the property values to create or modify elements. -- cheers, Thorsten

Re: [O] How to change a link?

2014-10-15 Thread Thorsten Jolitz
Marcin Borkowski writes: > On 2014-10-15, at 09:16, Thorsten Jolitz wrote: > >> Marcin Borkowski writes: >> >>> Hi list, >>> >>> assume that I have a link object (e.g., I'm in the ellipsis part of >>> this: >>> >>>

Re: [O] How to change a link?

2014-10-15 Thread Thorsten Jolitz
:www.orgmode.org" ` are your candidates for getting and setting with 'org-element-property' and 'org-element-put-property'. -- cheers, Thorsten

[O] What about a TOC export filter?

2014-10-14 Thread Thorsten Jolitz
. put a #+TOC: headlines 2 line 3. copy and adapt (i.e. overwrite) the org-html-keyword transcoder but wouldn't a toc-filter make more sense? Did I miss it? -- cheers, Thorsten

[O] How to refer to parsed element in export-filter?

2014-10-11 Thread Thorsten Jolitz
es to the element's parse-tree in a filter function? -- cheers, Thorsten

Re: [O] [BUG][babel] Tangling into directories does not add directories to org file

2014-10-10 Thread Thorsten Jolitz
option, it *helps* to have balanced brackets w/o breaking your will ;-) -- cheers, Thorsten

Re: [O] Possible bug, installing outshine before outorg

2014-10-10 Thread Thorsten Jolitz
could try to first install org-mode, then restart Emacs, then install outshine. Since outline-mode and org-mode are in Emacs core, I've never seen this problem. -- cheers, Thorsten

Re: [O] How to archive the whole file

2014-10-10 Thread Thorsten Jolitz
ut something on the line of #+BEGIN_SRC emacs-lisp (org-map-entries 'org-archive-subtree) #+END_SRC might do (totally untested!) -- cheers, Thorsten

Re: [O] Feature Request Bounty?

2014-10-09 Thread Thorsten Jolitz
| ** AA | *** AAA | | If I also archive AB after that, it gets inserted in the structure which | is now identical to the structure we started with. ` and when you simply mark the done subtrees with tag :ARCHIVE: but only actually archivate them when the whole tree is done? -- cheers, Thorsten

Re: [O] Other editors supporting Org-Mode

2014-10-08 Thread Thorsten Jolitz
planning, table, list ... handling (only syntax level editing of course). I don't know if this could at all be implemented with these extendable web-editors. -- cheers, Thorsten

Re: [O] Other editors supporting Org-Mode

2014-10-08 Thread Thorsten Jolitz
x27;t know how hard this would be, if at all possible, but from the user-perspective this might be the easiest solution. -- cheers, Thorsten

Re: [O] Other editors supporting Org-Mode

2014-10-08 Thread Thorsten Jolitz
n call (org-element-parse-buffer ...) or whatever. PicoLisp is no editor, and there is no editor written in this language, but assume Java or JS programs can do the same - how would that help editing Org-mode syntax in editors that are written in that languages? Just curious, I would like to find a way to make editing Org syntax easier for the masses (of non Emacs users). -- cheers, Thorsten

Re: [O] Other editors supporting Org-Mode

2014-10-08 Thread Thorsten Jolitz
would be a start, then maybe some 'quick navigation' commands. To bad that we can't have this by writing a few quick Emacs Lisp functions, somebody would need to know enough about Java, JS, HTML5 etc. and have some insight into the popular editors to make this happen. -- cheers, Thorsten

Re: [O] Org-element once again

2014-10-08 Thread Thorsten Jolitz
-10-09 Do> :PROPERTIES: :ARCHIVE: foo :END: [...] :END: but the default org-element-parse-buffer parses everything (when specified), the contents too, so it would give you , | (element-typ (plist) (section)) ` with section recursively containing other elements with the same structure -> a nested list. -- cheers, Thorsten

  1   2   3   4   5   6   7   8   9   10   >