Re: [O] Call for volunteer -- managing the publication setup wrt orgmode.org/worg and orgmode.org

2013-04-29 Thread Marc Ihm
Hi Jay, Great ! I am looking forward to work with you ! First task will probably be to see, how worgs publishing-mechanism fits together :-) best regards, Marc Am 29.04.2013 18:25, schrieb Jay Kerns: Hello there, On Mon, Apr 29, 2013 at 10:50 AM, Bastien b...@gnu.org wrote: Hi Marc,

Re: [O] flet warning message

2013-05-01 Thread Marc Ihm
Hi Igor, a quick grep in a current git-pull reveals a few matches for flet. However, they are all in modules from the contrib-directory and none within the core of org. I do not have much experience with the habits of emacs maintainers, but I think, that they wont drop the onsolete macro flet

Re: [O] BUG (?): org capture insist *.org file changed in disk, wipes file each time

2013-06-06 Thread Marc Ihm
Hi Z. Sorry, but cannot think of a proper cause of your troubles other than dropbox. I do not use dropbox, but only rsync for synchronisation. I get the same message that you get now and then, but each time I get it, it is because I did synchronisation of my org-files from external sources,

Re: [O] WISH: SQL on org-mode tables

2013-08-20 Thread Marc Ihm
Yes, would like this too ! (But do not know, how to achieve this ...) I think that simplifying the task of storing data in org-tables would allow many interesting org-applications to be implemented more easily. And thanks for pointing at cvsql; will have a look. best regards, Marc Am

Re: [O] [SYNC] How do you sync your org-mode files between n devices (n 2)

2013-09-05 Thread Marc Ihm
Hi, My aproach is low-tech. I manage two special files: - token.txt, which (through shell-scripts) moves around with me and helps to check, that I do not have multiple emacs open on different machines. - open.txt, which is created by a small piece of elisp and helps to check, that I do not

[O] org-index.el replaces org-favtable.el

2013-11-05 Thread Marc Ihm
Hello, within the contrib/lisp-directory of org, org-favtable.el has been removed and replaced by its successor org-index.el. I would like to suggest, that anybody who is still using the old package org-favtable.el would make the same switch. Besides beeing renamed, org-index.el has more

Re: [O] Local key binding gone wrong!

2014-01-06 Thread Marc Ihm
Hi Sharon ! Setting CapsLock to f13 is a neat trick ! Maybe this could help with the rest of your question: (global-set-key (kbd f13) (lambda (ARG) (interactive c) (org-todo (string-to-number (char-to-string ARG))) (org-archive-subtree)))

Re: [O] simple way to call `C-c a v' or a way to bind it to a key?

2014-02-16 Thread Marc Ihm
Hi Yaushi, how about (global-set-key (kbd f12) (lambda () (interactive) (execute-kbd-macro (kbd C-c a v ? best regards Marc P.s.: In my opinion, the name execute-kbd-macro of this builtin function is somewhat misleading; replay-keys describes this usage closer ... Am 15.02.2014 14:35,

[O] [dev] New version of org-index.el --- a personal index for org and beyond

2014-12-08 Thread Marc Ihm
Hi all, the new version 3.0.0 of org-index.el has been uploaded to the contrib-directory of orgs git-repository. Features include improved setup-assistant and the new command add, which adds the current node to your index. Moreover the structure of the index-table and its flags has been

Re: [O] [dev] New version of org-index.el --- a personal index for org and beyond

2014-12-10 Thread Marc Ihm
Hi Alan, I see the same error, when starting with a vanilla emacs; so these errors were easy to fix (version 3.0.1): http://orgmode.org/w/org-mode.git?p=org-mode.git;a=blob_plain;f=contrib/lisp/org-index.el;hb=HEAD Thanx for reporting ! best regards Marc On 12/09/2014 09:02 PM, Alan

Re: [O] What is quote-section? [eom]

2015-03-10 Thread Marc Ihm
Am 10.03.2015 21:04, schrieb Marcin Borkowski: Hi, my emacs-installation does not know this as a function or a variable. Does your emacs respond on `C-h f q u o t e - s e c t i o n' ? (sorry, if I misunderstood your question) best regards, Marc

[O] New Version 4.0.0 of org-index.el

2015-02-26 Thread Marc Ihm
Hi, version 4.0.0 of org-index.el has just been released: http://orgmode.org/w/org-mode.git?p=org-mode.git;a=blob_plain;f=contrib/lisp/org-index.el;hb=HEAD Here is its description: ;; Fast search for selected org headings and things outside of org. ;; ;; This package creates and updates an

Re: [O] Updating to the current org-mode in emacs trunk, and Org stable

2015-03-26 Thread Marc Ihm
Am 25.03.2015 14:29, schrieb Rasmus: Hi, Oleh Krehel ohwoeo...@gmail.com writes: What's the schedule of merging these changes to the stable versions of Org and to Emacs trunk? My guess: After v8.3 is released. I don't think anybody is working preparing a release at the moment. —Rasmus

Re: [O] Error when using org-ctrl-c-ctrl-c to add tags

2015-04-19 Thread Marc Ihm
Vicente Vera vicente...@gmail.com writes: Hi. Don't think there are more details to provide. The error message appears upon pressing C-c C-c (bound to the org-ctrl-c-ctrl-c command) on a headline, doesn't matter which level. It happened in 3 different Org files, one of which was created for

Re: [O] Error when using org-ctrl-c-ctrl-c to add tags

2015-04-20 Thread Marc Ihm
Works for me too, and probably better than my suggestion :-) best regards Marc

Re: [O] Error when using org-ctrl-c-ctrl-c to add tags

2015-04-19 Thread Marc Ihm
Okay, this one only tries to fix, what seems broken ... Could someone please check ? best regards Marc diff --git a/lisp/org.el b/lisp/org.el index 24b3a69..8a00847 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -10515,8 +10515,7 @@ from. completing-read-function)

[O] org-index: New Version and Screencast

2015-12-31 Thread Marc Ihm
Hi, org-index ("A personal index for org") has reached Version 5.0; it can be downloaded at: http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=contrib/lisp/org-index.el;hb=HEAD A short introduction and demo is available as a screencast: http://2484.de/org-index.html Comments are

[O] [PATCH] lisp/org-el: Fix explanation, if state change is blocked by contained checkboxes

2017-04-14 Thread Marc Ihm
Hi, The patch below fixes a minor problem: Consider a node, which contains unchecked checkboxes; if you have set org-enforce-todo-checkbox-dependencies and try to change the node to DONE, you will be denied with a message explaining why. However in this special case the explanation would be

Re: [O] [PATCH] ox-confluence.el: Handle checkboxes and inactive timestamps correctly

2017-03-03 Thread Marc Ihm
Nicolas Goaziou writes: > > It looks good. Could you provide a commit message? > Yes, of course, albeit a bit lengthy: Fix handling of square brackets from timestamps and checkboxes; avoid invalid confluence markup for empty table headers. Best regards Marc

Re: [O] [PATCH] ox-confluence.el: Handle checkboxes and inactive timestamps correctly

2017-03-02 Thread Marc Ihm
Nicolas Goaziou writes: > Correcting myselfè > > Nicolas Goaziou writes: > >>> + :filters-alist '((:filter-final-output . org-confluence-fix-timestamps)) >> >> Why do you use a final filter? It is a pretty gross tool, couldn't you >> simply

[O] [PATCH] ox-confluence.el: Handle checkboxes and inactive timestamps correctly

2017-02-28 Thread Marc Ihm
timestamps, so that they no longer collide with the native link-syntax of atlassian confluence. It would be great, if someone could review and apply this patch if appropriate. Best regards, Marc Ihm --- a/contrib/lisp/ox-confluence.el 2017-02-28 19:52:25.707036600 +0100 +++ b/contrib/lisp/ox

Re: [O] [PATCH] ox-confluence.el: Handle checkboxes and inactive timestamps correctly

2017-03-01 Thread Marc Ihm
Nicolas Goaziou writes: > Correcting myselfè > > Nicolas Goaziou writes: > >>> + :filters-alist '((:filter-final-output . org-confluence-fix-timestamps)) >> >> Why do you use a final filter? It is a pretty gross tool, couldn't you >> simply

Re: [O] [PATCH] lisp/org.el: make org-open-at-point handle parens in encoded urls correctly

2017-08-11 Thread Marc Ihm
Am 11.08.2017 um 18:10 schrieb Nicolas Goaziou: Hello, Marc Ihm <m...@ihm.name> writes: the attached patch changes org-open-at-point in org.el: Currently, when opening an url the function org-open-at-point uses the variable path, which is the result of applying org-link-un

[O] [PATCH] lisp/org.el: make org-open-at-point handle parens in encoded urls correctly

2017-08-10 Thread Marc Ihm
Hi, the attached patch changes org-open-at-point in org.el: Currently, when opening an url the function org-open-at-point uses the variable path, which is the result of applying org-link-unescape on the original url. Thus, all special chars like '() "' etc. which were originally encoded like

[O] Small code fragment to make zone-mode play well with org

2017-08-08 Thread Marc Ihm
anyway: maybe someone has commit-rights to emacs core itself ...) best regards Marc Ihm (advice-add 'zone :around (lambda (orig-fun args) (interactive) (let (result text name) (when (string= major-mode "org-mode") (setq text (org-copy-visible (window-start) (

[O] [PATCH] contrib/lisp/ox-confluence.el: Export checkboxes; fix timestamps in headlines

2017-05-01 Thread Marc Ihm
Hi, the attached patch changes ox-confluence.el: - Export checkboxes in lists to appear in the resulting confluence-markup (with some minor refactoring of org-confluence-item). - Fix spurious closing braces following timestamps in headlines. Please review and let me know, if you have any

Re: [O] [PATCH] contrib/lisp/ox-confluence.el: Export checkboxes; fix timestamps in headlines

2017-05-02 Thread Marc Ihm
Hi, Nicolas Goaziou writes: > > This is a common mistake. Symbols in `cl-case' shouldn't be quoted. 'on > is really (quote on), so you actually wrote > > (cl-case (org-element-property :checkbox item) > ((quote on) "*{{(X)}}* ") > ((quote off) "*{{( )}}* ") >

[O] Shouldn't org-back-to-heading skip inline tasks ?

2017-11-04 Thread Marc Ihm
ine at position %d in buffer %s" (point) (current-buffer)) which does not yet accept an optional invisible-ok argument, however. Would this be a useful change ? Best regards, Marc Ihm

Re: [O] Shouldn't org-back-to-heading skip inline tasks ?

2017-11-05 Thread Marc Ihm
Am 04.11.2017 um 22:15 schrieb Nicolas Goaziou: Use `org-with-limited-levels' macro to ignore inlinetasks, e.g.: (org-with-limited-levels (org-back-to-heading)) This is how Org somewhat handles inlinetasks. /me closes the can of worms. Regards, Good enough for me too. Thanx ! Best

[O] Ihr Schreiben, AZ 54 376 712 893

2018-09-23 Thread Marc Ihm
Sehr geehrte Frau Assmann, Hi, sie hatten mich in Ihrem Schreiben vom 6. September um ein Sepa-Mandat gebeten. Leider habe ich mich verschrieben ... könnten Sie mir bitte das Schreiben erneut schicken (pdf oder Papier) ? Vielen Dank ! Mit freundlichem Gruß, Marc Ihm

Re: Assistant to remove unused IDs of org-id

2020-04-14 Thread Marc Ihm
Hi Ihor, Thanx ! Fixed it. Details: I am now checking (string= (org-attach-dir-from-id id) (org--attach-dir)) to see if the ID is used in the attachment dir (if it exists). Background: I do not use attachments myself; did not remember, they use IDs :-/ Best regards, Marc Am 14.04.2020 um 05:02

Re: Assistant to remove unused IDs of org-id

2020-04-14 Thread Marc Ihm
Hi Adam, thanx for your feedback ! Your main point (the central function beeing to long) is undisputed; will fix this during the next refactoring ... Best regards, Marc Am 13.04.2020 um 22:04 schrieb Adam Porter: Marc-Oliver Ihm writes: as I use the excellent package org-id in a somewhat

simple code to use focus-mode with org

2020-04-23 Thread Marc Ihm
Hi, when presenting things informally from org I often use the great focus-mode (see https://github.com/larstvei/Focus) to keep my audience focused on the individual nodes of my presentation: (defun forward-heading ( N) "Forward one orgmode-heading for thing-at-point" (interactive "p")

Re: [PATCH] choices in org-id-find for handling missing ids

2021-06-12 Thread Marc Ihm
s/discussion on this patch and maybe see it applied if found fit. Best regards Marc Ihm