strange/cryptic org variables

2020-01-25 Thread D
Hello, org.el seems to define three weird variables: org-m, org-l and org-f (see below). Two of these variables (l and f) are used exclusively in org-level-face, while m is not used anywhere in the code. They don't appear to be used in the other source files, either. Is there a particular reaso

A new, "org-bullets"-like minor mode

2020-02-01 Thread D
Hi, in the past two weeks I have been working on a new org minor mode based on org-bullets. Much like org-bullets-mode, the new mode (dubbed "org-superstar-mode" for the time being) visually replaces headline stars with UTF8 bullets. However, while I took the code of org-bullets as an initial te

Re: A new, "org-bullets"-like minor mode

2020-02-01 Thread D
#x27;t mean to come off as rude making a still rather derivative mode like that without trying to get the guy's blessing. I am likely overthinking the matter. Would it be appropriate to share the link here? I think it would be great to get feedback before trying to get it on melpa. Cheers, D.

org-superstar-mode: A re-imagining of org-bullets with new features

2020-02-01 Thread D
Hi, thank you two for your encouragement! Here is the link to the new project: https://github.com/dw-github-mirror/org-superstar-mode/ Fair warning though, I am still in the process of debugging. Cheers, D.

Strangely recognized non-lists and non-headers.

2020-02-02 Thread D
Hi all, while debugging org-superstar-mode I noticed something very strange, and I am not sure if it's a bug in org or a bug in my understanding of org. First off, an MWE for Org mode version 9.1.9 (release_9.1.9-65-g5e4542): #+BEGIN_SRC C /* * This is a header? + this + is * a list?

Re: Strangely recognized non-lists and non-headers.

2020-02-02 Thread D
ist) t) I tried that out, but it still seems to recognize source code as headlines, replacing the predicate does not change the behavior. It seems to be something more deeply rooted than that, I mean, otherwise org mode wouldn't try to collapse those fake-headlines when hitting TAB, either. Regards, D.

Re: Strangely recognized non-lists and non-headers.

2020-02-02 Thread D
> You need to escape them with commas. Ah, I overlooked that because I did not check the manual whether leading stars are escaped automatically and just assumed it, sorry. Thanks a lot! Though, there is one minor thing I noticed: Leading stars are valid comment symbols in Fortran, as long as th

Re: A new, "org-bullets"-like minor mode

2020-02-02 Thread D
> I haven't looked at the code yet but would it make sense for your new > mode just being renamed to "org-bullet" instead? Do you expect that > some current users won't want to update? I have been considering that, but decided against replacing org-bullets (or calling the package something akin

Re: A new, "org-bullets"-like minor mode

2020-02-04 Thread D
> > I would like to take a try too. Hope it is lightweight enough. Don't invoked > lot of time. > I have not yet optimized the package, but experience no issues. The package is currently in the process of being reviewed for MELPA. If you (or anyone else) would like to contribute a large, comp

Weird face behavior with org-hide-emphasis-markers enabled

2020-02-04 Thread D
Hi all, maybe I overlooked something in the archives, but I can't find this issue having been brought up yet. org-hide-emphasis-markers has a strange interaction with faces like org-code: when trying to draw a box around an emphasized expression it does not draw the right border. Cheers, D.

Re: Weird face behavior with org-hide-emphasis-markers enabled

2020-02-04 Thread D
_64-redhat-linux-gnu, GTK+ Version 3.24.13) of 2019-12-10 Org mode version 9.1.9 (release_9.1.9-65-g5e4542) minimal setup: (setq org-hide-emphasis-markers t) (set-face-attribute 'org-code nil :box '(:line-width 1)) an example file mwe.org: ~sample text~ This reproduces the issue reliably. Cheers, D.

[org-inlinetask] Inquiry of opinion from all users

2020-02-07 Thread D
or example, suppose your headeline bullets would cycle through (1), (2), (3), (4). Now suppose org-inlinetask-min-level was 6. Should ** be rendered as (1)(1) (that is, as the *first* inlinetask) or (2)(2) (that is, like a level 6 (mod 4) headline)? Thank you in advance, D.

Re: [org-inlinetask] Inquiry of opinion from all users

2020-02-11 Thread D
will most likely add very few things on my own and keep an eye on potential requests. I am aware there were a couple of suggestions on org-bullets' original GitHub, which I will try to address thoroughly. Cheers, D.

Re: Weird face behavior with org-hide-emphasis-markers enabled

2020-02-12 Thread D
Hi, On 12.02.20 18:24, Bastien wrote: > I can reproduce this issue but I have no clue what can be wrong in > Org. Perhaps you can submit this to emacs-de...@gnu.org. Very strange indeed. In that case I'll try poking around the code a bit more (I think there is a lot I can learn from investigatin

Re: Weird face behavior with org-hide-emphasis-markers enabled

2020-02-12 Thread D
width 3 :color "grey"))) (add-text-properties (1- end) end '(invisible org-link))) Hope that is helpful, D.

Documentation: Side effects of org-entry-properties and others

2020-02-17 Thread D
. Sadly, I have no overview over the scope of this issue, so I do not know whether my suggestion is unrealistic (for example, because it would mean adding warnings practically everywhere). Regards, D.

org-hide-leading-stars-before-indent-mode

2020-02-19 Thread D
One could either use (kill-local-variable 'org-hide-leading-stars) or (setq-local org-hide-leading-stars (default-value 'org-hide-leading-stars)) for the same effect. Cheers, D.

[PATCH] Re: org-hide-eading-stars-before-indent-mode

2020-02-19 Thread D
e itself calls for setting the variable locally to `t' instead of the original value. I attached the patch, which I hope is the correct format. I'm still a bit new to this, my apologies if I cause any unnecessary work. Regards, D. >From d3390eb442bccef476fa2514d4078b9f8e9d978a Mo

org-superstar is now available on MELPA

2020-03-08 Thread D
Hi all, as the subject suggests, I am happy to announce that org-superstar-mode is now available on MELPA! :) repo: https://github.com/integral-dw/org-superstar-mode package: https://melpa.org/#/org-superstar Cheers, D.

org-forward-heading-same-level and the invisible-ok argument

2020-08-25 Thread D
elegant than the approach I came up? Cheers, D.

[PATCH] Re: org-forward-heading-same-level and the invisible-ok argument

2020-08-26 Thread D
> I guess it is simply because nobody though that the leading stars can be > hidden via fontification. > > I think the whole issue can be fixed by changing the call to > org-invisible-p inside org-forward-heading-same-level. org-invisible-p > has an optional third argument to ignore text hidden v

[PATCH] Re: Re: org-forward-heading-same-level and the invisible-ok argument

2020-08-28 Thread D
Skipping partially visible headlines would be a violation of the > docstring. Good point! I think this would be a more or less reasonable patch, then. Cheers, D. >From 4c0f638104f689780de317af5f715384152459bd Mon Sep 17 00:00:00 2001 From: "D. Williams" Date: Fri, 28 Aug 2020

Re: [PATCH] Re: Re: org-forward-heading-same-level and the invisible-ok argument

2020-08-28 Thread D
which basically removes any relevant slowdown. But I'd really only recommend going that far if necessary, given it adds a random magic number. Thoughts? Cheers, D.

[PATCH] Re: Re: Re: org-forward-heading-same-level and the invisible-ok argument

2020-08-30 Thread D
es it to check the text bit of a heading first, which is useful for the cases where the predicate returns t and makes no difference otherwise. I again ran the tests and it seems ready to go. Cheers, D. >From 9ae3dd4b73b2b9b41244bb7f9c610ed3f4777398 Mon Sep 17 00:00:00 2001 From: "D. Willia

Re: [PATCH] Re: Re: Re: org-forward-heading-same-level and the invisible-ok argument

2020-09-06 Thread D
ible with previous > emacsen, right? Hmm, looking at the oldest available ELPA release (seq-1.0, 2015), seq-every-p should be fully backwards-compatible. The current package itself also has a fallback option for Emacs versions <25, so that should be fine. Cheers, D [1] https://github.com/TonCherAmi/org-starless

Re: [PATCH] Re: Re: Re: org-forward-heading-same-level and the invisible-ok argument

2020-09-07 Thread D
> Then, can as well use `mapcar', or even simply manual loop over line > positions. How about this? >From 2324d745f12fe8e8d4f7864307eb55c46fc49504 Mon Sep 17 00:00:00 2001 From: "D. Williams" Date: Mon, 7 Sep 2020 14:13:12 +0200 Subject: [PATCH] org.el: let heading nav

Re: [PATCH] Re: Re: Re: org-forward-heading-same-level and the invisible-ok argument

2020-09-08 Thread D
g-forward-heading-same-level works overall, in a "principle of least astonishment" sort of way. I would agree with Ihor that it does reflect the docstring better this way. Best regards, D.

Re: Concerns about community contributor support

2021-04-29 Thread D
st for them? This would also allow for a greater deal of automation in the way we deal with patches. Cheers, D.

Re: Concerns about community contributor support

2021-04-29 Thread D
;s development can interact on many other > places (SO, reddit and others). I'm not sure sure whether it is about mixing with development personally, but I think my point is largely addressed by updates.orgmode.org. Cheers, D.

[Orgmode] Re: Property inheritance in Org-collector

2011-01-08 Thread d . tchin
Christian Moe christianmoe.com> writes: > > Hi, > > I'm trying to use an Org document as the database for a textbook > analysis and Org-collector.el to output reports. > > With org-use-property-inheritance set to `t', and working in sparse > trees, I fail to get inherited properties to show

[Orgmode] Re: Property inheritance in Org-collector

2011-01-11 Thread d . tchin
Eric Schulte gmail.com> writes: I used new version of org-collector as you suggested. It works well. Thank you. Regards. ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/ma

[Orgmode] Bug ? : org-babel and calc : calc-command-flags

2011-01-19 Thread d . tchin
Hello, I tried to use calc with babel but it doesn't work as expected. I use the following block with simple instruction : #+begin_src calc 2*3 #+end_src I didn't get back any results. I launch calc and it seems to be called as I have following output --- Emacs Calculator Mode --- 1: 6 .

[Orgmode] Re: Bug ? : org-babel and calc : calc-command-flags

2011-01-20 Thread d . tchin
Eric Schulte gmail.com> writes: > > Hi d.tchin, > Hi Eric > This problem is caused because (as you point out) the calc-command-flags > variable is not defined. In my Emacs version calc-command-flags is > provided by (require 'calc) which is part of Babel's calc support, this > variable must

[Orgmode] Re: Bug ? : org-babel and calc : calc-command-flags

2011-01-20 Thread d . tchin
Eventually I prefer to use the following instruction in the buffer where I will use calc with babel. #+begin_src emacs-lisp :results silent (require 'ob-calc) (defvar calc-command-flags nil) #+end_src Thank you for your help. d.tchin ___ Ema

[Orgmode] Latex export and label entries

2009-12-02 Thread d . tchin
Hi, I use org-export-latex to create latex powerdot file. I make adaptation of template defined for beamer class and it works quite well. I have a problem I would like to submit : By default in each section or slide (frame) environment, there is a label added by default. This instruction is

[Orgmode] Re: Latex export and label entries

2009-12-08 Thread d . tchin
Hi Carsten Dominik gmail.com> writes: > > Hi, > On Dec 2, 2009, at 2:51 PM, d.tchin voila.fr wrote: > > > > > Hi, > > > > I use org-export-latex to create latex powerdot > > file. I make adaptation of template defined for > > beamer class and it works quite well. > > > > I have a problem I wo

[Orgmode] Tips on maintaining a knowledge-base ?

2010-01-09 Thread d . sturb
I've been using org-mode for a little while, I've kept it really simple for now, with only two files : - one to act as an inbox, with remember-mode - another where I stick just about anything that's been processed from the inbox This is great for managing somewhat 'actionable' items, fitting

[Orgmode] org-babel-R and windows ?

2010-01-12 Thread d . tchin
I need help to be able to use org-babel functionality. I use emacs 22.3.1 in windows XP and org-mode 6.34. I have the following instructions in .emacs (require 'org-install) (require 'org-plot) (require 'org-babel-init) (require 'org-babel-R) ;; requires R and ess-mode (require 'org-b

[Orgmode] Re: org-babel-R and windows ?

2010-01-13 Thread d . tchin
Dan Davison stats.ox.ac.uk> writes: > The org-babel default is to invoke R as an external shell command, and I > think this is what is causing the problem. It requires that the emacs > function shell-command can use the string "R" to invoke an R process, > i.e. the R installation and the shell pat

[Orgmode] Re: Getting a Google Maps' map for an entry

2010-07-01 Thread d . tchin
Julien Danjou danjou.info> writes: > > Hi there, > > I've recently wrote a Google Maps extension for Emacs[1]. > > Therefore, I've extended org-mode to display a Google Maps' map for an > event location. The extension, which is very simple, is available > here[2] and I wanted you to know about

[Orgmode] Re: Getting a Google Maps' map for an entry

2010-07-02 Thread d . tchin
writes: > > Julien Danjou danjou.info> writes: > > > > > Hi there, > > > > I've recently wrote a Google Maps extension for Emacs[1]. > > > > Therefore, I've extended org-mode to display a Google Maps' map for an > > event location. The extension, which is very simple, is available > > here

[Orgmode] org-collector : display problem with propview

2010-07-22 Thread d . tchin
Hi I try to use org-collector. Since I have changed org-mode to release 7.01 there is a modification in the display of propview. Below an example : - * View #+BEGIN: propview :cols (ITEM CATEGORY) :scope tree :match "Inside1" | "ITEM"

[Orgmode] Re: org-collector : display problem with propview

2010-07-22 Thread d . tchin
writes: > > Hi > ... > Subsidiary question : is it possible not to display the tag in propview > ang ITEM entry. Sorry. For this question, what I want is to get ITEM entry without the tag in propview display. > > GNU Emacs 22.3.1 (i386-mingw-nt5.1.2600) of 2008-09-06 on SOFT-MJASON > Org

[Orgmode] Re: org-collector : display problem with propview

2010-07-23 Thread d . tchin
Eric Schulte gmail.com> writes: > > Hi, > > The following minimal patch to org-collector.el should remove tags from > the ITEM text, which will also remove the many "\n" characters. Please > let me know if this works for you. > > Thanks -- Eric > > > Attachment (org-collector-w-o-tags.patch

[Orgmode] [BABEL] Output with octave

2010-07-23 Thread d . tchin
Hi I use babel to use with octave language. I use it and define a session so as to have interaction with octave process. It is great to have interaction with octave and check the action of the code easily. I have problem to get output back in org mode file. I try the following code : --8<---

[Orgmode] Re: [BABEL] Output with octave

2010-07-26 Thread d . tchin
Eric S Fraga ucl.ac.uk> writes: > > I don't think you are missing anything obvious as for the ":results > value" case, I get the same thing. In fact, for ":results output", I > don't actually get any output! I'm not sure why. I wonder if there > is a dependence on the version of Octave? I'm

[Orgmode] Re: [BABEL] Output with octave

2010-08-02 Thread d . tchin
Hi, Dan Davison stats.ox.ac.uk> writes: > > Eric S Fraga ucl.ac.uk> writes: > > > On Fri, 23 Jul 2010 16:59:43 + (UTC), d.tchin voila.fr> wrote: > >> > >> With :results value > >> > >> --8<---cut here---start->8--- > >> #+tblname: test > >> | 1 |

[Orgmode] [Babel] gnuplot, table entry and temporary file

2010-08-02 Thread d . tchin
Hi, Before asking my question, I would like to give few remarks about use of gnuplot with org-babel and the reason why I asked this question. I tried to use it with org-plot but I was not really satisfied as it didn't work clearly well with emacs installed on MS Windows. Below a thread about th

[Orgmode] Re: [Babel] gnuplot, table entry and temporary file

2010-08-02 Thread d . tchin
write Sorry, please forget the last question. I have just seen a thread related to gnuplot that answers to this question. Below a link to this thread : http://thread.gmane.org/gmane.emacs.orgmode/27990/focus=27998 ___ Emacs-orgmode mailing

[Orgmode] Re: [BABEL] Output with octave [PATCH]

2010-08-04 Thread d . tchin
Dan Davison stats.ox.ac.uk> writes: > > Hi Juan and d.tchin, > > One thing I'd like to ask for advice about is the behaviour of tabular > data structures containing strings. For example > > #+begin_src octave > ans = [['a','b'];['c'

[Orgmode] [babel] lob evaluation : a bug ?

2010-08-05 Thread d . tchin
Hi, I try to evaluate function already defined in library-of-babel. But whatever the function I try to evaluate I have the following error output get from buffer *Messages* : setf: Wrong type argument: consp, nil For example I use the following : #+tblname: R-plot-example-data | 1 | 2 | | 2 |

[Orgmode] Re: Agenda and weather forecast

2010-09-09 Thread d . tchin
Julien Danjou danjou.info> writes: > > Hi folks, > > If anybody is interested, I've wrote an small extension to put some > weather forecasts in the agenda. > > It can be found here[1]. I've blogged about it yesterday, so if you're > curious you can read the entry[2]. > > Happy hacking, > > [

[Orgmode] Re: Agenda and weather forecast | multiple forecasts

2010-09-09 Thread d . tchin
Juan computer.org> writes: > > A simple way is to use the category declaration: > > #+CATEGORY: Paris > %%(org-google-weather "Paris" "FR") > #+CATEGORY: Caen > %%(org-google-weather "Caen" "FR") > #+CATEGORY: Agenda > ... other stuff > > Regards, > .j. > Thank you for your answer. In fact

[Orgmode] Re: Agenda and weather forecast

2010-09-09 Thread d . tchin
writes: I didn't use the level I would like to use for answering. As I reply to Juan, I like your suggestion of using CATEGORY. Thank you for your help. ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmo

[Orgmode] Re: Babel+gnuplot on Worg

2010-09-10 Thread d . tchin
Hi, Thank you for this document. It is really of great help. I would like to do one remark. I tried to make gnuplot work on Windows system but I never really manageg to make it work in interactive way. I first started to use org-plot. It doesn't work under Windows. In fact it seems related t

[Orgmode] Re: Babel+gnuplot on Worg

2010-09-10 Thread d . tchin
Hi, > > > Forgive me... not sure I'm tracking completely. > > - When you say "It doesn't work under Windows" are you referring to the org- plot method? > - But org-babel does work if you use "session none" > --- Sorry, what is "session none"? I've not heard of that before. Don't be sorry, I w

[Orgmode] Export function to Vcal file

2010-09-10 Thread d . tchin
Hi I see that there is org-export-icalendar-* functions. Is there a function that allows to export to *.vcs file which are recognized by Palm Os ? Regards ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmo

[Orgmode] Re: Agenda and weather forecast

2010-09-10 Thread d . tchin
Hi, Just to follow previous discussion about having city. Julien Danjou add a new entry in org-google-weather-format that allows to get City for which the weather is asked for. It is possible to customize this variable. The default format is "%i %c, %l-%h %s" . If you can add %C for city : "%C

[O] org-velocity load problem

2011-09-20 Thread d . tchin
Hi all, This post just to warn that org-velocity is not loaded with Emacs 22.3.1. I try to load org-velocity but I have the following message : error: Unknown keyword :safe I use GNU Emacs 22.3.1 (i386-mingw-nt6.1.7601) and Org-mode version 7.7. I had the possibility to try with emacs 23.3 with

[O] [org-babel] break when used with header in emacs 22.3

2012-01-10 Thread d . tchin
Hi, I would like to report a problem of evalation when org-babel is used with emacs 22.3 on windows and recent org-mode 7.8.03. I use the following code : #+begin_src sh :results silent ls #+end_src It breaks when a header is used. When evaluated with C-c C-c, the following message appears :

Re: [O] [org-babel] break when used with header in emacs 22.3

2012-01-10 Thread d . tchin
Eric Schulte gmx.com> writes: > This same issue was raised recently on the mailing list and (I believe) > a patch has been pushed to the git repository. Would you mind checking > if the problem persists in the git head? > I download org-latest.zip archive and test it. This version solves this

Re: [O] [bug] alias for list-diary-entries-hook creates loop in emacs 24

2012-01-11 Thread d . tchin
Eric S Fraga ucl.ac.uk> writes: > > Hello, > > one of the recent updates > > commit d6e40fb3472761ed51795f54491b969976167116 > > to org has caused a problem with the latest emacs snapshot (version from > 5 January I believe). Specifically, the alias for > list-diary-entries-hook would appe

Re: [O] TaskJuggler 3.1 export (tj3)

2012-02-01 Thread d . tchin
Hello, Rainer M Krug gmail.com> writes: > > > Hi > > I would like to use the export to taskjuggler, but somehow I don't get > it working - might be me or the fact that I have taskjuggler 3.1.0. > > I am trying the example on > > http://orgmode.org/worg/org-tutorials/org-taskjuggler.html >

Re: [O] TaskJuggler 3.1 export (tj3)

2012-02-01 Thread d . tchin
John Hendy gmail.com> writes: > > On Wed, Feb 1, 2012 at 6:25 AM, d.tchin voila.fr> wrote: > > Hello, > > > > Rainer M Krug gmail.com> writes: > > > Even so, see my most recent thread > (http://www.mail-archive.com/emacs-orgmode gnu.org/msg51502.html). > Even if that patch works, it's not a

Re: [O] taskjuggler3 export

2012-02-29 Thread d . tchin
headline "Project Gantt Chart" | columns hierarchindex, name, start, end, effort, duration, completed, chart | timeformat "%Y-%m-%d" | hideresource 1 | formats html

[O] org-protocol in windows and Acrobat Reader

2012-03-15 Thread d . tchin
Hi, I try to use a function proposed with org-protocol as explained in this link. http://orgmode.org/worg/org-contrib/org-protocol.html#sec-2 I would like to launch a pdf file in Acrobat Reader and to use org-store- link.js to capture the full path of the document in an org file.I try to use wh

Re: [O] org-protocol in windows and Acrobat Reader

2012-03-19 Thread d . tchin
> > This indicates that .replace('|',':') didn't work out as expected and > org-protocol received > > org-protocol://store-link://file%3A%2F%2F%2FC%7C%2FTemp%2Ffile.pdf > ^^^ > > Maybe this could do the trick: > > , > | app.addMenuItem({cName:"or

[Orgmode] org-plot : interaction problem with gnuplot

2009-06-18 Thread d . tchin
Hi, I would like to use gnuplot with org-mode tabular function.But I haven't managed to use it until now. I would like to submit to you few remarks I have done. I use GNU Emacs 22.2.1 (i386-mingw-nt5.1.2600) on Microsoft Windows XP OS. I have installed gnuplot and I can use it with gnuplot-mode.

Re: [Orgmode] org-plot : interaction problem with gnuplot

2009-06-29 Thread d . tchin
. 2°) I put the instruction you suggested. I try to use org-plot/gnuplot and I have the following output on message buffer: OVERVIEW org-plot/gnuplot CHILDREN Loading d:/perso/home/emacs/emacs-22.2/lisp/org/lisp/org-plot.el (source)...done script is reset set title 'Citas' set yr

[Orgmode] org/blorg and mysql

2008-03-27 Thread D. Kapetanakis
Hey, I also want to look at it, but where??? Dimitris -- Message: 6 Date: Wed, 26 Mar 2008 13:37:20 -0700 From: Cezar Halmagean <[EMAIL PROTECTED]> Subject: [Orgmode] Re: org/blorg and mysql To: emacs-orgmode@gnu.org Message-ID: <[EMAIL PROTECTED]> Content-Type: text/

[Orgmode] agenda files separation

2008-07-15 Thread D. Kapetanakis
Dear All, Since like most of us I live a double or triple life I would like to have a separation of the agenda files. I mean that I have one org-file for work with all the todo items, projects etc, one for my personal study, books I want to read, songs I want to learn to play etc, for home, for

[O] conflict load of epresent - org mode 8.0.3

2013-05-17 Thread d . tchin
Hi, This post to report a problem about epresent and new version of org mode. I have just tried to update from releas 7.9.2 to 8.0.3 and I encountered several problems that are partially solved by the description of the changes due to the actual export and new name conventions. >From time to ti

Re: [O] conflict load of epresent - org mode 8.0.3

2013-05-23 Thread d . tchin
Hi, If the intention is to use epresent with org file, is it necessary to put the following instructions in epresent.el and epresent-org.el? (require 'ox) (require 'ox-latex) I suppose that when a org file is loaded, this library and corresponding are already loaded, so these intructions may be

Re: [O] conflict load of epresent - org mode 8.0.3

2013-05-30 Thread d . tchin
Hi, > I just updated the require statements in epresent.el. > > https://github.com/eschulte/epresent/blob/master/epresent.el > > I'm not sure what epresent-org.el is. For your information, Sacha Chua on her blog has given a short description of EPresent accessible on the following link

[O] :noweb-ref property inheritance failure?

2017-04-18 Thread D Bro
Both 26.0 and 25.1 on OS X 10.12 via homebrew, using the Spacemacs configuration. I recently tried the weaving technique from http://orgmode.org/manual/noweb_002dref.html#noweb_002dref : * Create #+NAME: TestDemo2 #+BEGIN_SRC java :

Re: [O] :noweb-ref property inheritance failure?

2017-04-18 Thread D Bro
, at 9:04 PM, Charles C. Berry wrote: > > On Tue, 18 Apr 2017, D Bro wrote: > >> Both 26.0 and 25.1 on OS X 10.12 via homebrew, using the Spacemacs >> configuration. >> > >> I recently tried the weaving technique from >> http://orgmode.or

Re: [O] :noweb-ref property inheritance failure?

2017-04-18 Thread D Bro
working for you… > On Apr 18, 2017, at 9:47 PM, D Bro wrote: > > Many thanks—especially for the quick response. Unfortunately, no go. > > The headline was a copy and paste issue into the email — my org-lint only > complains about the :classname (I didn’t even know about o

[O] Viewing tangled source code as source code block result?

2017-04-24 Thread D Bro
I was wondering if there is any simple way of displaying the actual tangled code in the org-mode buffer and resulting exports. One can #+INCLUDE the resulting file, seeing it in the export; one can M-x ffap the #+INCLUDE file to see it in a buffer; one can do a hack like shelling out and callin

[O] Latex class files in async export?

2017-04-29 Thread D Bro
I have the following definition in my org-mode file: (add-to-list 'org-latex-classes ;; https://emacs.stackexchange.com/questions/29694/spacemacs-and-org-mode-configuration-problem '("koma-article" "\\documentclass{scrartcl}" ("\\section{

[O] org-export-preprocess-apply-macros ?

2017-04-30 Thread D Bro
Is this still a thing? I can’t seem to find it anywhere but a very few online references, no where in the org code, and it doesn’t seem work… https://lists.gnu.org/archive/html/emacs-orgmode/2011-03/msg00857.html (add-hook 'org-babel-tangle-body-hook (lambda () (org-export-preprocess-apply-m

[Orgmode] Latex Export

2007-09-29 Thread D. Kapetanakis
Hello All, I am desperately trying to go from org to Latex without success. I am using org-mode 5.10b. I receive the following Exporting to LaTeX... Loading latexenc...done (New file) Loading tex...done Loading latex...done Loading font-latex... Loading bytecomp...done Loading font-latex...done A

[Orgmode] Horizontal lines in tables

2007-11-28 Thread D. Kapetanakis
Thanks for 5.14. works pretty good except that when I try to export in HTML an org file containing a table with a first horizontal line like the following |+| | 172141 || |+| | 16000 | 20582162-6 | | 2 || | 7725 | 20582165-1

clock doesn't respect org-id-link-to-org-use-id

2021-06-18 Thread Dave D
Hi All, I use org-mode clock table to generate report for the tasks I clocked. The header of my clock table looks like this: #+BEGIN: clocktable :block 2021-06-18 :scope agenda :maxlevel 5 :fileskip0 t :link t I have :link t so that I can jump to a task directly from the clock table. I have notic

getting "before first headline at position xxx in buffer *Org Note*" when clocking out

2021-06-23 Thread Dave D
Hi all, I recently started getting the message "before first headline at position xxx in buffer *Org Note*" when clocking out items. After much frustration and testing I've summarized these steps to reproduce the issue. 1. Download https://orgmode.org/org-9.4.6.tar.gz and extract to ~/org-9.4.6

Re: org-agenda no longer clocks out then in

2021-06-25 Thread Dave D
seems related to a bug I reported a few days ago. link to my bug report: https://lists.gnu.org/archive/html/emacs-orgmode/2021-06/msg00506.html the bug is basically that we you have org-log-note-clock-out set to t, an error "before first headline" would occur when you clock out, thus blocking sub

Re: Bug: "before first headline" error when adding clock out note [9.4.6 (9.4.6-dist @ /home/wenlong/org-9.4.6/lisp/)]

2021-06-25 Thread Dave D
It seems the error is caused by function org-clock-remove-empty-clock-drawer called by org-clock-out-hook I have removed that function from the hook for now as a workaround.

Re: org-agenda no longer clocks out then in

2021-06-27 Thread Dave D
this commit https://code.orgmode.org/bzg/org-mode/commit/8e3e2f667f0b28b85845204b708c3f0aebc9152b probably fixes the issue. Could you perhaps give it a test?

Re: Bug: "before first headline" error when adding clock out note [9.4.6 (9.4.6-dist @ /home/wenlong/org-9.4.6/lisp/)]

2021-06-27 Thread Dave D
Thank you so much for the quick fix. On 28/06/2021, Nicolas Goaziou wrote: > Hello, > > Dave D writes: > >> It seems the error is caused by function >> org-clock-remove-empty-clock-drawer called by org-clock-out-hook >> >> I have removed that function f

[Orgmode] enabling org-protocol with Firefox 3 and Ubuntu 9.04

2009-11-09 Thread D M German
Hi everybody, if you have tried to enable org-protocol under Firefox you might run into the issue that firefox does not start emacsclient, no matter what the about:config variables say. After spending some time I discovered that this is an issue of Firefox's integration with Gnome. What you need

Re: [Orgmode] Re: Org-mode and Nokia N900

2009-12-11 Thread D M German
Óscar> Thierry Guillemin writes: >> Hello >> >> This question comes after reading >> http://lifehacker.com/5419988/five-best-outlining-tools >> and before buying a N900... >> >> Will it be possible to install Org-mode on the N900 (only Emacs available is >> Qemacs) ? Óscar> It seem

[Orgmode] running org-mode (inside emacs) in the n900

2009-12-14 Thread D M German
Yes, it can be done: http://turingmachine.org/blog/index.php?/archives/99-Running-emacs-and-org-mode-in-the-N900.html I just got it running. The instructions are there. Now I need to figure out where the meta key is ;) --dmg -- -- Daniel M. German http://turingmachine.org/

Re: [Orgmode] Browser Interface to org-mode?

2009-12-21 Thread D M German
Manish twisted the bytes to say: Manish> On Mon, Dec 21, 2009 at 12:24 PM, sumeet pareek wrote: >> I am not a 100% sure but I believe I heard some where in the google tech >> talk about browser interface to org-mode. Could anybody tell me where can I >> find it? It would be a boon to me as

[Orgmode] Encrypting files for org-mobile

2009-12-29 Thread D M German
Hi everybody, Does anybody know if it is possible to keep the files for org-mobile encrypted in the server? I know you can protect them with a password, but that protection is from people who look into the server. How about protecting it from the people who run the server? thanks a lot! -- -- D

Re: [Orgmode] Encrypting files for org-mobile

2009-12-29 Thread D M German
Richard> -Richard Richard> On Tue, Dec 29, 2009 at 4:04 AM, D M German wrote: Hi everybody, Does anybody know if it is possible to keep the files for org-mobile encrypted in the server? I know you can protect them with a password, but that protection is fro

[Orgmode] Re: Encrypting files for org-mobile

2009-12-29 Thread D M German
Bernt Hansen twisted the bytes to say: Bernt> Hi Richard, I don't currently use MobileOrg but I do use encryption Bernt> with org-mode as described here: Bernt> http://doc.norang.ca/org-mode.html#HandlingEncryption Bernt> Regards, Bernt> Bernt Thanks Bernt, for calling my attention to t

[Orgmode] protocol for PDFs?

2010-01-02 Thread D M German
hi there, I am trying to add support in Evince and Xournal for org. I have already implemented most of it in Xournal, but now I am hitting a roadblock. What would the form of the URI for a link to a PDF document and a page be? In other words, is there support for a link to a given page in a PDF

Re: [Orgmode] protocol for PDFs?

2010-01-02 Thread D M German
Jan Böcker twisted the bytes to say: Jan> Example: Jan> [[docview:/home/jan/some-file.pdf::7][Page 7]] Jan> Of course, these links open the file by visiting it in emacs. Jan> I would propose to modify org-docview.el to look in org-file-apps for an Jan> entry for \.pdf\' thanks. This will

Re: [Orgmode] protocol for PDFs?

2010-01-02 Thread D M German
Jan Böcker twisted the bytes to say: Jan> On 02.01.2010 16:20, Darlan Cavalcante Moreira wrote: >> Evince also has an option ("-p") to open the file in a >> given page and this would be enough for a link to a PDF file. Since I prefer >> using Evince instead of docview mode I would be very ha

Re: [Orgmode] protocol for PDFs?

2010-01-02 Thread D M German
I have implemented 'Remember' in xournal. I doubt this feature will ever make into the mainstream. You can check out my fork. it contains many features not in the current distribution, but useful, including very rudimentary search support, ability to jump to next and previous annotations: http://

Re: [Orgmode] protocol for PDFs?

2010-01-02 Thread D M German
Jan> It allows you to link to any document format which doc-view-mode Jan> supports, which includes PDF files. The syntax is: Jan> docview::: Jan> Example: Jan> [[docview:/home/jan/some-file.pdf::7][Page 7]] I have started modifying evince. I got to the point in evince that I can now c

  1   2   >