[O] bug#15888: 24.3.50; Eval-after-load eval'ed twice

2013-11-16 Thread Josh
On Wed, Nov 13, 2013 at 1:27 PM, Sebastien Vauban wrote: > (with-eval-after-load "org" > (message "Eval this when Org is loaded") > (sit-for 3) > (message "")) > > the code block in the `with-eval-after-load' is eval'ed twice whenever an Org > file is loaded. Have you checked to see what ha

[O] Macro that calls external program

2019-03-10 Thread Josh
/home/josh/mybinary $1 {{{func(Text Argument)}}} and this would be setup to call an external program and the output of the program would replace the macro on export. /home/josh/mybinary "Text Argument" Thanks! Josh

Re: [O] Macro that calls external program

2019-03-11 Thread Josh
is an external program before it is exported. Thanks in advance! Josh On Sunday, 10 Mar 2019 at 15:37, Josh wrote: Hi, I am new to emacs and orgmode. I spent the last couple days reading most of the docs before diving in, but I didn't see anywhere how I could have a macro that inste

Re: [O] Macro that calls external program

2019-03-11 Thread Josh
rying to figure out how to attach an external program to `org-export-before-parsing-hook' or `org-export-before-processing-hook' to pipe the entire Org file through... Josh On Mon, 11 Mar 2019, Ken Mankoff wrote: Hi Josh, On 2019-03-10 at 23:37 +0100, Josh wrote... I am new to em

Binding literal tab to C-Tab

2020-03-06 Thread Josh
"C-") 'my-insert-tab-char) Thanks! Josh

Shift select

2020-03-06 Thread Josh
work on headings, and assign those other functions to other bindings? (setq org-support-shift-select t) Thanks! Josh

[Orgmode] dates in a spreadsheet

2010-03-16 Thread Josh Mattoon
I'm using the spreadsheet capabilities of org for the first time (very cool!) to plan an upcoming trip. I'd like to create a column formula to automatically calculate the dates/day of week but I'm a bit stumped. I don't see a way for the formula to know which row it is currently processing. I'm

Re: [Orgmode] dates in a spreadsheet

2010-03-17 Thread Josh Mattoon
re closed on certain days. It goes without saying that I've spent more time trying to figure this out than it would actually save so it's more about education at this point :) On Wed, Mar 17, 2010 at 8:26 AM, Dan Davison wrote: > Josh Mattoon writes: > > > I'm usi

Re: [Orgmode] dates in a spreadsheet

2010-03-17 Thread Josh Mattoon
+ 1 Exactly what I wanted! I can insert days, move them around, and just hit C-u C-c C-c to have it update. I'd like to understand how it works though, if you don't mind. What does the ::$1 synax mean? And how did it know that we were dealing with a date? On Wed, Mar 17, 2010 at 12:58

[O] Version 7.5: C-c C-t fails with "args out of range"

2011-03-08 Thread Josh Berry
q arg nil org-blocker-hook nil)) (when (and org-blocker-hook ...) (setq org-blocker-hook nil)) (save-excursion (catch ... ... ... ... ...))) org-todo(nil) call-interactively(org-todo nil nil) -- Can you please advise me on what (if anything) I should do next? Thanks in advance for your help! -- Josh

Re: [O] Version 7.5: C-c C-t fails with "args out of range"

2011-03-08 Thread Josh Berry
On Tue, Mar 8, 2011 at 15:25, Nick Dokos wrote: > Josh Berry wrote: > >> I just upgraded from org-mode 7.4 to 7.5, and I can't set or change >> TODO states at all with C-c C-t now; an args-out-of-range error gets >> raised.  I've tried doing a "make clean&q

Re: [O] Version 7.5: C-c C-t fails with "args out of range"

2011-03-08 Thread Josh Berry
On Tue, Mar 8, 2011 at 18:14, Nick Dokos wrote: > Josh Berry wrote: > >> On Tue, Mar 8, 2011 at 15:25, Nick Dokos wrote: >> > Josh Berry wrote: >> > >> >> I just upgraded from org-mode 7.4 to 7.5, and I can't set or change >> >> TODO

Re: [O] Version 7.5: C-c C-t fails with "args out of range"

2011-03-08 Thread Josh Berry
On Tue, Mar 8, 2011 at 22:55, Carsten Dominik wrote: > > On 9.3.2011, at 06:49, David Maus wrote: > >> At Tue, 8 Mar 2011 15:08:57 -0800, >> Josh Berry wrote: >>> >>> Hi list, >>> >>> I just upgraded from org-mode 7.4 to 7.5, and I can&#x

Re: [O] Custom Agenda View for Projects

2011-03-17 Thread Josh Berry
has children, it won't be displayed in a tags-todo agenda view, because that takes dependencies into account. Have you tried just a "tags" view with a match of "TODO=\"PROJ\""? IIRC this will do what you want. So it would be: ("P" "Projects" tags "TODO=\"PROJ\"" ((org-agenda-overriding-header "List of Projects"))) -- Josh

Re: [O] Custom Agenda View for Projects

2011-03-18 Thread Josh Berry
On Fri, Mar 18, 2011 at 10:57, Jason McBrayer wrote: > On Thu, Mar 17, 2011 at 6:55 PM, Josh Berry wrote: > >> I think org considers child tasks to be dependencies of the parent >> task -- so if a parent task (such as your PROJ) has children, it won't >> be display

[O] [PATCH] Couple of small fixes in exporting node.js and css content.

2014-08-04 Thread Josh Berry
bute as well as I could. Thanks! -josh From 0441982a9457f9bbd953a06ab4fa830c6ffc967b Mon Sep 17 00:00:00 2001 From: Josh Berry Date: Mon, 4 Aug 2014 22:45:43 -0400 Subject: [PATCH 1/2] Fix css export when proprietary properties are used * htmlize.el (htmlize-face-size): Check for a list inst

[O] [PATCH] Couple of small fixes in exporting node.js and css content.

2014-08-05 Thread Josh Berry
bute as well as I could. Thanks! -josh p.s. The toy paper is here: http://taeric.github.io/DancingLinks.html From 0441982a9457f9bbd953a06ab4fa830c6ffc967b Mon Sep 17 00:00:00 2001 From: Josh Berry Date: Mon, 4 Aug 2014 22:45:43 -0400 Subject: [PATCH 1/2] Fix css export when proprietary prop

[O] [PATCH] Couple of small fixes in exporting node.js and css content.

2014-08-05 Thread Josh Berry
bute as well as I could. Thanks! -josh p.s. The toy paper is here: http://taeric.github.io/DancingLinks.html Feedback welcome!

[O] Running Node.js and exporting css.

2014-08-22 Thread Josh Berry
+BEGIN_SRC css foo { -webkit-appearance: none; } #+END_SRC I cobbled a small change that seemed to fix that. At any rate, again apologies for the previous spam. I didn't want to just respam immediately with an apology. Thanks! -- josh

[O] Bug [w/patch]: TODO blocking doesn't work across files with different TODO keyword sets

2013-08-31 Thread Josh Berry
nvocations in org.el, and didn't see any more typos of this nature.) Thanks, Josh diff --git a/lisp/org.el b/lisp/org.el index 97b5365..985dd74 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -4602,7 +4602,7 @@ Otherwise, these types are allowed: (make-variable-buffer-local 'org-not-done-

Re: [O] Problem with org-agenda-clockreport-mode and tag-filtered view in agenda

2015-05-04 Thread Josh Berdine
tion correct, and if so is there a different way to filter the clockreport by tag? Cheers, Josh

Re: [O] Writing .el files for org in org?

2014-05-22 Thread Josh Berry
ving a procedure to "detangle" would be very nice. Thanks! -josh

Re: [O] Advice needed: Cant find a decent way to autosync my work TODO org file between laptop and work pc

2014-05-25 Thread Josh Berry
mmands that moving between the flies shouldn't be that much of a burden, if you do that often. Otherwise, things definitely work well for agenda mode and such. -josh

[O] Bug: org-clock-sum-current-item/org-clock-get-sum-start not respecting LAST_REPEAT [9.0.9 (release_9.0.9-697-gb0776e @ /usr/local/share/emacs/site-lisp/org/)]

2017-08-05 Thread Josh Moller-Mara
7, which changed org-clock-sum to do something different with daylights savings. I'm currently using Emacs : GNU Emacs 26.0.50.2 (x86_64-pc-linux-gnu, GTK+ Version 3.22.5) of 2017-01-18 Package: Org mode version 9.0.9 (release_9.0.9-697-gb0776e @ /usr/local/share/emacs/site-lisp/org/) Best, Josh

Re: [O] Change in appearance of org-todo-keywords

2017-08-06 Thread Josh Moller-Mara
s if I don't set org-todo-state-tags-triggers. >From what I can tell, doing something like (org-toggle-tag "sometag" 'off) produces these double colons. It seems to have to do with the way that org-split-string no longer returns nil, but returns (""). Best, Josh

Re: [O] Change in appearance of org-todo-keywords

2017-08-07 Thread Josh Moller-Mara
eems to delete currently set tags for a heading. It seems that calling ~(match-string 1)~ after ~(replace-match "")~ makes the former return an empty string, so the ~current~ tags get set as an empty string. It also still seems to set a blank tag ("::") if there was a tag set previously. Best, Josh

[O] Bug: Marking repeated tasks with two tags as DONE causes problems

2017-08-11 Thread Josh Moller-Mara
6c0 @ /usr/local/share/emacs/site-lisp/org/) There still seems to be a problem with org-toggle-tag, which is causing this. I think it has to do with the "replace-match" again. "org-split-string" doesn't save match data, so "replace-match" replaces the wrong thing. Best, Josh

Re: [O] Bug: Marking repeated tasks with two tags as DONE causes problems

2017-08-11 Thread Josh Moller-Mara
Nicolas Goaziou writes: > > I still cannot reproduce it. > > Does the very recent 10b1cfb0317274a91500562a2872f2626160f079 fix this? > Yup. That commit seems to fix it. Thanks! Best, Josh

Re: Help speeding up Org iCal export

2022-01-20 Thread Josh Moller-Mara
(let ((org-export-with-broken-links t) (gc-cons-threshold 8000)) (org-icalendar-combine-agenda-files))) The right solution would probably be to not have broken links in the first place. :P Or maybe org-id-update-id-locations could be debounced or cached in some way. Best, Josh

Re: Inserting org-mode heading links the org-refile way

2020-05-06 Thread Josh Moller-Mara
k-to-org-use-id t)) ; Add an ID if it doesn't exist (insert (org-with-point-at (get-text-property 0 'org-hd-marker x) (org-store-link nil))) Note: This also uses dash.el functions/macros. You can replace that as needed