[PATCH] doc/misc/org.org: Corrected info mixup.

2024-04-03 Thread Lee Thompson
This is my first contribution guys please be patient if I've got something wrong. Let me know if the changelog needs more info. >From 61e18c9e26f6bdbaaff785969881624f9a1c7068 Mon Sep 17 00:00:00 2001 From: Lee Thompson Date: Wed, 3 Apr 2024 16:20:15 +0100 Subject: [PATCH] ; * doc/misc/org.

'Markdown Export' Info Wrong?

2024-04-03 Thread Lee Thompson
Hi all, I noticed when browsing the info manual for Markdown Export options this line concerning headline styles seems to be wrong: > Header and sectioning structure > --- > > Based on ‘org-md-headline-style’, Markdown export can generate headlines > of both _atx_

2 Surprises and 2 Questions Regarding Org Tangle

2021-02-11 Thread Lee Jia Hong
(First time posting to a mailing list, please correct me if I did something wrong.) TLDR: Surprise 1: Different Noweb reference placing styles produces different tangled results. Question 1: Is it a bug? Surprise 2: Source block naming with #+NAME: and :noweb-ref produce different tangled

[PATCH] Update ob-haskell from deprecated inf-haskell-mode to haskell-interactive-mode

2020-07-14 Thread Seth Lee
Hello, I've made a patch for `ob-haskell.el`. I'm not really an elisper, but I made a patch that seems to work on my machine. Issue: compiling code in a source block that had an infinite list that would evaluate in the ghci. All code, even with `:compile` flag set would be run in ghci. Updating

[O] Org - mode manual missing

2019-09-25 Thread Logan Lee
Hello My emacs doesn't come with org-mode manual. C-h i m then org TAB produces nothing. How to install the manual? THX

Re: [O] [PATCH 1/3] org-habit: Add org-habit-scheduled-past-days

2019-02-08 Thread John Lee
On Thu, 7 Feb 2019, at 21:27, John Lee wrote: > On Wed, 6 Feb 2019, at 21:32, Nicolas Goaziou wrote: > > I applied them in master. Thank you. > > Thank you! > > > Could you provide an entry for ORG-NEWS file, too? Attached. From ded5296358ec2bcfbe58a662b5112226298bf43f

Re: [O] [PATCH 1/3] org-habit: Add org-habit-scheduled-past-days

2019-02-07 Thread John Lee
On Wed, 6 Feb 2019, at 21:32, Nicolas Goaziou wrote: > I applied them in master. Thank you. Thank you! > Could you provide an entry for ORG-NEWS file, too? Will do.

Re: [O] Closing a task yesterday (or changing the day cutoff to 4am)

2019-02-03 Thread John Lee
Also see variable org-use-effective-time On Sat, 2 Feb 2019, at 15:30, Leo Gaspard wrote: > Uwe Koloska writes: > > Maybe the variable 'org-extend-today-until' can help. > > Indeed, thank you! >

Re: [O] [PATCH 1/3] org-habit: Add org-habit-scheduled-past-days

2019-02-03 Thread John Lee
changes in response to review feedback) is "greying out" habits that you just did, by applying face 'org-agenda-done when a habit is scheduled for the future. On Sun, 3 Feb 2019, at 16:03, John Lee wrote: > * lisp/org-habit.el (org-habit-scheduled-past-days): New variable &g

[O] [PATCH 1/3] org-habit: Add org-habit-scheduled-past-days

2019-02-03 Thread John Lee
* lisp/org-habit.el (org-habit-scheduled-past-days): New variable * lisp/org-agenda.el (org-agenda-get-scheduled): override `org-scheduled-past-days' for habits if `org-habit-scheduled-past-days` is not nil TINYCHANGE --- lisp/org-agenda.el | 4 +++- lisp/org-habit.el | 15 +++

Re: [O] org-habit: allow overriding org-scheduled-past-days and always including time of day

2019-02-03 Thread John Lee
On Sun, 18 Nov 2018, at 23:40, Nicolas Goaziou wrote: > * lisp/org-habit.el (org-habit-scheduled-past-days): New variable. > > > (when (or (and (> ddays 0) (< diff ddays)) > > - (> diff org-scheduled-past-days) > > + (> diff (if habitp > > +

[O] [PATCH 3/3] org-habit: Use face 'org-agenda-done for habits scheduled for future

2019-02-03 Thread John Lee
* lisp/org-agenda.el (org-agenda-get-scheduled): Use the face. This has the effect that if you just did the habit, it is "greyed out" in the agenda. TINYCHANGE --- lisp/org-agenda.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index

[O] [PATCH 2/3] org-habit: Always show time of day designation for habits

2019-02-03 Thread John Lee
* org-agenda.el (org-agenda-get-scheduled): Always show the time of day designation for habits TINYCHANGE --- lisp/org-agenda.el | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 9145cafa8..39ae85f30 100644 ---

[O] [PATCH 1/3] org-habit: Add org-habit-scheduled-past-days

2019-02-03 Thread John Lee
* lisp/org-habit.el (org-habit-scheduled-past-days): New variable * lisp/org-agenda.el (org-agenda-get-scheduled): override `org-scheduled-past-days' for habits if `org-habit-scheduled-past-days` is not nil TINYCHANGE --- lisp/org-agenda.el | 8 +++- lisp/org-habit.el | 15

Re: [O] Mark vacation days

2019-02-03 Thread John Lee
I don't know a good way to do this out of the box. Here are two ways you could go about it, but they both involve a bit of programming. They would all use org-agenda-day-face-function similar to the code you already posted. 1. Least programming: Add emacs diary entries (rather than recording

Re: [O] org-habit: allow overriding org-scheduled-past-days and always including time of day

2019-02-02 Thread John Lee
On Sun, 18 Nov 2018, at 23:40, Nicolas Goaziou wrote: > Hello, Hi, sorry Nicolas I totally missed your review comments! > John Lee writes: For context since it's months ago now: > > My own workflow around this is similar to GTD, so I'm using SCHEDULED > > as basically a way

[O] [PATCH] org-habit: allow overriding org-scheduled-past-days and always including time of day

2018-11-05 Thread John Lee
I guess I'm supposed to add the [PATCH] tag to the subject line? So this email is just to do that. Sorry if I've missed some instructions about this... On Mon, 5 Nov 2018, at 00:31, John Lee wrote: > Hi > > Here's a couple of patches that add new org-habit variables. I hope the &

[O] org-habit: allow overriding org-scheduled-past-days and always including time of day

2018-11-04 Thread John Lee
yeballing it to see which ones are around now in time. This motivates `org-habit-always-show-time'. I have not yet submitted the FSF copyright assignment form but am prepared to do so. >From 7bcf7b70b201af7a3d3cbbcf6a95511944370627 Mon Sep 17 00:00:00 2001 From: John Lee Date: Sun, 4 Nov 2018 2

[O] Agenda Bulk Scatter fails if org-log-reschedule is not nil

2018-08-11 Thread Willy Lee
I have org-log-reschedule set to 'note, and when I try to mark some items for bulk scatter, I see something in *Messages* like the following: Skipping removed entry at # Acted on 1 entries, skipped 4 (disappeared before their turn) If I set org-log-reschedule to nil, it works fine. I found

[O] Orgmode Manual typo

2016-04-16 Thread Lee
http://orgmode.org/org.html#Resolving-idle-time .6 Taking notes with a timer Org *provides provides* two types of timers. -- Fangyuan Li Master Student at Department of Computer Science Stony Brook University Email: maplain...@gmail.com

Re: [O] HTML export doesn't work when #+TITLE: is added

2015-09-15 Thread Lee Hinman
Lee Hinman writes: > Hi Org-ML, > > I'm trying to resolve an issue similar to the one here: > http://lists.gnu.org/archive/html/emacs-orgmode/2015-08/msg01195.html > > Where I cannot export a file with a #+TITLE in it with the latest > org-mode release. To follow-up

Re: [O] HTML export doesn't work when #+TITLE: is added

2015-09-08 Thread Lee Hinman
it to be able to use the newer org-mode version (8.3.1)? Is there not a way to override the installed version of org-mode with a newer one from ELPA? 0: http://lists.gnu.org/archive/html/emacs-orgmode/2015-08/msg01196.html -- ;; Lee

[O] bug#17724: 24.4.50; regression: error `recenter'ing a window that does not display current-buffer. when opening org-mode file

2014-06-19 Thread lee
Eli Zaretskii e...@gnu.org writes: From: lee l...@yun.yagibdah.de Cc: monn...@iro.umontreal.ca, b...@altern.org, 17...@debbugs.gnu.org, g...@gmx.de, theonewiththeevill...@yahoo.fr Date: Wed, 18 Jun 2014 13:10:19 +0200 It's git, right? The one that has git checkout BRANCH and stuff

[O] bug#17724: 24.4.50; regression: error `recenter'ing a window that does not display current-buffer. when opening org-mode file

2014-06-18 Thread lee
Eli Zaretskii e...@gnu.org writes: From: lee l...@yun.yagibdah.de Date: Tue, 17 Jun 2014 19:15:33 +0200 Cc: Bastien b...@altern.org, 17...@debbugs.gnu.org, g...@gmx.de, Nicolas Richard theonewiththeevill...@yahoo.fr Having cloned as described on http://savannah.gnu.org/git/?group

[O] bug#17724: 24.4.50; regression: error `recenter'ing a window that does not display current-buffer. when opening org-mode file

2014-06-17 Thread lee
Bastien b...@altern.org writes: Nicolas Richard theonewiththeevill...@yahoo.fr writes: I don't know if the bug should be closed in this siutation, so I'll leave it to someone else. It should not be closed in Emacs bugs system yet, because the master branch of Org is not released and not

[O] bug#17794: Acknowledgement (24.4.50; change in src/window.c breaks desktop mode)

2014-06-17 Thread lee
This is a duplicate of #17769. Changing window.c to if (buf != current_buffer) // error (`recenter'ing a window that does not display current-buffer.); return Qnil; works here as a workaround until the problem is fixed. -- Knowledge is volatile and fluid.

[O] bug#17724: 24.4.50; regression: error `recenter'ing a window that does not display current-buffer. when opening org-mode file

2014-06-17 Thread lee
Stefan Monnier monn...@iro.umontreal.ca writes: if (buf != current_buffer) // error (`recenter'ing a window that does not display current-buffer.); return Qnil; ... in src/window.c seems to work for me. Using `emacs-24' also works, without defeating the purpose of the

[O] Bug: ob-clojure tangling does not handle comments correctly [8.2.5h (8.2.5h-6-g8e1386-elpa @ /usr/local/Cellar/emacs/HEAD/share/emacs/24.3.50/lisp/org/)]

2014-02-06 Thread Lee Hinman
-if-current) org-from-is-user-regexp \\Lee Hinman\\ org-src-mode-hook '(org-src-babel-configure-edit-buffer org-src-mode-configure-edit-buffer) org-agenda-before-write-hook '(org-agenda-add-entry-text) org-babel-pre-tangle-hook '(save-buffer) org-agenda-dim-blocked-tasks nil org-mode-hook '(er/add-org

Re: [O] Bug: ob-clojure tangling does not handle comments correctly [8.2.5h (8.2.5h-6-g8e1386-elpa @ /usr/local/Cellar/emacs/HEAD/share/emacs/24.3.50/lisp/org/)]

2014-02-06 Thread Lee Hinman
On 2/6/14, 9:32 AM, Bastien wrote: Can you try with latest ob-clojure.el from the master branch? We fixed a few things recently, and the example works fine for me. I tried it running from git (org-version returns Org-mode version 8.2.3a (release_8.2.3a @

[O] Bug: indenting in sh-mode org-babel source block causes 100% CPU [8.2.3c (8.2.3c-elpa @ /Users/hinmanm/.emacs.d/elpa/org-20131115/)]

2013-11-22 Thread Lee Hinman
, this works completely fine in a regular sh-mode buffer, it only freezes if editing an org-babel block. I've used the profiler to narrow this down to something in the smie indention code, but my elisp-fu is too weak to narrow any further. ;; Lee Hinman Emacs : GNU Emacs 24.3.50.1 (i386-apple

[O] Bug: Command org-toggle-pretty-entities does not display x_{i}^{j} correctly [7.9.4 (7.9.4-elpa @ /home/jae/.emacs.d/elpa/org-20130325/)]

2013-03-29 Thread Jae Hee Lee
Command org-toggle-pretty-entities does not display x_{i}^{j} correctly. When subscript and supersript _{i} and ^{j} are combined, _{i} is displayed correctly as subscript, but ^{j} is not displayed as superscript. Emacs

Re: [O] org-sparse-tree on region or subtree?

2011-03-13 Thread Lee Hinman
Bernt Suvayu, Thanks. Narrowing to subtree and then running org-sparse-tree worked great. -- Lee On Fri, Mar 11, 2011 at 7:18 PM, Bernt Hansen be...@norang.ca wrote: Lee Hinman hin...@gmail.com writes: Is it possible to run org-sparse-tree on a specific region or subtree of an org file

[O] org-sparse-tree on region or subtree?

2011-03-11 Thread Lee Hinman
) on the 2011-02 February subtree would give me that. But I *think* org-sparse-tree uses org-occur which always starts at point-min, but I could easily be mis-reading the code. Does anyone have any ideas? -- Lee Hinman hin...@gmail.com

[Orgmode] Tag cloud in Agenda view?

2010-05-13 Thread David Lee
Hi everyone, Is it possible to generate tag cloud buffer in agenda view? Thanks, - David ___ 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] After TODO statistics problem

2010-05-12 Thread David Lee
Hi all, I add CNCL(cancel) and WAIT to TODO keywords, which is copied from Prof.Dominik's presentation. In below example, the statistics of TODO should be [1/3] (because CNCL should not be considered as a valid headline), but not [1/4]. How to omit the CNCL headline? Shall I modify value

[Orgmode] schedule/deadline and ido-mode conflict

2010-05-12 Thread David Lee
Hi everyone, After insert schedule and deadline by C-c C-s, C-c C-d, I switch buffer by ido-mode command ido-switch-buffer. Emacs will give out a message: Error in post-command-hook: (void-variable org-ans1) And ido-switch-buffer doesn't work. My environment: Emacs 23.1, Org-mode 6.36.

Re: [Orgmode] schedule/deadline and ido-mode conflict

2010-05-12 Thread David Lee
On 05/13/2010 10:26 AM, Nick Dokos wrote: David Leezhushen...@gmail.com wrote: On 05/12/2010 11:46 PM, Nick Dokos wrote: David Leezhushen...@gmail.com wrote: After insert schedule and deadline by C-c C-s, C-c C-d, I switch buffer by ido-mode command ido-switch-buffer. Emacs will give

Re: [Orgmode] schedule/deadline and ido-mode conflict

2010-05-12 Thread David Lee
On 05/12/2010 11:46 PM, Nick Dokos wrote: David Leezhushen...@gmail.com wrote: After insert schedule and deadline by C-c C-s, C-c C-d, I switch buffer by ido-mode command ido-switch-buffer. Emacs will give out a message: Error in post-command-hook: (void-variable org-ans1) And

[Orgmode] setting org-export-latex-image-default-option on a per file basis?

2010-02-09 Thread Lee Hinman
so it isn't configurable via that method. Does anyone have a suggestion of how I could tweak this variable on a per file basis? Thanks for any suggestions. -- Lee Hinman hin...@gmail.com ___ Emacs-orgmode mailing list Please use `Reply All' to send

[Orgmode] possible bug in org-goto-local-search-headings

2009-11-12 Thread Lee Hinman
bound noerror)) (when (let ((context (mapcar 'car (save-match-data (org-context) (and (member :headline context) -- Lee Hinman ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode

Re: [Orgmode] possible bug in org-goto-local-search-headings

2009-11-12 Thread Lee Hinman
Carsten, I admit I could be using the function inappropriately. Please let me know if am. I have a little function I wrote to help me maintain a journal, I didn't like the formatting I got using remember. Here is the function. (defun lee-journal-entry () Create a new journal entry for today

Re: [Orgmode] Re: Export as HTML

2009-03-30 Thread roc lee
2009/3/30 Sébastien Vauban zthjwsqqa...@spammotel.com Hi Carsten, Carsten Dominik wrote: On Mar 30, 2009, at 10:55 AM, Sébastien Vauban wrote: Hello, Trying to use free CSS templates for some Web site, I have layout problems with the current export to HTML, as a first `div

Re: [Orgmode] Export as HTML

2009-03-30 Thread roc lee
in org-exp.el, line 3858: (insert div id=\table-of-contents\\n) 2009/3/30 Sébastien Vauban zthjwsqqa...@spammotel.com Hello, Trying to use free CSS templates for some Web site, I have layout problems with the current export to HTML, as a first `div id=content' is hard-coded into the

Re: [Orgmode] Export as HTML

2009-03-30 Thread roc lee
2009/3/30 roc lee roc.lee...@gmail.com in org-exp.el, line 3858: (insert div id=\table-of-contents\\n) 2009/3/30 Sébastien Vauban zthjwsqqa...@spammotel.com Hello, Trying to use free CSS templates for some Web site, I have layout problems with the current export to HTML, as a first

[Orgmode] cannot properly export function name with underline to HTML

2009-03-25 Thread roc lee
I have function names in both a text block and a table cell, for example: function_name_with_underline() When I publish it in HTML format, the underline was interpreted incorrectly: functionsubname/subsubwith/subsubunderline/sub =function_name_with_underline()= works, but to warp all function

Re: [Orgmode] Re: Org-mode version 5.17

2007-12-20 Thread Elicket Lee
Hi, The error reproduced on my computer. (Windows XP) + (NTEmacs 22.1) + (make 3.81 from cygwin) Elicket On Dec 20, 2007 11:13 PM, Carsten Dominik [EMAIL PROTECTED] wrote: I cannot reprduce this. - Carsten On Dec 20, 2007 9:36 AM, Detlef Steuer [EMAIL PROTECTED] wrote: On Thu, 20 Dec