Re: Feature request: Allow export to convert broken links to plain text

2023-09-09 Thread Ryan C. Thompson
On 1/13/19 5:34 PM, Berry, Charles wrote: Looks like your original idea to revise `org-export-data' might be best. IIUC, you need to add the link text to the SIGNAL-DATA in each of the places where `org-export-resolve-*-link' functions call `signal', then modify `org-export-data' to ignore th

Bug: org-eldoc should require org-refile [9.3.6 (release_9.3.6-442-g97f0f1 @ /home/ryan/.emacs.d/straight/build/org-plus-contrib/)]

2020-04-07 Thread Ryan C. Thompson
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See https://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list.

[Orgmode] Org-remember: How to unambiguously store notes to level-2 and deeper headlines?

2009-11-27 Thread Ryan C. Thompson
Hi, Is there a way to unambiguously specify non-top-level headers as org-remember targets in templates? My specific use case is that I want to split my "Tasks" entries list into sublists, and I want to store new tasks in Tasks/Unsorted by default. I know I could just specify "Unsorted" as the

[Orgmode] Bug Report: TAB on empty headline cycles through the wrong levels

2009-11-27 Thread Ryan C. Thompson
I have discovered a possible bug with the new 6.33 feature of cycling empty headline levels with TAB. IT seems that org will always assume that the initial level of the headline is the "base" level. Pressing TAB once will always go one level deeper than that, to the "child" level, TAB a second

[Orgmode] Bug Report: org-blocker-hook and org-trigger-hook are named incorrectly

2009-11-27 Thread Ryan C. Thompson
I believe it is the emacs convention to distinguish between hooks that take no arguments and hooks that do. Since org-blocker-hook and org-trigger-hook pass an argument to their functions, they should actually be called org-blocker-functions and org-trigger-functions. From the elisp info, 23.1

Re: [Orgmode] Setting org-remember-store-without-prompt specifically for certain templates?

2009-10-25 Thread Ryan C. Thompson
11:00 PM, Ryan C. Thompson wrote: Hi Ryan, you are completely right, I was mistaken. No, you cannot currently do what you want on a per-template basis. - Carsten ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies t

Re: [Orgmode] Setting org-remember-store-without-prompt specifically for certain templates?

2009-10-24 Thread Ryan C. Thompson
Carsten Dominik wrote: All you need to do is *not* to specify file and headline for this template - then you will be prompted. If I don't specify a file and headline, won't the note just be stored under org-default-notes file and org-remember-default-headline? Or even remember-data-file? __

Re: [Orgmode] Setting org-remember-store-without-prompt specifically for certain templates?

2009-10-21 Thread Ryan C. Thompson
g asks me where to refile it to. Darlan At Wed, 21 Oct 2009 11:15:23 -0700, "Ryan C. Thompson" wrote: ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Setting org-remember-store-without-prompt specifically for certain templates?

2009-10-21 Thread Ryan C. Thompson
Hi, I want to be prompted for a location to file some org-remember templates, but not others. How can I set org-remember-store-without-prompt in a template-specific fashion? I tried putting code in the template with %(sexp) that would set a buffer-local value for this variable, but I can't se

Re: [Orgmode] Easier customization of TODO keyword colors

2009-09-04 Thread Ryan C. Thompson
Bastien wrote: Interesting - would you like to add this in org-hacks? http://orgmode.org/worg/org-hacks.php If so, please send me your username on repo.or.cz (if you are not already a Worger...) Thank! I'm not on either, actually. I'm a relative newcomer to org-mode and elisp hacking in

[Orgmode] Easier customization of TODO keyword colors

2009-09-03 Thread Ryan C. Thompson
Here is some code I came up with some code to make it easier to customize the colors of various TODO keywords. As long as you just want a different color and nothing else, you can customize the variable org-todo-keyword-faces and use just a string color (i.e. a string of the color name) as the

[Orgmode] Re: Useful utility function: org-sort-multi

2009-08-30 Thread Ryan C. Thompson
Benjamin Andresen wrote: if you have the following list * Test Sorting ** TODO Charlie ** WAITING Beta ** TODO Alpha ** STARTED Beta ** STARTED Charlie ** TODO Beta ** STARTED Alpha ** WAITING Charlie ** WAITING Alpha calling org-multi-sort with ?o ?a will sort it like this * Test Sorting **

[Orgmode] Useful utility function: org-sort-multi

2009-08-29 Thread Ryan C. Thompson
I found myself having to sort by multiple criteria, and I was doing it with multiple calls to org-sort-entries-or-items. Then I decided to abstract the repetition into a function. Here it is: (defun org-sort-multi (&rest sort-types) "Sort successively by a list of criteria, in descending orde

[Orgmode] Re: Vertical split in Emacs 23

2009-07-31 Thread Ryan C. Thompson
I believe the function you're looking for is split-window-sensibly. Try M-x describe-function split-window-sensibly. It describes all the relevant variables that control its behavior. If you wish to affect the behavior of only a specific case of splitting windows (for example, the org-todo fun

[Orgmode] Setting custom frame parameters for org remember frame

2009-07-03 Thread Ryan C. Thompson
I am using org-remember set to open a new frame when used, and the default frame size is much too large. To fix this, I have designed some advice and a custom variable to implement custom parameters for the remember frame: (defcustom remember-frame-alist nil "Additional frame parameters for dedi

[Orgmode] Setting custom frame parameters for org remember frame

2009-07-03 Thread Ryan C. Thompson
I am using org-remember set to open a new frame when used, and the default frame size is much too large. To fix this, I have designed some advice and a custom variable to implement custom parameters for the remember frame: (defcustom remember-frame-alist nil "Additional frame parameters for d

Re: [Orgmode] Org-remember-handler fix for empty remember buffer

2009-06-08 Thread Ryan C. Thompson
Carsten Dominik wrote: Fixed, thanks. - Carsten On Jun 4, 2009, at 7:45 PM, Ryan C. Thompson wrote: If you used the code I sent in my previous email, I discovered a bug in it. It would delete the last nonblank line as well. I have fixed this in my code. I've fixed things by copyin

[Orgmode] Org-remember-handler fix for empty remember buffer

2009-06-07 Thread Ryan C. Thompson
Hi, I ran into a problem with org's remember functionality, and found a fix for it. The problem is that if you attempt to either abort or remember an empty buffer (that is, a buffer containing only whitespace and comments), then org-mode hits an error and fails to do either, leaving the buffe