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

2019-09-18 Thread Thorsten Jolitz
rg-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
days/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
e. 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
adline | 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 <o...@mat.ucm.es> writes: >>>> "Thorsten" == Thorsten Jolitz <tjol...@gmail.com> 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
ence-url: http://www.gnu.org/licenses/ | ;; :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 <o...@mat.ucm.es> writes: >>>> "Thorsten" == Thorsten Jolitz <tjol...@gmail.com> writes: > >> Uwe Brauer <o...@mat.ucm.es> writes: >>>>>> "Thorsten" == Thorsten Jolitz <tjol...@gmail.com> writes:

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

2018-03-06 Thread Thorsten Jolitz
Thorsten Jolitz <tjol...@gmail.com> writes: > Uwe Brauer <o...@mat.ucm.es> writes: > >>>>> "Thorsten" == Thorsten Jolitz <tjol...@gmail.com> writes: >> >>> Joseph Vidal-Rosset <joseph.vidal.ros...@gmail.com> writes: >&g

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

2018-03-06 Thread Thorsten Jolitz
Uwe Brauer <o...@mat.ucm.es> writes: >>>> "Thorsten" == Thorsten Jolitz <tjol...@gmail.com> writes: > >> Joseph Vidal-Rosset <joseph.vidal.ros...@gmail.com> writes: >> Hallo > >>> I know that the subject of my email ex

Re: [O] [Error]

2018-03-06 Thread Thorsten Jolitz
Uwe Brauer <o...@mat.ucm.es> writes: >>>> "Thorsten" == Thorsten Jolitz <tjol...@gmail.com> writes: > >> Joseph Vidal-Rosset <joseph.vidal.ros...@gmail.com> writes: >> Hallo > >>> I know that the subject of my email ex

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

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

2018-03-04 Thread Thorsten Jolitz
Thorsten Jolitz <tjol...@gmail.com> 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")

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

2018-03-04 Thread Thorsten Jolitz
(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 <tjol...@gmail.com> 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"

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

2018-03-03 Thread Thorsten Jolitz
ault-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 <m...@nicolasgoaziou.fr> writes: > Thorsten Jolitz <tjol...@gmail.com> writes: > >> You used the word 'discrepancy', > > True. I inferred it from > > (funny enough, some org elements have 'value' as their content, others >

Re: [O] Exploring picolisp

2018-03-03 Thread Thorsten Jolitz
| : -> 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 <m...@nicolasgoaziou.fr> writes: > Thorsten Jolitz <tjol...@gmail.com> 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

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

2018-03-03 Thread Thorsten Jolitz
Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: Hello, > Thorsten Jolitz <tjol...@gmail.com> writes: > >> (funny enough, some org elements have 'value' as their content, others >> 'content'). > > Could you point out where there is such discrepancy in "o

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

2018-03-03 Thread Thorsten Jolitz
| This works perfectly for your subject: [...] ` 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
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
. -- cheers, Thorsten

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

2017-09-09 Thread Thorsten Jolitz
nor mode that is easy to type but won't conflict with major modes. -- cheers, Thorsten

[O] Show all timestamps in agenda custom command

2017-05-24 Thread Thorsten Grothe
" "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 <alan.schm...@polytechnique.org> writes: Hi Alan, > On 2016-09-30 22:52, Thorsten Jolitz <tjol...@gmail.com> writes: > >>> Are there functions for manipulating org-tables using emacs-lisp? More >>> precisely, I would like to refer to a table by i

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

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

Re: [O] Count words under subtrees

2016-09-27 Thread Thorsten Jolitz
| 511:;; *** 1.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 <a...@alphapapa.net> writes: Hi Adam, > Thorsten Jolitz <tjol...@gmail.com> 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 ignor

Re: [O] iOrg

2016-09-14 Thread Thorsten Jolitz
l.com> wrote: >> Thorsten Jolitz <tjol...@gmail.com> writes: >> >>> ... >>> >>> If you feel you don't need the whole parse tree, but rather want to act >>> locally on the Org element at point, you might want to look at >>> org-dp.el >>>

Re: [O] Programmatically handling org files

2016-09-12 Thread Thorsten Jolitz
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 <o...@mat.ucm.es> writes: >>>> "Thorsten" == Thorsten Jolitz <tjol...@gmail.com> writes: >> Peter Davis <p...@pfdstudio.com> writes: >>> I realize this would require somehow converting the original message >>>

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

2016-03-25 Thread Thorsten Jolitz
org-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
D_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 <jkitc...@andrew.cmu.edu> writes: > On Wed, Feb 10, 2016 at 3:13 PM, Thorsten Jolitz <tjol...@gmail.com> > wrote: > > #+BEGIN_SRC emacs-lisp > (defun my-foo (_) > "Hello World. > Argument _ unknown argument." > (+ 1

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

2016-02-10 Thread Thorsten Jolitz
add the "Argument ..." part 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 &

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

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

[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
ion 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 <ras...@gmx.us> writes: > Thorsten Jolitz <tjol...@gmail.com> 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

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

2016-02-06 Thread Thorsten Jolitz
(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] [ANN] org-dp now on MELPA

2016-02-06 Thread Thorsten Jolitz
Rasmus <ras...@gmx.us> writes: > Thorsten Jolitz <tjol...@gmail.com> writes: > >> Xebar Saram <zelt...@gmail.com> writes: >> >> Hi Xebar, >> >>> Thx Thorsten >>> >>> i still use it daily :D >> >> I di

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

2016-02-06 Thread Thorsten Jolitz
Xebar Saram <zelt...@gmail.com> 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 ;-)

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

2016-02-06 Thread Thorsten Jolitz
Rasmus <ras...@gmx.us> 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 <tjol...@gmail.com> writes: > >> Not sure if I understand what "base your work off master&qu

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

2016-02-05 Thread Thorsten Jolitz
, Thorsten

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

2016-02-05 Thread Thorsten Jolitz
Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: Hello, > Thorsten Jolitz <tjol...@gmail.com> writes: > >> Hi List, >> again an Org function I used in one of my libraries has disappeared. >> >> , >> | org-dp-lib.el:483:1:Warning: the

[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] Use of deprecated org-log-note-marker variable in outshine

2016-02-03 Thread Thorsten Jolitz
ting this warning at emacs startup: > > ~/.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-g

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

2016-02-03 Thread Thorsten Jolitz
marker' used to be. Thanks for the code example - I used it. -- cheers, Thorsten

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

2016-02-03 Thread Thorsten Jolitz
62313eb9925ad65dab1 > - > http://orgmode.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

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

2015-12-22 Thread Thorsten Jolitz
ss you mean message-mode? For 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 <jo...@bernoul.li> writes: Hi List, > Aaron Ecay <aarone...@gmail.com> 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 funct

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
the future. Hope that helps a bit ... -- cheers, Thorsten

Re: [O] outorg issue

2015-09-08 Thread Thorsten Jolitz
Kaushal <kaushal.m...@gmail.com> 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 min

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

2015-07-05 Thread Thorsten Jolitz
(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
? Thanks in advance! Regards Thorsten

Re: [O] org links and outshine

2014-11-07 Thread Thorsten Jolitz
Alan Schmitt alan.schm...@polytechnique.org writes: Hi Alan, On 2014-11-03 09:06, Thorsten Jolitz tjol...@gmail.com writes: Grant Rettke g...@wisdomandwonder.com writes: On Sat, Nov 1, 2014 at 5:58 AM, Thorsten Jolitz tjol...@gmail.com wrote: And there is a new library [[http://goo.gl

[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 g...@wisdomandwonder.com writes: On Sat, Nov 1, 2014 at 5:58 AM, Thorsten Jolitz tjol...@gmail.com 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

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

2014-11-01 Thread Thorsten Jolitz
-- cheers, Thorsten

Re: [O] OrgStruct: start with collapsed view

2014-11-01 Thread Thorsten Jolitz
, Thorsten

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

2014-11-01 Thread Thorsten Jolitz
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] Anyone using or interested in an org to Rmarkdown exporter?

2014-11-01 Thread Thorsten Jolitz
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] OrgStruct: start with collapsed view

2014-10-31 Thread Thorsten Jolitz
Karl Voit devn...@karl-voit.at writes: Hi! * Thorsten Jolitz tjol...@gmail.com wrote: Marcin Borkowski mb...@wmi.amu.edu.pl 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 custom command

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

2014-10-28 Thread Thorsten Jolitz
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] Include results in a table

2014-10-28 Thread Thorsten Jolitz
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
as a table (often it is the default, otherwise try :results table or so). -- cheers, Thorsten

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

2014-10-28 Thread Thorsten Jolitz
-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
-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
Jay Iyer jayiye...@gmail.com 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 TODO first task

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

2014-10-24 Thread Thorsten Jolitz
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
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
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Thorsten Jolitz tjol...@gmail.com 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. ` = nil The interpreter produces _normalized_

[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
Nick Dokos ndo...@gmail.com writes: Thorsten Jolitz tjol...@gmail.com 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 is that spelling

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

2014-10-19 Thread Thorsten Jolitz
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Thorsten Jolitz tjol...@gmail.com writes: Hi List, evaluating this #+BEGIN_SRC emacs-lisp (org-element-interpret-data '(item (:bullet 1 :tag hello :checkbox trans :counter 2) (section nil world))) #+END_SRC #+results: : 1

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

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

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

2014-10-19 Thread Thorsten Jolitz
Thorsten Jolitz tjol...@gmail.com writes: Nicolas Goaziou m...@nicolasgoaziou.fr 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

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

2014-10-19 Thread Thorsten Jolitz
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Thorsten Jolitz tjol...@gmail.com 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 simple: ordered

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

2014-10-19 Thread Thorsten Jolitz
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Thorsten Jolitz tjol...@gmail.com 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

Re: [O] How to change a link?

2014-10-18 Thread Thorsten Jolitz
Marcin Borkowski mb...@wmi.amu.edu.pl 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 course one could easily re-search and replace

Re: [O] How to change a link?

2014-10-18 Thread Thorsten Jolitz
Nick Dokos ndo...@gmail.com writes: Marcin Borkowski mb...@wmi.amu.edu.pl 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. It is a problem to add dependencies to libraries

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

2014-10-18 Thread Thorsten Jolitz
. 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-16 Thread Thorsten Jolitz
` -- cheers, Thorsten

Re: [O] How to change a link?

2014-10-15 Thread Thorsten Jolitz
, Thorsten

Re: [O] How to change a link?

2014-10-15 Thread Thorsten Jolitz
Marcin Borkowski mb...@wmi.amu.edu.pl writes: On 2014-10-15, at 09:16, Thorsten Jolitz wrote: Marcin Borkowski mb...@wmi.amu.edu.pl writes: Hi list, assume that I have a link object (e.g., I'm in the ellipsis part of this: (org-element-map (org-element-parse-buffer 'object) 'link

Re: [O] How to change a link?

2014-10-15 Thread Thorsten Jolitz
--- 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 mb...@wmi.amu.edu.pl writes: On 2014-10-16, at 00:28, Thorsten Jolitz wrote: Marcin Borkowski mb...@wmi.amu.edu.pl writes: I see. What is the most interesting for me is the idea of getting/setting properties, that's what I was looking for. Thats exactly what org-dp

Re: [O] How to change a link?

2014-10-15 Thread Thorsten Jolitz
Thorsten Jolitz tjol...@gmail.com writes: Marcin Borkowski mb...@wmi.amu.edu.pl writes: On 2014-10-16, at 00:28, Thorsten Jolitz wrote: Marcin Borkowski mb...@wmi.amu.edu.pl writes: I see. What is the most interesting for me is the idea of getting/setting properties, that's what I

[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
in a filter function? -- cheers, Thorsten

Re: [O] How to archive the whole file

2014-10-10 Thread Thorsten Jolitz
, but 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] Possible bug, installing outshine before outorg

2014-10-10 Thread Thorsten Jolitz
. Since outline-mode and org-mode are in Emacs core, I've never seen this problem. -- cheers, Thorsten

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

2014-10-10 Thread Thorsten Jolitz
brackets w/o breaking your will ;-) -- cheers, Thorsten

Re: [O] Feature Request Bounty?

2014-10-09 Thread Thorsten Jolitz
? -- cheers, Thorsten

Re: [O] Org-element once again

2014-10-08 Thread Thorsten Jolitz
containing other elements with the same structure - a nested list. -- cheers, Thorsten

Re: [O] Other editors supporting Org-Mode

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

Re: [O] Other editors supporting Org-Mode

2014-10-08 Thread Thorsten Jolitz
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
the user-perspective this might be the easiest solution. -- cheers, Thorsten

Re: [O] Other editors supporting Org-Mode

2014-10-08 Thread Thorsten Jolitz
of course). I don't know if this could at all be implemented with these extendable web-editors. -- cheers, Thorsten

  1   2   3   4   5   6   7   8   9   10   >