Re: [Orgmode] org-mode and longlines-mode (especially tables)

2007-03-24 Thread Mark Aufflick
emacs 22.0.94.1 I'm not familiar with the calling syntax of defadvice, so I'll keep playing. Thanks very much for the code. Mark. On 3/23/07, Carsten Dominik <[EMAIL PROTECTED]> wrote: On Mar 19, 2007, at 13:46, Alan Dove wrote: > Hey, folks: > > I've also been usin

[Orgmode] How do I change font for DONE tasks?

2007-03-29 Thread Mark Ochocki
duplicate this in Org-Mode? Thanks, Mark ___ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [BUG] org-save-all-org-buffers reapplies startup visibility [9.5 (release_9.5 @ /usr/local/share/emacs/29.0.50/lisp/org/)]

2021-10-08 Thread Mark Barton
I can confirm this too. (defun org-save-all-org-buffers () "Save all Org buffers without user confirmation." (interactive) (message "Saving all Org buffers...") (save-some-buffers t (lambda () (derived-mode-p 'org-mode))) (when (featurep 'org-id) (org-id-locations-save)) (message "Savi

Re: [BUG] org-save-all-org-buffers reapplies startup visibility [9.5 (release_9.5 @ /usr/local/share/emacs/29.0.50/lisp/org/)]

2021-10-08 Thread Mark Barton
all-org-buffers() funcall-interactively(org-save-all-org-buffers) command-execute(org-save-all-org-buffers record) execute-extended-command(nil "org-save-all-org-buffers" nil) funcall-interactively(execute-extended-command nil "org-save-all-org-buffers" nil) command

Re: [BUG] org-save-all-org-buffers reapplies startup visibility [9.5 (release_9.5 @ /usr/local/share/emacs/29.0.50/lisp/org/)]

2021-10-09 Thread Mark Barton
It works on my system with native compilation on macOS 11.6. I made the change to org.el that is in my local clone of the emacs master branch and recompiled. Looking at the Help for the function, I see it is native compiled Lisp in my test here. - *Help* - buffer org-save-all-org-buffers is an

Re: How to open a link to a folder/file in Finder, not Dired

2021-10-20 Thread Mark Barton
file in finder. If there are no specific configurations for the application, then it just switches to finder. Mark

Re: C-c . no longer inserts org-time-stamp (after upgrade to 9.5)

2021-11-02 Thread Mark Barton
It looks like follow-mode-prefix is a variable you can customize. It defaults to "C-c .” which is why the org-time-stamp does not run with "C-c .” To see the follow-mode-map use "M-x describe-keymap follow-mode-map” > On Nov 2, 2021, at 8:23 AM, Michael Maurer wrote: > > On Tue, 2 Nov 2021 a

[BUG] error after reading in contents of other file [9.6 (9.6-??-e7ea951 @ /home/user/.emacs.d/.local/straight/build-28.0.50/org/)]

2022-03-10 Thread Mark Edgington
I manually opened a new daily file, and read in some content from another file (using ':r filename.txt' with Evil). After doing this, the content was inserted, but the following traceback occurred: Warning (org-element-cache): org-element--cache: Org parser error in 2022-03-10.org::193. Resett

Re: Code blocks and quotes export style

2022-03-13 Thread Barton, Mark
of code blocks. #+LaTeX_HEADER: \usepackage{minted} I set a local variable for org using minted to change the fontsize. # Local Variables: # org-latex-minted-options: (("fontsize" "\\small")) # End: Mark > On Mar 13, 2022, at 3:54 AM, Sébastien Gendre wrote: > > He

Re: [BUG] error after reading in contents of other file [9.6 (9.6-??-e7ea951 @ /home/user/.emacs.d/.local/straight/build-28.0.50/org/)]

2022-03-14 Thread Mark Edgington
On Sat, Mar 12, 2022 at 7:53 AM Ihor Radchenko wrote: > > Thanks for the report! > Are you still seeing the traceback if you update Org to latest main? > 5da9d6810 in more recent versions should help with some cases when the > error like in your backtrace appears. Yes, I'm still getting the follo

Re: [RFC] DOCT: Declarative Org Capture Templates (easier template syntax)

2022-03-20 Thread Mark Barton
+1 as interested I saw this project a while ago https://github.com/progfolio/doct I was concerned about long term support and if I would be left with templates I would have to rewrite again, plus I was too busy at the time to adopt it and it stays in my list o

Re: master 4a1f69ebca 2/2: Use (TICKS . HZ) for current-time etc.

2022-04-26 Thread Mark Barton
The change also breaks org-file-newer-than-p function that triggered the debugger while loading my init that uses org babel. I was able to use the example of the patch that Paul Eggert provided earlier for the desktop-save to add the time-convert to “fix” org-file-newer-than-p as shown below. No

Re: Trouble producing nicely aligned org tables from emacs-jupyter code blocks using latest org version

2022-05-19 Thread Mark Barton
. I found the python blocks met my needs. He is the link to the pulsar package if you are interested. I found it much easier to config what actions cause the line to pulse to find point. https://github.com/protesilaos/pulsar <https://github.com/protesilaos/pulsar> Mark > On May 19, 2022,

Re: org-table-sum

2020-09-24 Thread Mark Janes
I can reproduce this with org 9.3.1. I imagine the decimal numbers have precision problems when converted to binary floating point. A simpler table to reproduce: | 83.6 | |.1 | |---| | 83.69 | Kein Test writes: > Hi, > > I found out ab

[PATCH] Bugfix to org-babel-remove-temporary-stable-directory

2022-07-06 Thread Mark Dawson
* ob-core.el (org-babel-remove-temporary-stable-directory): This function was failing when `org-babel-temporary-stable-directory' was nil. This variable is nil when initialised. The function now checks that the variable is non-nil before attempting to call `file-exists-p`. TINYCHANGE --- lisp/ob

Re: Exporting tables from python code block: Wrong type argument: markerp, nil

2022-08-02 Thread Mark Barton
ing the export execute the src blocks and just manually ran them to have the updated results inserted into the org file. (setq org-export-use-babel nil) The last time I exported that document successfully was 2022-05-10. Mark

Elisp macro for working with org tables

2022-08-03 Thread Mark Clements
| a | b | c | |---+---+---| | 1 | 2 | 3 | | 3 | 4 | 7 | Comments are welcome -- and I hope that this is useful. Sincerely, Mark. När du skickar e-post till Karolinska Institutet (KI) innebär detta att KI kommer att behandla dina personuppgifter. Här finns information om hur KI behandlar p

Re: C-c $ missing?

2022-08-18 Thread Mark Barton
mode? If I M-x flyspell-mode to turn off flyspell then C-c $ is mapped back to org-archive-subtree. If that is the case for you, you could try adding this to your init file. (eval-after-load "flyspell" '(define-key flyspell-mode-map (kbd "C-c $") nil)) Mark

Re: C-c $ missing?

2022-08-19 Thread Mark Barton
> On Aug 18, 2022, at 11:39 PM, Summer Emacs wrote: > > TY! That's exactly what I was hoping for. And thank you to Ihor and Matt > as well for pointing me in the right direction. I was just reading up on > C-c $ with C-h k when you replied so thank you to all of you for helping > out. Noted eve

bug#50514: 28.0.50; org inline call to python src block req C-g to break

2022-08-27 Thread Barton, Mark
abel-comint-wait-for-output: Buffer python-chain does not exist or has no process Note that python-chain is the name of my session passed to the python blocks as shown in the following line within my org file. #+PROPERTY: header-args:python :session python-chain :exports results :results raw file :file-ext table Thanks, Mark

bug#50514: 28.0.50; org inline call to python src block req C-g to break

2022-08-27 Thread Mark Barton
> On Aug 27, 2022, at 11:59 AM, Barton, Mark wrote: > >  > >> On Aug 27, 2022, at 7:11 AM, Ihor Radchenko wrote: >> >> --- >> lisp/ob-python.el | 8 >> 1 file changed, 4 insertions(+), 4 deletions(-) >> >> diff --git a/li

bug#50514: 28.0.50; org inline call to python src block req C-g to break

2022-08-27 Thread Barton, Mark
following python blocks were not aware of the imports in the first block. Mark I tried something that was suggested last September 14th by Augusto Stoffel. I had not tried it because changing the sleep from 10 to 90 was my workaround. One thing that might work is to block until the shell is

bug#50514: 28.0.50; org inline call to python src block req C-g to break

2022-08-27 Thread Barton, Mark
FER) Wait until output arrives from BUFFER. Note: this is only safe when waiting for the result of a single statement (not large blocks of code). Mark

Re: Images in org-mode

2022-09-10 Thread Mark Barton
in an > org-mode file (not exported)? > > Best wishes, > > Colin Baxter. > > Check the value set for org-image-actual-width. Mine defaulted to t, so I changed it. There is some documentation if you use: C-h v org-image-actual-width Mark

Re: IM dev discussions?

2022-09-23 Thread Mark Barton
> On Sep 23, 2022, at 6:44 PM, Tim Cross wrote: > > You will likely find more young people > who use Emacs and org will also use email more, but I don't know if that > is because the types of people attracted to Emacs and org mode are also > the types of people more attracted to email for comms

Re: access to specific instance(s) of past recurring event(s)

2022-09-25 Thread Mark Barton
schedule a repeating task and then have my notes in that task to record what happened each time. Mark

Re: prevent underscores to be translates in subscript when exporting to latex

2022-10-08 Thread Mark Barton
is left as it is (‘org-export-with-sub-superscripts’). Mark

Re: Org and Multimedia..?

2022-11-30 Thread Mark Barton
ar with other software you have running your devices that allows a single link to work on all the devices. Mark

Re: Clocking in is pretty slow in version 9.6 when the item has a large

2022-12-04 Thread Mark Barton
Sat 11:00]" :formula % :step day :stepskip0 t This took over 3 minutes to run. If I use an older build I have as my "stable" version for testing... Emacs 29.0.50 (Build 21F79) of 2022-08-05 Org mode version 9.5.4-17-g6e991f then the same clocktable line takes 11s to update. Mark

Re: Clocking in is pretty slow in version 9.6 when the item has a large

2022-12-04 Thread Mark Barton
> On Dec 4, 2022, at 10:18 AM, Ihor Radchenko wrote: > > Ihor Radchenko mailto:yanta...@posteo.net>> writes: > >> Eli Qian mailto:eli.q.q...@gmail.com>> writes: >> >>> Any idea about speeding up clocking in? >> >> Try reducing `org-element--cache-self-verify-frequency' to a smaller >> number

Re: Clocking in is pretty slow in version 9.6 when the item has a large

2022-12-07 Thread Mark Barton
g-element--cache-self-verify-frequency 0) Updates in 11s. Mark

Re: Clocking in is pretty slow in version 9.6 when the item has a large

2022-12-07 Thread Mark Barton
I just realized my mistake on the variable. I'm good. It was very acceptable for me at 20s considering how many clocking lines I have to parse going back to 2019. I will keep the self-verify as is if that will help capture errors before the release branch. Mark

org-agenda-dim-blocked-tasks don't use org-todo face

2022-12-11 Thread Mark Kerr
The org-todo face is used for todo keywords in non-blocked items. When org-agenda-dim-blocked-tasks is set to true, however, the todo keyword is instead displayed using org-agenda-dimmed-todo-face. The org-priority face, however, is still used for blocked tasks. Is this by design or due to an er

Re: org-agenda-dim-blocked-tasks don't use org-todo face

2022-12-12 Thread Mark Kerr
From: Ihor Radchenko > [-- Attachment #1: Type: text/plain, Size: 534 bytes --] > > Mark Kerr writes: > > > The org-todo face is used for todo keywords in non-blocked items. > > > > When org-agenda-dim-blocked-tasks is set to true, however, the todo keyword >

Re: org-agenda-dim-blocked-tasks don't use org-todo face

2022-12-14 Thread Mark Kerr
On Tue, Dec 13, 2022 at 2:51 AM Ihor Radchenko wrote: > > Mark Kerr writes: > > > Thank you. I may have been unclear but the result seems to be the > > opposite of what I was hoping for. > > > > I was hoping to be able to gain the ability to use the org-todo f

Re: [BUG] M-S- does not adjust clock timestamps as described in docs [9.5.5]

2023-02-08 Thread Mark Barton
y that needs adjustment and run the org-clock-convenience-fill-gap command and it will adjust the time to be contiguous. Mark

Re: [RFC] If you use Org 9.6, please share the output of M-x org-element-cache-hash-show-statistics

2023-02-09 Thread Mark Barton
> On Feb 9, 2023, at 3:51 AM, Ihor Radchenko wrote: > > Hi, > > I would like to assess the efficiency of one of search optimizations used > in org-element.el [1] > > The statistics about efficiency is collected by Org, but obviously not > shared without your consent. > > If you are ok with

Re: Limiting a repeating timestamp ?

2023-04-08 Thread Mark Barton
ion, but I sometimes use the org-clone-subtree-with-time-shift function to copy a scheduled meeting. That will give me copies with the timestamps shifted by the amount requested (weekly, monthly, etc.). The advantage I found with this, is that I can then edit any of the copies to adjust for holidays. Mark Barton

[BUG] "Invalid face reference" with org-agenda-deadline-faces

2024-01-10 Thread Mark Kerr
faces` settings has been working without any problems for years. I think the problem began with org v6.6.16, but am not completely certain. Is this a bug? Thanks, Mark

Re: [BUG] Clock report produces malformed table when contributed headings contain "|" in their title [9.7-pre (release_9.6.16-1060-g1aa455 @ /home/yantar92/.emacs.d/straight/build/org/)]

2024-01-14 Thread Mark Barton
rmally make those headers, but could the pipe char be replaced only in the clock table? If clock table links are turned on then the header link should point to the header and just the description changes. Mark Barton

Re: [DISCUSSION] What should we do with undocumented x^(superscript inside /round/ braces) syntax? (was: Subscript with parenthesis)

2024-02-17 Thread Mark Barton
> On Feb 17, 2024, at 5:33 AM, Ihor Radchenko wrote: > > WDYT? +1 I use the curly braces since I often use underscores for other reasons. There would be no impact to me and this is the first I ever heard that parentheses would work.

Re: orgmode tables

2024-04-22 Thread Mark Barton
I always forget the command to add columns, so I usually just modify the header row to add them to the end by using the "|" character to separate them. Once I press tab, then Org will correct the table. started with two columns | one | two | |-+-| | 1 | 2 | add two more to the heade

Org-mode for Docbook and DITA

2024-05-31 Thread Mark Lewin
Hi all, I'll shortly be starting a new role as a tech writer, where much of the docs are written in Docbook and DITA. I'm hoping to do the bulk of my work in org-mode and export to the required format. I've seen an exporter for Docbook, but I wonder if anyone has successfully used Emacs/org-m

Bug: tab key no longer bound to org-cycle in commit 565361eb69 [9.4.6 (9.4.6-10-gee652a-elpaplus @ /Users/bartm002/.emacs.d/elpa/org-plus-contrib-20210705/)]

2021-07-06 Thread Mark Barton
I normally use C-RET to enter a new headline and then press TAB to make it child headline. Recently it stopped working and I think I have it tracked down to the change that was made last week. I could be missing something that allows “TAB” to work for a kdb binding, but the previous format of ""

Re: Bug: tab key no longer bound to org-cycle in commit 565361eb69 [9.4.6 (9.4.6-10-gee652a-elpaplus @ /Users/bartm002/.emacs.d/elpa/org-plus-contrib-20210705/)]

2021-07-07 Thread Mark Barton
e Emacs dev list. I don’t see outline as a minor mode listed when I use C-h m while in an org file expecting org-cycle. Mark > On Jul 7, 2021, at 6:35 AM, Nicolas Goaziou wrote: > > Hello, > > Eric S Fraga writes: > >> On Tuesday, 6 Jul 2021 at 18:05, Mark Barton wrote:

Re: org-ctrl-c-minus includes bullet in links

2021-07-09 Thread Mark Barton
> On Jul 9, 2021, at 6:12 PM, Samuel Wales wrote: > > this might be a bad bug report. it seems intermittent. > > recent maint. > > create headers each with a link on it. mark all. org-ctrl-c-minus. > > this has incorrectly put - as part of the link descrip

Re: org-mode-map binds [tab]

2021-07-11 Thread Barton, Mark
line-minor-mode-cycle'.") I don’t see outline as a minor mode listed when I use C-h m while in an org file expecting org-cycle. Mark > On Jun 27, 2021, at 8:34 AM, Daniel Mendler wrote: > > `org-mode-map` binds `[tab]` which is unnecessary and harmful, since it > takes p

Re: [BUG] Async pdf export broken with native-comp

2021-07-15 Thread Mark Barton
s, > > -- > Sébastien Miquel > > Did you post this to the Emacs list? Native-comp is in master, but not “released”. So I agree with what Tim said about it is too soon for Org to consider solutions if it happens to be an edge case that native-comp might be able to address. I use native-comp, but have not tried the async export yet. Mark

Re: Org + git branches for derived files

2021-08-13 Thread Mark Barton
to quickly reference a document. Since the iPad cannot run Emacs, I am unable to regenerate the PDF from there. Mark > On Aug 13, 2021, at 11:40 AM, Ken Mankoff wrote: > > Hello, > > I think this might be more of a git question than an Org question, but I > imagine I might fi

[PATCH] ob-tangle.el: Fix error in org-tangle from org-src edit buffer

2021-09-11 Thread Mark Dawson
[PATCH] ob-tangle.el: Fix error in org-tangle from org-src edit buffer (org-babel-tangle) : Fix stringp error which happens when confirming successful tangle when `org-babel-tangle` is called from an org-src edit buffer. TINYCHANGE --- lisp/ob-tangle.el | 5 - 1 file changed, 4 insertions(+

Re: Exporting tables with cell borders to Latex/PDF

2024-10-18 Thread Mark Barton
R_LaTeX: line to pass parameters to the LaTeX process that creates the pdf. #+ATTR_LaTeX: :environment tabular :align |l|l|l| |-+-+---| | one | two | three | |-+-+---| | 1 | 2 | 3 | |-+-+---| Mark

Re: What's the proper way to define a recurring event

2024-12-14 Thread Mark Barton
> *** Notes ** Yoga Class <2025-01-27 Mon> *** Notes ** Yoga Class <2025-02-03 Mon> *** Notes What I like about this approach is that I can store unique notes for each one and archive really old entries. For unknown length of time cases, I will usually clone a year's worth at a time and put a reminder to clone more. Mark

Re: [BUG] Warning (org-element): ‘org-element-at-point’ cannot be used in non-Org buffer # (org-agenda-mode) [9.7.11 (release_9.7.11 @ /Applications/Emacs.app/Contents/Resources/l

2025-01-21 Thread Mark Barton
iffs look like normal marking tasks done and updating repeats. The other thing I ran this morning is (native-compile-prune-cache). I would not expect that to be the source. Please close this out and I will file a new report if it happens again with the debug backtrace. Thanks, Mark Barton

[BUG] Warning (org-element): ‘org-element-at-point’ cannot be used in non-Org buffer # (org-agenda-mode) [9.7.11 (release_9.7.11 @ /Applications/Emacs.app/Contents/Resources/lisp/

2025-01-21 Thread Mark Barton
/Applications/Emacs.app/Contents/Resources/lisp/org/) For now I just commented out the code that attempts to add the repeater to Org Agenda, but it is easy for me to reproduce if you need further information. Thanks, Mark Barton

Re: [BUG] Warning (org-element): ‘org-element-at-point’ cannot be used in non-Org buffer # (org-agenda-mode) [9.7.11 (release_9.7.11 @ /Applications/Emacs.app/Contents/Resources/l

2025-01-21 Thread Mark Barton
> On Jan 21, 2025, at 3:06 PM, Mark Barton wrote: > > > >> On Jan 21, 2025, at 12:48 PM, Ihor Radchenko wrote: >> >> May you try to run M-x debug-on-entry RET display-warning RET and >> try triggering the warning? Then, you will see a backtrace with the

Re: How do I create a clock table that spans a custom time range?

2025-04-06 Thread Mark Barton
> On Apr 6, 2025, at 11:14 AM, Rohit Patnaik wrote: > > Ah, sorry for the noise, I figured out what my problem was. I'd tried > specifying :tstart and :tend, per the manual, but my initial attempt to do so > resulted in the following error: > > org-clock-get-table-data: Wrong type argument

[BUG] Org Warning said send this report caused by org-clock-out [9.7.11 (release_9.7.11 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2025-03-11 Thread Mark Barton
--text follows this line-- I'm just reporting this in case it is still useful since it asked nicely. Mark 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/Fee

Re: How have users managed email tasks with org?

2025-05-20 Thread Mark Barton
at email on any device that DEVONthink is running on. For that to work, I save all emails of importance as eml files and delete them from the mail system. Apple Mail and Outlook can open an eml file and reply/forward as if it was still in your mailbox. Emacs mail solutions may work the same, but because of my work email they are not supported clients. Mark

[Orgmode] Re: Org-babel games screencast

2010-11-29 Thread Mark A. Hershberger
aware of slime integration. While I plan on going back and looking at the list archives, is there any place that you would recommend as the best place to start if your goal is to duplicate the sort of things you've done with org-mode and outline-formatted code? Mark. -- http://hexmode.com/

[Orgmode] Re: Xiki framework (wiki and tree emacs features)

2010-02-06 Thread Mark A. Hershberger
or an example of how you can mix OrgMode markup and Emacs Lisp, for example. Mark. -- http://hexmode.com/ The only alternative to Tradition is bad tradition. — Jaraslov Pelikan ___ Emacs-orgmode mailing list Please use `Reply

[Orgmode] contributing Debian build scripts

2010-06-21 Thread Mark A. Hershberger
makes any difference.) Mark. -- http://hexmode.com/ Embrace Ignorance. Just don't get too attached. ___ 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: keeping uptodate?

2010-06-23 Thread Mark A. Hershberger
ually) be at <http://launchpad.net/~org-mode> Mark. -- http://hexmode.com/ Embrace Ignorance. Just don't get too attached. ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org htt

[Orgmode] Re: contributing Debian build scripts

2010-06-23 Thread Mark A. Hershberger
so anyone who joins can contribute. So, next steps are: set up a daily build. Anyone interested in contributing is welcome to join: http://launchpad.net/~org-mode/ Mark. -- http://hexmode.com/ Embrace Ignorance. Just don't get too attached.

[Orgmode] Re: keeping uptodate?

2010-06-23 Thread Mark A. Hershberger
Matt Price writes: > thanks to both of you. Mark, do you think the ppa will be up in the next > week or so? Yes. -- http://hexmode.com/ Embrace Ignorance. Just don't get too attached. ___ Emacs-orgmode mailing list Please use `Reply A

[Orgmode] Re: contributing Debian build scripts

2010-06-25 Thread Mark A. Hershberger
Carsten Dominik writes: > If I understand correctly, there is no action I need to take, right? Right. Looks like Launchpad is gonna be able to take care of most of this. -- http://hexmode.com/ Embrace Ignorance. Just don't get too attached. ___

[Orgmode] Daily Debian Builds

2010-07-26 Thread Mark A. Hershberger
h, I think, will work on Debian). If you try it, let me know what your experience is so I can improve it. Mark. -- http://hexmode.com/ Embrace Ignorance. Just don't get too attached. ___ Emacs-orgmode mailing list Please use `Reply All' to send

Re: [Orgmode] Daily Debian Builds

2010-07-30 Thread Mark A. Hershberger
I may start hosting my own cron job to do this. Mark. -- http://hexmode.com/ Embrace Ignorance. Just don't get too attached. ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://

[O] Org-Mode => MediaWiki Wiki mark up?

2011-03-30 Thread Mark A. Hershberger
. If this hasn't been done, are there any how-tos that would provide an outline for what I need to do in order to create my own translation tool? Mark. -- http://hexmode.com/ War begins by calling for the annihilation of the Other, but ends ultimately in self-annihilation.

[O] orgmode html export - cygwin - browser

2012-11-06 Thread Jan-Mark Batke
cygwin), it expects file:///c:/path/file.html Is it possible to adapt the export path? Or is a cygwin browser mandatory anyway (I would like to avoid that)? Best Jan-Mark -- Jan-Mark Batke bad...@gmx.net FON +49 511 33 64 800 FAX +49 511 22 09 521

Re: [O] orgmode html export - cygwin - browser

2012-11-11 Thread Jan-Mark Batke
2012/11/11 Manish > On Tue, Nov 6, 2012 at 10:50 PM, Jan-Mark Batke wrote: > >> Dear all, >> when exporting to html and starting a browser, I encounter the problem my >> browser cannot find the file. I am using win xp and run emacs inside >> cygwin. Therefore

[O] Flexible plain list bullets

2012-04-18 Thread Mark E. Shoulson
s versions that don't support Unicode. Please take a look, see if it's worth adding, tell me what else I need to do if necessary.  Thanks! ~mark >From 5db3081b9487c09b17c7accfcf1b25f45002aa13 Mon Sep 17 00:00:00 2001 From: Mark Shoulson Date: Wed, 18

Re: [O] Flexible plain list bullets

2012-04-19 Thread Mark E. Shoulson
itten in Hindi or Hebrew remain "pure plain text". (I wonder if it would matter if the customization could only ADD possibilities, like the org-edit-src-region-extra variable does, and not replace or take away the basic ones.) ~mark On 04/19/2012 06:01 AM, Carsten Dominik wrote: On

Re: [O] Flexible plain list bullets

2012-04-20 Thread Mark E. Shoulson
On 04/20/2012 09:38 AM, Bastien wrote: Hi Mark, I agree with Nicolas that a solution based on overlays would be better. Probably, though very possibly not worth it. I also agree with you that there are many areas where we let the users modify the content of Org files in a way that makes

[O] Hiding the braces when org-pretty-entities is enabled

2012-05-04 Thread Mark E. Shoulson
well.  Hope it helps. ~mark >From 819e66254de18ae78e96b52dee1b5098920c3e31 Mon Sep 17 00:00:00 2001 From: Mark Shoulson Date: Fri, 4 May 2012 18:19:06 -0400 Subject: [PATCH] Entities: when org-pretty-entities is on, the {} terminating entities is also hidden --- lisp/org.el |

[O] Entities

2012-05-08 Thread Mark E. Shoulson
verbatim.  I added entities for the remaining markup characters: \plus, \under, \equal, and \slash.  \under might be particularly handy when avoiding subscripting (which raises the question of if there should be an \asciicirc (or something) entity for

[O] "Smart" quotes

2012-05-21 Thread Mark E. Shoulson
/article.gmane.org/gmane.emacs.orgmode/55756 ) has gone completely without comment, good or bad.  Did I miss something?  Did it not get through (it shows up on gmane)?  At least one of the changes submitted there I would think is pretty uncontroversial. ~mark d

[O] [PATCH] Fix for displaying entities ending in a number

2012-05-23 Thread Mark E. Shoulson
On 05/23/2012 05:53 PM, Nicolas Goaziou wrote: Hello, "Mark E. Shoulson" writes: There's a small bug in rendering the entities when org-pretty-entities is on (I get the feeling that org-pretty-entities is not a very commonly-used feature). The entities \sup1 \sup2 \sup3 and

[O] [PATCH] Add entities for /, +, _, =

2012-05-23 Thread Mark E. Shoulson
On 05/23/2012 05:53 PM, Nicolas Goaziou wrote: Hello, "Mark E. Shoulson" writes: Also attached is another patch that might or might not be useful. Sometimes it can be a problem when you can't type, say, asterisks around a word when you NEED asterisks around the word, not a bol

Re: [O] "Smart" quotes

2012-05-23 Thread Mark E. Shoulson
On 05/23/2012 06:17 PM, Nicolas Goaziou wrote: Hello, "Mark E. Shoulson" writes: "Smart" quotes can be annoying when they aren't smart enough. But when they work you can miss them. I'm attaching a patch that defines a custom variable org-smart-quotes (nil b

Re: [O] [PATCH] Add entities for /, +, _, =

2012-05-25 Thread Mark E. Shoulson
both those things, so don't worry about the patch. Might have to wait until next week though. ~mark

Re: [O] #+STARTUP: showstars

2012-05-25 Thread Mark E. Shoulson
he line when it comes to determining headlines, so you basically have a character that *looks* blank you can use for the non-final stars, but that would also be a pretty enormous change and I don't see it looking like a good move either. I hope that accurately portrays the request (and responses thereto). ~mark

Re: [O] "Smart" quotes

2012-05-25 Thread Mark E. Shoulson
On 05/25/2012 01:14 PM, Nicolas Goaziou wrote: Hello, "Mark E. Shoulson" writes: Hm. I like the idea, but it raises some questions for me. It would be particularly good if this could share code/custom variables with the pieces of the (new) exporter that make smart quotes on ex

Re: [O] "Smart" quotes

2012-05-28 Thread Mark E. Shoulson
On 05/26/2012 02:48 AM, Nicolas Goaziou wrote: Hello, "Mark E. Shoulson" writes: The regexp may be able to tell level 1 from level 2 quotes. Do you mean that the author would use the same characters for both first and second level quotes, and the regexp would be smart enough to d

Re: [O] "Smart" quotes

2012-05-29 Thread Mark E. Shoulson
On 05/29/2012 01:57 PM, Nicolas Goaziou wrote: Hello, "Mark E. Shoulson" writes: I guess it doesn't actually matter, but it starts to get weird if you find yourself looking arbitrarily far back, and then you start building in exceptions for crossing paragraph boundaries...

[O] Smart Quotes Exporting (Was: Re: (no subject))

2012-05-31 Thread Mark E. Shoulson
Sorry for messing up the thread subject header; I think I misused gmane's posting. On 05/31/2012 09:38 AM, Nicolas Goaziou wrote: Hello, Mark Shoulson writes: +(defvar org-e-html-quote-replacements + '(("fr" "« " " »" "‘"

Re: [O] Smart Quotes Exporting

2012-06-01 Thread Mark E. Shoulson
On 06/01/2012 01:11 PM, Nicolas Goaziou wrote: Hello, "Mark E. Shoulson" writes: Oh, certainly; they're all a disaster. I think I said that in the writeup at the top. This is just proof of concept, nothing is in the right place, nothing is properly documented. They have t

Re: [O] Smart Quotes Exporting

2012-06-02 Thread Mark E. Shoulson
for it to format ,, into „. It should probably be set not to smartify quotes onscreen in comments; I haven't done that yet. Comments welcome; I hope I didn't complicate matters in the export engines too much. ~mark >From 1bc507cf69c94d5645436abc6e28e7d96999083e Mon Sep 17 00:00:

Re: [O] Smart Quotes Exporting

2012-06-05 Thread Mark E. Shoulson
x27;t look like it to me). Added an options keyword, '"' (that is, the double-quote mark) to select smart quotes on/off, and a defcustom for customizing your default. Set the default default [sic] to nil, though actually it might be reasonable to set it to t. Slight touch-up to the

[O] [PATCH] Add \asciicirc entity

2012-05-28 Thread Mark E. Shoulson
though the former indicates a circumflex accent and the latter a small *circle*.  (The expansion to ˆ (html entity) is correct.) ~mark >From deebb683e8d46a87247aa17c0fad8bef7b7b14a3 Mon Sep 17 00:00:00 2001 From: Mark Shoulson Date: Mon, 28 May 2012 22:48:07

[Orgmode] Re: how to get daily clock summaries

2007-11-29 Thread Mark A. Hershberger
Rainer Stengele <[EMAIL PROTECTED]> writes: > #+BEGIN: clocktable :maxlevel 0 :scope file > :tstart "<2007-11-28 Mi 00:00>" :tend "<2007-11-28 Mi 23:59>" Looking at the docs, it looks like you could do: #+BEGIN: clocktable :block today -- http://hexmode.com/ GPG Fingerprint: 7E15 362D A32

[Orgmode] Re: Org-mode Version 5.16

2007-12-01 Thread Mark A. Hershberger
If anyone running Ubuntu Gutsy is interested in having an org-mode package that is kept relatively up-to-date, I have an archive on Launchpad. (See https://launchpad.net/~hexmode/+archive/) In your sources.list: deb http://ppa.launchpad.net/hexmode/ubuntu gutsy main deb-src http://ppa.la

[Orgmode] Re: Remember with org-mode

2008-01-07 Thread Mark A. Hershberger
Vikas Rawal <[EMAIL PROTECTED]> writes: > I am trying to set up remember with org-mode using instructions > provided in the manual. But the (org-remember-insinuate) line results > in the following error. > > Could someone kindly explain what is wrong. > > FYI, I am using emacs on Ubuntu 7.10. If

[Orgmode] Re: Notification of upcoming deadlines via email

2008-12-06 Thread Mark A. Hershberger
I really take some action to deal with it, > even if it is only to delete it. You can check out this article http://article.gmane.org/gmane.emacs.orgmode/5271 for having reminders show up as pop-ups. Replace the “call-process” bit with your own shell program or lisp f

[Orgmode] Re: [ANN] Org Invoice 1.0.0

2008-12-06 Thread Mark A. Hershberger
Peter Jones <[EMAIL PROTECTED]> writes: > I thought I'd share some elisp that I'm using in conjunction with > org-mode for helping me prepare invoices. Very nice. I was looking for something like this. Now, if I can just figure out how to integrate invoicin

[Orgmode] Re: [ANN] Org Invoice 1.0.0

2008-12-07 Thread Mark A. Hershberger
Peter Jones <[EMAIL PROTECTED]> writes: > [EMAIL PROTECTED] (Mark A. Hershberger) writes: >> Now, if I can just figure out how to integrate invoicing and ledger > > Is ledger an application, or some additional org functionality you want? http://www.newartisans.com

[Orgmode] Re: Org and Ledger

2008-12-08 Thread Mark A. Hershberger
icket item, maybe I could have Org query ledger to see how much money I have saved. Pie-in-the-sky ideas, and my use of ledger as-yet is non-existent, but this would really help. Mark. ___ Emacs-orgmode mailing list Remember: use `Reply All' to

[O] How does one search the archives for bug reports?

2015-02-02 Thread Mark A. Flacy
I can tell if someone has already reported my issue or not. I think that Namazu is misconfigured for this mailing list; entering "bug" in the guile-devel list gives me 20 pages of hits. -- Mark A. Flacy

[O] Bug: ELPA org-plus-contrib package is missing files from the contrib/lisp directory

2015-02-02 Thread Mark A. Flacy
l org-eww.el org-index.el org-license.el org-passwords.el orgtbl-sqlinsert.el ox-extra.el ox-gfm.el At the very least, please ensure that htmlize.el gets packaged. -- Mark A. Flacy

[O] beamer export - options vs. arguments

2013-02-04 Thread Jan-Mark Batke
as they appear as [options] in latex? 2. How to overcome my problem with avoiding to have a frame environment as source block in org mode? Thanks Jan-Mark -- Jan-Mark Batke bad...@gmx.net FON +49 511 33 64 800 FAX +49 511 22 09 521

[O] reftex label generation and referencing

2013-07-04 Thread Jan-Mark Batke
igure [[ ./figure.png]] 3. Is there a difference between #+name: and #+label: to label a figure? Best Jan-Mark -- Jan-Mark Batke bad...@gmx.net FON +49 511 33 64 800 FAX +49 511 22 09 521

<    1   2   3   4   5   >