[Orgmode] Sparse trees and searching for multiple words

2010-09-19 Thread Tom
I see sparse trees can be constructed by searching for a regexp, but I can't find the same ability for multiple searches. For example, I'd like to see entries which contains the words 'cat' and 'dog' in any order. Or 'apple', 'orange', 'melon', 'plum' and 'pear' in any order. Searching for multip

[Orgmode] Feature idea: overwrite time at the prompt when rescheduling

2010-10-08 Thread Tom
I use rescheduling often and it would be convenient if I didn't have to delete the existing time at the schedule prompt and I could just type the new time (like 8am) which would automatically replace (overwrite) the previous text in the prompt. Sometimes it is also useful to edit the existing tim

[Orgmode] Radio targets don't work in headers

2010-02-02 Thread Tom
If I create a radio target in the file <<>> and then somewhere else in the document I use the target in a header like * collection of some info on project X ** collected info about stuff *** note 1 *** note 2 ... Then the word stuff will be a link, but when I click on it it says "No links".

[Orgmode] Re: switching to emacs via keboard shortcut

2010-02-02 Thread Tom
Brody, William (Buck darden.virginia.edu> writes: > > I run org-mode on GMU Emacs for Windows.  During my workflow > I am frequently alt-tab ‘ing to get back to Emacs.  Does anyone have a > way to use a keyboard shortcut (maybe via an autohotkey script) to get back to > emacs. I use this: Caps

[Orgmode] Re: New Org-mode talk by Carsten Dominik

2010-03-07 Thread Tom
Stefan Vollmar nf.mpg.de> writes: > > Hallo, > > we proudly present: > > "Emacs Org-mode: Organizing a Scientist's Life and Work" > I noticed the org color config in the talk was much catchier (e.g. the keywords with bgcolor) than in the default org config. It would be a good idea to make o

[Orgmode] Re: New Org-mode talk by Carsten Dominik

2010-03-07 Thread Tom
Carsten Dominik gmail.com> writes: > > The problem I see here is that if a new user downloads Emacs, > it will have white background and only default colors. > For every face you can define colors for light and dark background: background: The kind of background—either light or dark. http://w

[Orgmode] Cannot reschedule task with repeater

2010-03-07 Thread Tom
It's not clear to me in case of a timestamp like this <2010-03-08 H 21:30 .+1d> why can't the reschedule feature change the date/time part only and leave the repeater part intact? Why does it have to throw the error "Cannot reschedule task with repeater"? I see no compelling reason for not

[Orgmode] Re: Cannot reschedule task with repeater

2010-03-08 Thread Tom
Carsten Dominik gmail.com> writes: > I have now removed this limitation, because, as you say, it > really should not be there.D Cool, thanks. ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org h

[Orgmode] Insert archived item as first child of archive location header

2010-03-10 Thread Tom
When archiving trees I'd like to see the archived items in reverse chronological order at the archive location, so if I jump to the header under which stuff is archived I would see the most recent item at the top. When searching for something in the archives it is much more frequent that I'm looki

[Orgmode] Highlighting current header and its contents

2010-03-21 Thread Tom
One of my main gripes with orgmode is often I cannot make out clearly when the text content of an opened header ends and the next header begins, because there is no apparent visual indication. Of course, I can add empty lines manually to the end of the content, but this solution is not really sati

[Orgmode] Re: Highlighting current header and its contents

2010-03-21 Thread Tom
Dan Davison stats.ox.ac.uk> writes: > > Your overlay code's instructive for me, but I don't understand the > problem it's solving. Isn't the next heading made sufficiently distinct > by being bold and coloured and having an asterisk in front of it? > Not really. My headings are not bold, becaus

[Orgmode] Re: Org productivity tip to prevent accumulation of unscheduled undone tasks

2010-03-26 Thread Tom
Ryan Thompson thompsonclan.org> writes: > > Previously, I had the > problem that I would use remember to add TODO items, but then they > would languish in my TODO list because they would never appear in my > agenda. I use a block agenda for this purpose which shows scheduled items and regular T

[Orgmode] Archiving in same file opens all subtrees and leaves them open

2010-04-03 Thread Tom
I put an ARCHIVE tag to the beginning of an org file: #+ARCHIVE: ::* archive and archived subtrees are put correctly under the archive heading in the same file. The problem is archiving opens all subtrees in the file and leaves them open and it messes up my nicely folded file. I have to refold

[Orgmode] Re: Archiving in same file opens all subtrees and leaves them open

2010-04-04 Thread Tom
Carsten Dominik gmail.com> writes: > > Because normally archiving goes to a different file, where this > would not be a problem. But you can try this patch and run with > it for a while, to see if it causes any problems. Thanks, I'll try it. A possible workaround (if it does cause problems)

[Orgmode] VISIBILITY:folded hides all empty lines after heading if org-cycle-separator-lines is set to negative

2010-05-11 Thread Tom
Here is an org file: file begin - * test1 :PROPERTIES: :VISIBILITY: folded :END: ** test2 * test3 file end - org-cycle-separator-lines is set to -2, so org should hide one empty line after the heading when it's folded and leave the others there. If

[Orgmode] Re: VISIBILITY:folded hides all empty lines after heading if org-cycle-separator-lines is set to negative

2010-05-11 Thread Tom
Tom gmail.com> writes: > Org-mode version 6.33x > I just realized it's not the latest version, because emacs 23.2 preloads its own org for some reason, before I could set the load path and I don't yet know how to prevent it and use the latest org. But I have a feeling thi

[Orgmode] You may experience folding problems with the current version

2010-05-13 Thread Tom
Migrating to 6.36 I found I couldn't open some of the folded trees with TAB. Turns out this line has to be commented in org.el to fix it (modify-syntax-entry ?\n ">") because if the syntax of newline is changed like this then this expression in org-cycle-internal-local will not work in some

[Orgmode] Agenda and excursion

2010-05-13 Thread Tom
Often I do something in an org buffer and then display the agenda to see my tasks. Then later I switch back to that buffer with switch-to-buffer and find that building of the agenda moved the cursor from the point I was to the end of the buffer. It's a bit annoying. Shouldn't org-agenda use save

[Orgmode] Re: Agenda and excursion

2010-05-14 Thread Tom
Carsten Dominik gmail.com> writes: > > > On May 13, 2010, at 11:07 AM, Tom wrote: > > > Often I do something in an org buffer and then display the > > agenda to see my tasks. Then later I switch back to that buffer with > > switch-to-buffer and find that

[Orgmode] Re: Agenda and excursion

2010-05-14 Thread Tom
Carsten Dominik gmail.com> writes: > Ah, that is interesting. Can I have a look at the full custom command > definition you are using? Turned out I called one of my own functions from the skip function with a delay (so it ran after agenda construction finished) and that function moved the cu

[Orgmode] Empty lines are added below heading when task is repeated and org-indent-mode is on

2010-05-14 Thread Tom
Using the latest version (6.36) if I have a heading like this: ** TODO test task stuff SCHEDULED: <2010-05-15 Sat 07:35 +1d> Then an empty line is inserted below the heading (before "stuff") if org-indent-mode is on and logging is set like this: (setq org-log-repeat nil) (setq org-log-done

[Orgmode] Jumping to scheduled item from agend doesn't put cursor on to the heading

2010-05-19 Thread Tom
If I jump to a regular TODO item from the agenda then cursor is put on the heading line. In case of a scheduled agenda item cursor is put to the timestamp. Is it intentional? I often put text content after the heading and before the SCHEDULED timestamp, because I can easily modify the timestamp wi

[Orgmode] Toggle a repeating task in DONE state

2010-06-03 Thread Tom
When in the agenda I sometimes accidentaly press 't' again on a repeating task which is already in DONE state. This makes the task to skip yet another repetition and set the date to the next available date. Is this 'feature' actually useful? It makes sense for a non-repeated task, because there I

[Orgmode] Rescheduling an item works properly only if SCHEDULED is after the heading

2010-06-10 Thread Tom
I sometimes move the SCHEDULED keyword after textual content of a heading, because for me the content is more important to see than the keyword which is a technical detail of org implementation. The problem is if I use org-schedule on such a heading to reschedule the task then it inserts a new SCH

[Orgmode] Archive to beginning of subtree?

2010-08-30 Thread Tom
Is there a setting like org-reverse-note-order for archiving, so that the archived item goes to the beginning of the subtree instead of the end? org-reverse-note-order doesn't seem to affect it. Shouldn't archiving honor the setting of org-reverse-note-order? __

[Orgmode] Re: Archive to beginning of subtree?

2010-08-30 Thread Tom
Tom gmail.com> writes: > > Is there a setting like org-reverse-note-order for archiving, so that > the archived item goes to the beginning of the subtree instead of the > end? org-reverse-note-order doesn't seem to affect it. > > Shouldn't archiving honor the se

[Orgmode] Why can't global cycling be simulated with command events?

2010-09-07 Thread Tom
In one of my org files I use archiving into the same file. This works well, the only problem is org opens every subtree in the file and doesn't restore the previous folding state afterwards. In order to go back to a more useful folding state I push S-tab twice after archiving. Once for OVERVIEW and

Re: [O] [BUG] Changing TODO states sometimes modifies the schedulingof the next heading

2011-07-21 Thread Tom
Nicolas Goaziou gmail.com> writes: > Would you mind telling me if the following patch fixes your problem? > If so, I'll apply it to the code base. > Yes, it seems to work with the test file I mentioned previously in the thread. I'm a bit suprised it took so long until someone fixed the proble

Re: [O] headline navigation and refiling.

2011-10-06 Thread Tom
Carsten Dominik gmail.com> writes: > > > Not a part of org, but I think this occur based library is brilliant: > > > > This is good and should be part of Org-mode. Anyone knows who wrote this? > I wrote it, but this shouldn't be the part of Or

Re: [O] direct link to mails in gmail

2011-10-20 Thread Tom
Rainer M Krug gmail.com> writes: > That is really nice - and I used it to link to gmail emails > from rtm - but there is one thing youi should be aware of: the > link is only valid, if the mail keeps the label. As an example: > If I copy the link from the inbox, paste it into an org file, > and

[O] Putting new to TODO/note to the beginning of the subtree

2011-11-09 Thread Tom
Is there a way to put a new note to the beginning of the target subtree (directly under the heading) instead of inserting after the last item? I'm looking for something like org-archive-reversed-order, but for org-remember. It would be really nice if it could be set separately for subtrees, becau

Re: [O] Putting new to TODO/note to the beginning of the subtree

2011-11-09 Thread Tom
Tommy Kelly verilab.com> writes: > > > Is there a way to put a new note to the beginning of the > > target subtree (directly under the heading) instead of > > inserting after the last item? > > Would org-reverse-note-order be of any use for this > (from the org-remember PDF). Yes, thank you. I

Re: [O] Putting new to TODO/note to the beginning of the subtree

2011-11-09 Thread Tom
Tommy Kelly verilab.com> writes: > > I can't see a way to do that. But if you switched to using org-capture > instead of org-remember, I *think* you can control placement of notes > on at least a per capture template basis, using each template's > :prepend property (http://orgmode.org/org.html#T

[O] org-search-goto.el - full text search to go to locations in your org buffers

2011-12-11 Thread Tom
This package is a simple variant of http://www.emacswiki.org/emacs/org-occur-goto.el The new package uses multi substring matching where the given substrings can appear in any order in the search results. So if you search for "dog video" then it matches both video of some dog and dogs chasing

Re: [O] org-search-goto.el - full text search to go to locations in your org buffers

2011-12-12 Thread Tom
Takaaki ISHIKAWA ieee.org> writes: > > If this package can handle `org-directory' having org files, > or `org-agenda-files', it is more handy. org-agenda-files should be no problem, since this package searches in all opened org buffers, and org opens all agenda files when building the agenda.

[O] Multi string search of org entries

2011-12-15 Thread Tom
This package is a variant of this one: http://thread.gmane.org/gmane.emacs.orgmode/49887 It supports matching multiple substrings in any order in the whole entry (heading+body) and it also highlights the matches. So, for example this entry * Fenton running on the field Dog having fun in natu

[Orgmode] Refile cache expire

2011-02-26 Thread Tom
Caching of refile targets is great, however, I usually have my computer and emacs running for several days (I use hibernation), so sometimes I need to clear the cache manually to have it rebuilt. How about adding an option to set an expiration time for the refile cache after which it is cleared a

[Orgmode] Re: Refile cache expire

2011-02-27 Thread Tom
Tom gmail.com> writes: > when the computer is idle for, say, 5 seconds. I meant 5 minutes, of course. ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailm

[Orgmode] Re: Refile cache expire

2011-02-27 Thread Tom
Samuel Wales gmail.com> writes: > > I'd find automatic regeneration useful. > > Another way: > > * [#A] make failed refile reload the cache automatically > You usually want the existing choices for selecting a > headline. You don't need to regenerate those. Just the > target location

[O] Table formula changes are not always necessary when moving rows

2011-02-28 Thread Tom
I have a table in which I sum the values of all rows in the last row: vsum(@1..@-I-1). The problem is when move a row with M-up before the first row (e.g. I press M-up on the second row) then org modifies this formula to vsum(@2..@-I-1). This is not always the expected behavior, because in this ca

Re: [O] Table formula changes are not always necessary when moving rows

2011-03-07 Thread Tom
Carsten Dominik gmail.com> writes: > You did not show your example, but from the > formula I would assume that you start the table immediately > with data, without a header line org a horizontal separator line. > If you did, you could do vsum(@I..II) and have a formula that is > stable against ro

[O] goto does not accept remote references for local targets

2011-03-08 Thread Tom
I use the goto interface of org-refile a lot to navigate in my org files and I often run into the annoying behavior that goto insists on using local target format when jumping to a header in the current buffer. For example, let's assume I have a todo.org file in which there's a heading called 'tes

Re: [O] goto does not accept remote references for local targets

2011-03-08 Thread Tom
Tom gmail.com> writes: > The problem is if I'm in todo.org then goto accepts local targets > only by their name (without the (todo.org) qualifier), so it > accepts the target only as "test", but not as "test (todo.org)". > BTW, in org 7.5 this &qu

[O] [BUG] Changing TODO states sometimes modifies the scheduling of the next heading

2011-04-02 Thread Tom
I have a heading where the scheduling changed misteriuosly. It is set to repeat weekly and I found it jumped to the next week without me touching it at all. I set up a background watcher and after a week it detected when the unwanted change happens. I could not yet create a simple org file to repr

[O] Re: [BUG] Changing TODO states sometimes modifies the scheduling of the next heading

2011-04-03 Thread Tom
Tom gmail.com> writes: > > I could not yet create a simple org file to reproduce the > problem Here's an org file which demonstrates the bug with org 7.5: * TODO test1 SCHEDULED: <2011-04-02 Szo +1d> * TODO test2 SCHEDULED: <2011-04-03 H .+1w>

[O] Re: [BUG] Changing TODO states sometimes modifies the schedulingof the next heading

2011-04-03 Thread Tom
Matt Lundin imapmail.org> writes: > > I cannot reproduce this. > Did you start emacs without any initialization? I started it with -Q and loaded org 7.5 manually to avoid affecting the test with my own org customizations.

[O] Re: [BUG] Changing TODO states sometimes modifies the schedulingof the next heading

2011-04-03 Thread Tom
Matt Lundin imapmail.org> writes: > > I still cannot reproduce it. > I tried your test file which was different from the test file I suggested in the second mail and I couldn't reproduce the problem with it either. So I looked into this and turns out the problem occurs only if after the state

[O] Re: [BUG] Changing TODO states sometimes modifies the schedulingof the next heading

2011-04-04 Thread Tom
Tom gmail.com> writes: > > Bottom line: the problem does not occur in the English locale, > because there all day abbreviations are 3 chars long, so the > above described simple way of restoring the cursor position > always works. But this is not true for all locales, so org &

[O] org-agenda-todo-ignore-scheduled should have an option to ignore items with time in the future

2011-04-10 Thread Tom
I only want to see actionable items in my agenda, so if, for example, there is something to do at 4pm today then I don't want to see it till then, because I can't work on it anyway. Currently I use org-agenda-skip-function for that with a custom function, but it would be a natural job for org-agen

[O] Turning on repeat logging for a subtree only

2011-04-20 Thread Tom
I generally have repeat logging off, but I want to turn it on for a certain subtree. I added the property LOGGING with the value logrepeat: :PROPERTIES: :LOGGING: logrepeat :END: But this doesn't seem to work, when I toogle the task state the repeat is not logged. I checked the source and appar

[O] a new way to navigate your org files

2011-04-24 Thread Tom
I use org goto to jump quckly to headings, but the other day I forgot the name of the heading, but I remembered its contents. I thought it could be useful if I could navigate org files by content too, so I quickly created this package as a sunday afternoon fun. It is a wrapper around the multi-occ

Re: [O] a new way to navigate your org files

2011-04-25 Thread Tom
Suvayu Ali gmail.com> writes: > > This is very useful. I made some enhancements in the attached patches. > The first one adds a very basic minibuffer history. You can navigate the > history by the usual `M-p' and `M-n'. The second patch fixes an issue, > now you can go to the first match by just

Re: [O] Slowness in Org - how to disable mouse popups/followings

2011-05-06 Thread Tom
Rainer Stengele diplan.de> writes: > I am always struggling with performance problemns when using > Emacs orgmode under Windows. Under Linux I do not see slow > respsonses for my several and long org files. > > Under Windows I run GNU Emacs 24.0.50.1 (i386-mingw-nt5.1.2600) > from trunk 2011-0

[O] org-read-date-prefer-future should prefer next week if the given time is before now

2012-07-12 Thread Tom
I have (setq org-read-date-prefer-future 'time) in my .emacs, so if I give a time like 8am and it is before now then it is interpreted as tomorrow. This is good, because I never want to set times in the past. However if I give "thu 8am" (it is Thursday 11:50am here, so Thu 8am is before now) th

Re: [O] org-read-date-prefer-future should prefer next week if the given time is before now

2012-08-15 Thread Tom
Bastien gnu.org> writes: > > You need to enter 8am thu in this case. > It is a consistency bug then. If thu 8am works in other cases then it should not be the user's job to know which format to use to achieve to desired result. Org should treat both forms in the same way.

Re: [O] Multi string search of org entries

2012-01-05 Thread Tom
Bastien altern.org> writes: > > Please feel free to suggest any better description, I > just took the one from the commentary section of the .el > file. They look fine to me which is not suprising, because I wrote these descriptions in the first place. :)

Re: [O] Multi string search of org entries

2012-01-09 Thread Tom
Thomas Holst de.bosch.com> writes: > > Attached is a patch which corrects this line. > Applied, thanks.

[O] [PATCH] ob.el Adhere to current :padline header during noweb dereferencing.

2012-01-23 Thread tom
At the moment using the :noweb-ref: property approach on subtrees results in the tangled code beeing broken because the newlines before the #+end_src line are excluded from the output. This patch uses :padline to check if a newline should be added. The default being yes, tangling with subtree ma

[O] Support for a and p suffix for morning/afternoon scheduling

2012-05-24 Thread Tom
I use the scheduling prompt very often and I usually give times in 8pm/9am/etc. format, because they are conveniently short to type. Today it occured to me the m is unnecessary, because a and p already gives the necessary info. Could we also support 8a and 9p format for times like 8am and 9pm, so

[O] little elisp help?

2014-07-02 Thread tom
hi guys, I have this: (setq org-link-abbrev-alist '(("foo" . "file:/path/to/%(myfun).txt"))) I'm trying to have "myfun" replace any spaces in the tag with underscores, but I'm not having much luck. Would someone mind giving me a hint? Thanks.

Re: [O] little elisp help?

2014-07-02 Thread tom
this (setq org-link-abbrev-alist '(("foo" . "file:/path/to/%s.txt"))) allow me to do this [[foo:file to open]] but it creates a file with spaces in the name. so I'd like to replace "%s" with "%(myfun)". with your example, how can I get "foo bar loo" from [[foo:foo bar loo]] see what I mea

Re: [O] little elisp help?

2014-07-03 Thread tom
Nick, that did the trick. Thanks very much everybody. On Thu, Jul 3, 2014 at 7:44 AM, Nick Dokos wrote: > tom writes: > > > this > > > > (setq org-link-abbrev-alist > > '(("foo" . "file:/path/to/%s.txt"))) > > > > allow me to

[O] Can org show live charts?

2014-10-21 Thread Tom
Reading the documentation it is not clear for me if live charts are supported. By live chart I mean having a table data and below that an inserted image in the buffer which shows the data rendered from the table, and the image is updated automatically every time the the table is changed (and, say,

Re: [O] Can org show live charts?

2014-10-22 Thread Tom
John Kitchin andrew.cmu.edu> writes: > > I think the answer is sort of. I am no idle timer guru, and this code > would probably not do what you want except for this file. The idea is to > have a named table, use it as a data source in a named code block that > generates the image. Then, make an

Re: [O] Org-mode as a replacement for Google Reader

2013-04-16 Thread Tom
th/usb keyboards. It is not without usability Problems, some would need a rooted phone to solve, but I'm happy with the setup so far. I mostly need it for connectbot sessions. It is a payed app, but there is a free version, so you can test your setup first. Regards, Tom -- Diese Nachricht wurde

[O] XML src block syntax highlighting

2013-04-25 Thread Tom
ml is fontified as a fundamental buffer, not like nxml-mode shows the block contents. nxml-mode /is/ used when I use C-c ' to edit the contents. Do I miss something in my setup to let org-mode use nxml-mode for xml src-blocks? kind regards, Tom -- xmpp://t...@sec.goochesa.de http://www.goochesa.de

Re: [O] XML src block syntax highlighting

2013-04-25 Thread Tom
Hi, Many thanks for your reply. Suvayu Ali schrieb: >On Thu, Apr 25, 2013 at 11:57:49AM +0200, Tom wrote: >> >> #+BEGIN_SRC xml :exports code >> >> >> ... >> >> #+END_SRC >> >> I have org-src-fontify-natively = and it works

Re: [O] XML src block syntax highlighting

2013-04-26 Thread Tom
Hi Suvayu, Suvayu Ali schrieb: >On Thu, Apr 25, 2013 at 05:03:37PM +0200, Tom wrote: >> Suvayu Ali schrieb: >> >> >On Thu, Apr 25, 2013 at 11:57:49AM +0200, Tom wrote: >> >> >> >> #+BEGIN_SRC xml :exports code >> >> >>

[O] images rendering after execution?

2015-11-18 Thread Tom
ered as a link; only after toggling image display twice will the image render inline. Is there some option that always renders images returned by source code blocks inline immediately? None of the options I found in the documentation seemed to work. Thanks, Tom

[O] long running processes

2015-11-18 Thread Tom
long-running functions from within org-mode and see the progress of the computation as it happens. Tom

Re: [O] long running processes

2015-11-18 Thread Tom
elf from the output filter list and sends a notification that execution has completed If the user schedules a second block for execution, the simplest thing to do is return an error if there is already a block executing for that subprocess; alternatively, it could be queued somewhere. Thanks, Tom

Re: [O] long running processes

2015-11-19 Thread Tom
bindings to that. I'll have a look at it for Python. Tom On Thu, Nov 19, 2015 at 5:38 AM, John Kitchin wrote: > Your suggestions sounds possible to me. If you are up for it, I suggest > trying to implement it, and offering it as a patch. > > Tom writes: > > > On Wed, Nov

Re: [O] asynchronous python code blocks in org-mode

2015-12-01 Thread Tom
ual value.) I think that would allow much of the current API to remain in place. Obviously, some things simply can't work. For example, org-babel-reassemble-table expects an actual result, not a future; such post-processing would have to move to a hook function, which probably would be cleaner anyway. Tom

[O] Can org-info.js fold top level only?

2015-05-02 Thread Tom
I tried javscript folding of exported web pages following the instructions here: http://orgmode.org/manual/JavaScript-support.html It works nicely, the top level headlines are initially collapsed and they can be opened with a click, however a click exposes all the lower level headlines under the

[O] target file of capture template does not save

2018-07-27 Thread tom
Hey guys, I have a capture template set up pretty much the way I want it, but the file it writes to does not save afterwards. It's a table line template with some prompts, :prepend, :table-line-position, and :kill-buffer. Why doesn't the file save? Is it supposed to? thanks

Re: [O] target file of capture template does not save

2018-08-01 Thread tom
e org-capture-mode hook? If that's the case, may I have some help with the modification? Or am I missing something else? Thanks. On Fri, Jul 27, 2018 at 7:42 PM tom wrote: > Hey guys, I have a capture template set up pretty much the way I want it, > but the file it writes to does not sa

Re: [O] target file of capture template does not save

2018-08-02 Thread tom
27;ll mark this solved. Org rocks, I don't rock. On Wed, Aug 1, 2018 at 8:41 AM tom wrote: > Me again. Let me try to provide a bit more info. I'm using xdotool to call > "emacsclient -c -e '(org-capture)'". In my init.el, I have both > > (add-hook 'org

Re: [O] [solved] target file of capture template does not save

2018-08-02 Thread tom
On Thu, Aug 2, 2018 at 8:13 AM tom wrote: > You guys are so skillful and awesome you helped me without saying a word! > > After looking around at > > https://emacs.stackexchange.com/questions/477/how-do-i-automatically-save-org-mode-buffers > > I just added a third hook, >

[Orgmode] Worg updating?

2010-09-17 Thread Tom Dye
Aloha all, Thanks to whoever fixed links on Worg. It appears that Worg isn't updating itself now, though. All the best, Tom ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gn

Re: [Orgmode] Worg updating?

2010-09-18 Thread Tom Dye
On Sep 18, 2010, at 7:53 AM, Bastien wrote: Hi all, I cleaned up the Worg publishing mechanism: - The cron'ed publishing mechanism does not allow babel code execution on the server anymore (for obvious security reasons). If your Worg file needs code execution, send me an email and I will t

Re: [Orgmode] Worg updating?

2010-09-19 Thread Tom Dye
Aloha Bastien, I didn't know about the limitation on non-org files. I've moved the pdf files to my server. Thanks for your help. All the best, Tom On Sep 19, 2010, at 8:25 AM, Bastien wrote: Hi Tom, Tom Dye writes: Most of the links to examples in http://orgmode.org/worg/o

Re: [Orgmode] Re: [WIP] OpenOffice Exporter

2010-10-13 Thread Tom Short
luck with embedded images via the HTML route, mainly EPS files. See here: http://permalink.gmane.org/gmane.emacs.orgmode/29585 What type of images are you having problems with? That said, I'm excited about Jambunathan's direct export option. - Tom __

Re: [Orgmode] Re: Internal links in LaTeX export

2010-10-28 Thread Tom Dye
Many thanks to all of you for figuring this out and fixing it. I can confirm that internal and external links both work in the pdf file compiled from the Org-mode LaTeX export, which is way cool and seems miraculous to a dirt archaeologist. All the best, Tom On Oct 28, 2010, at 7:01 PM

Re: [Orgmode] Installing Orgmode through ELPA-tarball

2010-11-01 Thread Tom Short
ng steps look relatively cumbersome. Using git seems like the easiest way to get the latest version with the advantage that you can pick the version you want (latest up-to-the-minute, latest release, or some other release). - Tom ___ Emacs-orgmode mailin

Re: [Orgmode] Re: epresent and Org-mode: using Emacs to run presentations of Org-mode docs

2010-11-02 Thread Tom Short
> > From a sample 52 KB SVG file, Inkscape gives me a 420 KB EPS and Prince a 20 > KB PDF. What features does Inkscape rasterize? I just tried a sample file, and I don't see any rasterization. What takes up room in my test file is embedded font information. - Tom ___

[Orgmode] org-meta-return and lists

2010-11-03 Thread Tom Short
s behavior? * heading - list item A - list item B <- When I hit M-RET here, I'd like a new heading. - Tom ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] org-meta-return and lists

2010-11-03 Thread Tom Short
On Wed, Nov 3, 2010 at 5:50 PM, Anthony Lander wrote: > Hi Tom, > > > In order to avoid a prefix key, I did the following in my .emacs: > > (defun my-org-mode-hook () >  (define-key org-mode-map (kbd "") (lambda () (interactive) > (org-insert-heading 1 nil

[Orgmode] Re: [babel]: Some feedback after the first week usage

2009-11-05 Thread Tom Short
just leave the code parts visible. You're not really tangling, just hiding the non-code stuff. You might even be able to operate the indirect buffer in ess-mode or python mode if you wanted. - Tom ___ Emacs-orgmode mailing list Remember

[Orgmode] Re: Org-mode and Nokia N900

2009-12-14 Thread Tom Short
Qemacs) ? > > Merci d'avance > See here: http://sumoudou.org/0/14.html - Tom ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] org-mobile-push and agenda IDs

2010-01-15 Thread Tom Tobin
I recently upgraded my org-mode, and found that org-mobile-push started to litter my org files with property drawers. I finally figured out how to turn these off (via org-mobile-force-id-on-agenda-items), but the org-mode manual makes it sound like they're necessary for the proper operation of Mob

Re: [Orgmode] org-mobile-push and agenda IDs

2010-01-15 Thread Tom Tobin
On Fri, Jan 15, 2010 at 12:12 PM, Richard Moreland wrote: > Hi Tom, > > They are not required, but they eliminate potential problems that may > be encountered with the simple path-based node identification scheme. > The risk level is fairly low, and you should be fine with the

Re: [Orgmode] emacs/org-mode on Droid?

2010-02-16 Thread Tom Tobin
On Tue, Feb 16, 2010 at 12:18 PM, David Rogoff wrote: > Hi all. > > New org-mode convert also looking at new phones.  It looks like the Moto > Droid would be great for running org-mode.  Has anyone ported emacs to this > platform and gotten org-mode running? I just switched from my iPhone back

[Orgmode] Re: problem with babel and R

2010-08-17 Thread Tom Short
of raw output, so org-babel knows what to replace. - Tom ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Re: [babel] exports, caching, remote execution

2010-08-19 Thread Tom Short
g minimal > example worked (i.e. was not re-run) for me on export to html. Could > you provide an example that demonstrates the problem? Eric, here's an example where the exporter does not respect caching. - Tom #+BABEL: :session *R* :results output :exports both :cache yes * A te

[Orgmode] Org-mode to MS-Word/OOo with vector graphics

2010-09-02 Thread Tom Short
graphics. Although this isn't org-babel specific, it's convenient to use with org-babel since there are so many ways to generate graphic files. See below for an example that uses R to create EPS and windows metafiles (windows only). I'm curious to

RE: [Orgmode] Org-mode to MS-Word/OOo with vector graphics

2010-09-03 Thread Short, Tom
indication that EPS files could work: http://newsgroups.derkeiler.com/Archive/Comp/comp.text.tex/2010-08/msg00 800.html - Tom > -Original Message- > From: David Maus [mailto:dm...@ictsoc.de] > Sent: Thursday, September 02, 2010 15:21 > To: Short, Tom > Cc: emacs-orgmode@g

Re: [Orgmode] Re: [BABEL] [PROPOSAL] Seemless editing of Babel Blocks

2010-09-03 Thread Tom Short
ocks, but doesn't work outside that. Any hints to get me a little further? - Tom ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] Re: Org now fontifies code blocks

2010-09-07 Thread Tom Short
I think it'd help for new users to keep it on by default, but since it can be changed, I'm fine either way. How hard would it be to use a property, so it could be changed on a per-file basis? If it's difficult, that time may be better spent profiling and speeding it up. - Tom On T

Re: [O] Editing Org files on the iPad

2011-08-03 Thread Tom Short
On Wed, Aug 3, 2011 at 12:46 PM, Carl Bolduc wrote: > Right now, I am tempted by the many great plaint text editor that exist in > iOS. This way, I would get a great typing experience but I would lose the > ability to perform actions on the text until I get back to the PC. > Is anyone in a similar

Re: [O] The Orgfather

2011-08-28 Thread Tom Davey
I LOLd: "And this unicorn? Does it really look queer?" -- Tom Davey t...@tomdavey.com New York NY USA

  1   2   3   4   5   6   >