Re: [PATCH] org-fold: (org-fold-hide-drawer-all): Make interactive

2023-10-19 Thread Ivan Necas
Oh nice, thanks! -- Ivan On Thu, 19 Oct 2023 at 11:32, Ihor Radchenko wrote: > Ivan Necas writes: > > > Sometimes, I want to unfold all the drawers using `org-fold-show-all', > > and then I want to hide them all back. I've noticed, there is a function > > `o

[PATCH] org-fold: (org-fold-hide-drawer-all): Make interactive

2023-10-18 Thread Ivan Necas
)` there, as I don't see a reason it shouldn't be one. -- Ivan From b059c1def1df57921b08b5a350f8b67148dfbc67 Mon Sep 17 00:00:00 2001 From: Ivan Necas Date: Wed, 18 Oct 2023 14:51:33 +0200 Subject: [PATCH] * lisp/org-fold.el (org-fold-hide-drawer-all): Make interactive TINYCHANGE ---

Re:[BUG] Indentation broken after double quote

2021-08-31 Thread Ivan Sokolov
Yes, I typed your example and got this: * Some headline "hey" " hey there #+begin_src sh '"' #+end_src

[BUG] Indentation broken after double quote

2021-07-29 Thread Ivan Sokolov
emacs/27.2/lisp/org/) Org mode version 9.4.6 (9.4.6-11-g1ee52c-elpa @ /home/ivan/.local/share/emacs/package/org-20210726/) I am not sure if this bug even fixable, but I think we at least should mention it in org-adapt-indenation docstring. I also want to point out that this behaviour can be tr

Re: [PATCH] ob-sql: blocks without :engine get stuck in org-edit-src-code on indent

2021-04-30 Thread Ivan Sokolov
> what you want to do? I want to indent some sql in the src block in an org file. > what happens instead Buffer becomes unusable -- text is entered in the opposite direction until the Org-Src buffer is closed. NOTE: I am not opening this buffer myself, it is opened by org-indent-line, but is not

[PATCH] ob-sql: blocks without :engine get stuck in org-edit-src-code on indent

2021-04-20 Thread Ivan Sokolov
rom 8768e1c245ab0c0d2d8f8ac830f39ac89d23a839 Mon Sep 17 00:00:00 2001 From: Ivan Sokolov Date: Tue, 20 Apr 2021 18:22:21 +0300 Subject: [PATCH] ob-sql: do not stuck on user-error in sql-set-product --- lisp/ob-sql.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/ob-sql.el b/lisp/ob-sql.el in

Re: export an org file to a latex file but in a differerent directory

2020-09-04 Thread Ivan Tadeu Ferreira Antunes Filho
I use the code in https://github.com/itf/org-export-with-files/blob/master/org-export-with-files.el in order to define a new function that exports the current subtree to a different folder, as well as create hard copies of the files linked in the new directory and fixes the links in order to keep t

Re: Where to customize the generated ID of html export? i.e outline-container-org

2020-09-04 Thread Ivan Tadeu Ferreira Antunes Filho
I use the following code to customize the ids: http://ivanmalison.github.io/dotfiles/#usemyowndefaultnamingschemefororgheadings It replaces the function 'org-export-get-reference' with something less random. You could take a similar approach, maybe substituting the function responsible for creatin

Re: [Announcement] lsp-mode integration with org-mode

2020-06-08 Thread Ivan Yonchovski
tual buffer thing - it is sufficient to use your hack. Once we settle down the org-mode support we might move parts from the hack in lsp-mode.el. Thanks, Ivan

Re: [Announcement] lsp-mode integration with org-mode

2020-06-08 Thread Ivan Yonchovski
usecase? Generally, we have introduced "virtual-buffer" abstraction so technically we could implement running language server over anything. E. g. one could select random text block and run a language server over it. Thanks, Ivan

[Announcement] lsp-mode integration with org-mode

2020-06-08 Thread Ivan Yonchovski
not avaiable in any other editor and it is great addition to the org-mode ecosystem. In the future, we have also planned support for debugging in source buffer. Link to the docs and short demo: https://github.com/emacs-lsp/lsp-mode/blob/master/docs/page/lsp-org.md Thanks, Ivan

ob-js uses deprecated Node APIs

2020-03-11 Thread Ivan Sokolov
I ran into problems with ob-js. When resolving them, I found that require ('sys') is deprecated, there is a patch. diff --git a/lisp/ob-js.el b/lisp/ob-js.el index 7592040ab..d459e8069 100644 --- a/lisp/ob-js.el +++ b/lisp/ob-js.el @@ -65,7 +65,7 @@ :safe #'stringp) (defvar org-babel-js-fun

Re: [O] blogging wih org-mode

2019-09-29 Thread Ivan Tadeu Ferreira Antunes Filho
If you want to see one more example of blog generator, I also built one to generate a blog from a single org file, exporting each heading into a new file. https://github.com/itf/org-export-head/blob/master/blog.org It is an org file with a source block: you run the source block, and call a single

Re: [O] html export with imagemagick

2019-05-22 Thread Ivan Tadeu Ferreira Antunes Filho
I was having the same problem on some latex previews. It seems that imagemagick expects the file to be in the /tmp/ directory while latex itself was putting the file in the same directory. My workaround was to use 'dvisvgm instead of 'imagemagick. (setq org-preview-latex-default-process 'dvisvgm)

[O] PATCH: Possibility to yank target of link at point to kill ring

2019-01-11 Thread Ivan Necas
Hi, I often need to copy target of a link to kill ring, so I decided to write a small function to do that. Would it make sense to pull this into org-mode directly? Thanks for consideration and potential review. -- Ivan From 1f38afd4c26d2a8c6238040c6a40eb7dbd1f32ba Mon Sep 17 00:00:00 2001 From

Re: [O] PATCH: Possibility to yank target of link at point to kill ring

2019-01-10 Thread Ivan Necas
I've added a test for the function as well. -- Ivan On Thu, 10 Jan 2019 at 22:37, Ivan Necas wrote: > > Hi, > > I often need to copy target of a link to kill ring, so I decided to > write a small function to do that. > Would it make sense to pull this into org-mode d

[O] Org-element-put-property, bug?

2018-09-10 Thread Ivan Tadeu Ferreira Antunes Filho
y does not exist in the properties drawer. Is there a way of modifying custom properties of a headline by using org-element, and have the custom properties show up when interpreting the data? *Ivan Tadeu Ferreira Antunes Filho*

Re: [O] org-element-adopt-elements, append before children

2018-09-02 Thread Ivan Tadeu Ferreira Antunes Filho
is a fairly convoluted way On Sun, Sep 2, 2018, 8:27 AM Nicolas Goaziou wrote: > Hello, > > Ivan Tadeu Ferreira Antunes Filho writes: > > > At the moment org-element-adopt-elements always appends the new elements > > after the elements original children. In many cases

[O] org-element-adopt-elements, append before children

2018-09-01 Thread Ivan Tadeu Ferreira Antunes Filho
At the moment org-element-adopt-elements always appends the new elements after the elements original children. In many cases one might want to append before the original children. I want to propose adding an argument to org-element-adopt-elements that defines if the elements should be added befo

[O] [PATCH] ob-C.el: Fix command to perform on remote host

2017-04-17 Thread Ivan Truskov
Date: Mon, 17 Apr 2017 12:45:39 +0300 /host:/tmp/C-bin/tempfilename.exe". Processing name of binary file >From 1525efb65438f006be742b18d27804bf8409feae Mon Sep 17 00:00:00 2001 * lisp/ob-C.el (org-babel-C-execute): Made sure name of compiled program is converted to local representation before sendi

Re: [O] multiple cursor not working properly with org-mode

2015-10-16 Thread Ivan Andrus
I haven’t been following the thread so this may have already been asked, but have you checked ~/.emacs.d/.mc-lists.el ? Perhaps org-self-insert-command found it’s way into the wrong list. It’s safe to just delete the file and restart Emacs. -Ivan On Oct 16, 2015, at 9:53 AM, Jérémie Juste

Re: [O] another example of org being slow, with some analysis

2015-06-18 Thread Ivan Andrus
I’m jumping into the middle of the thread, but have you tried (setq cache-long-scans nil) That solved some performance issues for me. I can’t remember where I got the advice. -Ivan On Jun 18, 2015, at 10:28 AM, Eric S Fraga wrote: Hello, there have been a few threads recently

Re: [O] (org-agenda-to-appt) with sexp org-diary-class entry?

2014-12-08 Thread Ivan Kanis
would it be better to simply schedule such events as > (infinitely) repeating? Do your entries have a time in hour and minutes of the day? Ivan -- A bank is a place that will lend you money if you can prove that you don't need it. -- Bob Hope

Re: [O] random weekly event

2014-07-16 Thread Ivan Kanis
July, 15 at 23:58 Thorsten Jolitz wrote: > Ivan Kanis writes: > >> I need to have org agenda (and then appt) manage an event once a week. >> The catch is that is should happen at a random day and hour. >> >> My thinking is that populating programmatically a year e

[O] random weekly event

2014-07-15 Thread Ivan Kanis
Hi, I need to have org agenda (and then appt) manage an event once a week. The catch is that is should happen at a random day and hour. My thinking is that populating programmatically a year entry is probably the sanest way to go about it. Has anyone else done it? Ivan -- Repeated reboots of

Re: [O] [ANN] Org-gamify

2014-07-09 Thread Ivan Andrus
unlock (suggestions greatly welcome—especially org related), and I think it might be cool to integrate with org-gamify to offer a richer experience. -Ivan

[O] Capturing outgoing gnus e-mail

2014-06-14 Thread Ivan Kanis
the function gnus-inews-do-gcc. It has the group and the article number. However org link expect the Message-ID header. How do I get it? Thanks, Ivan -- Software uses US measurements, but the OS is in metric... -- BOFH excuse #24

Re: [O] Fwd: Mac OS Alias file links

2014-04-14 Thread Ivan Andrus
ion. It probably wouldn’t be too hard to borrow the code from BibDesk and extend Emacs to do the same thing, or write an external script. I’m not sure whether it would be possible to do it without touching C/Obj-C. I would be interested in using such a thing (in BibDesk .bib files actually), though probably not in writing it. :-) -Ivan

[O] Training on how to program Emacs

2014-02-13 Thread Ivan Kanis
and dolist - master functions - know how debug: backtrace and edebug If you are interested in attending, please contact 2i2l at +33 02 40 3702 06 or format...@2i2l.fr Take care, Ivan -- To live is so startling it leaves little time for anything else. -- Emily Dickinson

Re: [O] Folding buglet?

2014-01-03 Thread Ivan Andrus
a final newline. Though as Thomas says, it's not a big deal. >> BTW, 2013 was a good year for Org mode in my book. Many thanks for all >> the improvements to this already-awesome software. The Org mode >> community is a source of real pleasure. Happy New Year! > > Indeed -- thanks to everyone involved! +1 -Ivan

Re: [O] text-only plots

2013-12-09 Thread Ivan Andrus
y > different story. Unicode support in normal pdflatex is quite > non-trivial. If you use XeLaTeX, I think you could get it to work with > some appropriate choice of fonts. I tried libertine and dejavu without > any luck. Would it be possible to export it to \rule when using LaTeX? It wouldn't be text then and you couldn't copy it, but it should work with any TeX engine regardless of fonts etc. Just a thought. -Ivan

Re: [O] Writing Challenge

2013-11-03 Thread Ivan Andrus
FWIW, I have added nanowrimo.el to MELPA. -Ivan On Oct 19, 2013, at 9:22 PM, Ivan Andrus wrote: > Very interesting! I have been working on a mode which gives the current > word-count, WPM and an estimate of the time it will take to hit today's quota > in the modeline. I would

Re: [O] org-writers-room sort of works! just in time for NaNoWriMo

2013-10-31 Thread Ivan Andrus
Looks cool. I already opened one issue on github. :-) -Ivan On Oct 31, 2013, at 10:00 PM, Matt Price wrote: > I have just pushed a more-or-less-working version of my "Org Writer's > Room" mode to github: > > https://github.com/titaniumbones/org-writers-room >

Re: [O] Writing Challenge

2013-10-31 Thread Ivan Andrus
I'm really sorry I didn't reply sooner. I was out of town, and then I forgot to follow up. On Oct 27, 2013, at 2:07 AM, Alan Schmitt wrote: > Hi Ivan, > > darthand...@gmail.com writes: > >> Very interesting! I have been working on a mode which gives the >&

Re: [O] Writing Challenge

2013-10-19 Thread Ivan Andrus
t.org/gvol/nanowrimo.el -Ivan On Oct 19, 2013, at 3:03 PM, Bob Newell wrote: > A couple of us who are writers have worked on a "writing challenge" > spreadsheet. This year, for the upcoming National Novel Writing Month, > I've greatly modified (read: made more complex) the

Re: [O] Emacs Barcamp

2013-08-22 Thread Ivan Kanis
August, 20 at 11:22 Bastien wrote: > So I suggest we coordinate with each other, set the date/location > in Paris, then announce it publicly. OK, when? -- Interference between the keyboard and the chair. -- BOFH excuse #58

Re: [O] Emacs Barcamp

2013-08-19 Thread Ivan Kanis
Le 16 Août à 10h08, joa...@verona.se a écrit : > Ivan Kanis writes: > >> Le 14 Août à 16h38, joa...@verona.se a écrit : >> >>> BTW with only 12 people it would be fun to do stuff like hands-on >>> sessions and hacker sessions, WDYT? >> >> That&#x

Re: [O] Emacs Barcamp

2013-08-14 Thread Ivan Kanis
Le 14 Août à 16h38, joa...@verona.se a écrit : > BTW with only 12 people it would be fun to do stuff like hands-on > sessions and hacker sessions, WDYT? That's the spirit of a barcamp! Let's wait on Bastien's reply. -- L'histoire est un roman qui a été ; le roman est de l'histoire qui aurait pu

Re: [O] Emacs Barcamp

2013-08-14 Thread Ivan Kanis
Le 14 Août à 15h39, joa...@verona.se a écrit : >> How many people can sit at your office meeting room? I would like to >> visit Stockholm. > > The office is limited to 150 people by fire regulations I think. But > that would be crowded. I would like to be about 12. More is too much for me to hand

Re: [O] Emacs Barcamp

2013-08-14 Thread Ivan Kanis
Le 13 Août à 20h59, Nic Ferrier a écrit : > I probably wouldn't attend if it's a weekend thing though so this would > have to be a last resort. Thanks for offering venues. It's a weekend thing. -- Un roman commence par un coup de dés. -- Roger Vailland

Re: [O] Emacs Barcamp

2013-08-14 Thread Ivan Kanis
d like to visit Stockholm. Take care, Ivan -- Plus ça change, plus c'est la même chose. -- Alphonse Karr

[O] Emacs Barcamp

2013-08-13 Thread Ivan Kanis
Hi, Following the success of the emacs conference, Bastien and I would like to arrange a barcamp. This is something informal involving about twelve persons. I envision this to be in Europe. It would be in French or English, I don't care. I am good at organizing stuff. I am a bad MC and bad speake

Re: [O] org-clock-idle-time

2013-07-12 Thread Ivan Andrus
Do you have a stale .elc or somewhere? Those are the bane of my existence. -Ivan On Jul 12, 2013, at 9:39 AM, J. David Boyd wrote: > Nick Dokos writes: > >> da...@adboyd.com (J. David Boyd) writes: >> >>> A while back I set this to 5 minutes, and tried it for

Re: [O] customize category width in agenda

2013-06-20 Thread Ivan Kanis
June, 20 at 15:03 Carsten Dominik wrote: > On Jun 20, 2013, at 9:30 AM, Ivan Kanis wrote: > >> If I read the manual correctly the category is 10 characters wide. Is >> there a way to reduce it? > > Yes, you can, take a look at the variable org-agenda-prefix-format > &

[O] customize category width in agenda

2013-06-20 Thread Ivan Kanis
If I read the manual correctly the category is 10 characters wide. Is there a way to reduce it? -- New guy cross-connected phone lines with AC power bus. -- BOFH excuse #38

Re: [O] [PATCH] fix appointment warn time

2013-05-14 Thread Ivan Kanis
Le 14 Mai à 16h08, Bastien a écrit : > Hi Miguel, > > Miguel Ruiz writes: > >> Yes, I can. Both Emacs 24.3 with Org-mode version 7.9.4 >> (7.9.4-1-ga5435f-elpa) and Org-mode version 8.0.2 >> (release_8.0.2-71-g5a1400) exhibits the problem than Ivan reports. >>

Re: [O] [PATCH] fix appointment warn time

2013-05-14 Thread Ivan Kanis
Le 14 Mai à 13h49, Bastien a écrit : >>> Can anyone else reproduce Ivan's problem? >> >> Are you using bzr emacs? > Now I recall it happens on 24.1 and bzr. Let's hope someone else can reproduce. -- La différence entre un bon et un mauvais architecte réside en ce que le mauvais succombe à tout

Re: [O] [PATCH] fix appointment warn time

2013-05-14 Thread Ivan Kanis
Le 14 Mai à 10h36, Bastien a écrit : >> I tried it again on a more recent emacs (bzr from two weeks ago). Same >> result. Are you sure you removed your patch? :D > > Mhh... yes, I'm sure. > > Can anyone else reproduce Ivan's problem? Are you using bzr emacs? -- D'autres civilisations que la nô

Re: [O] Skim.app support for org-mac-link-grabber.el

2013-05-12 Thread Ivan Andrus
pp" :tag "Grab Skim.app page links" :group 'org-mac-link-grabber :type 'boolean) -Ivan On May 12, 2013, at 12:29 PM, Daniil Frumin wrote: > Hi, all! > > I use org-mac-link-grabber.el > <http://orgmode.org/worg/org-contrib/org-mac-link-grabber.html> almo

Re: [O] [PATCH] fix appointment warn time

2013-04-28 Thread Ivan Kanis
April, 28 at 10:59 Bastien wrote: >> Without your patch you should see that warntime is nil. > > Mhh... I don't see this. The call to (org-agenda) in your (progn...) > will refresh the text-properties in foo.org and C-u C-x = show the > property in both the agenda and foo.org. I clearly miss som

Re: [O] [PATCH] fix appointment warn time

2013-04-28 Thread Ivan Kanis
April, 27 at 14:02 Bastien wrote: >> It works great and it looks less expensive. Thank you! > > Great -- thanks for testing this. > > Still, I need to really understand what real problem it fixes... > is it because some of your functions needs to check the property > or is it during regular use of

Re: [O] [PATCH] fix appointment warn time

2013-04-27 Thread Ivan Kanis
April, 26 at 19:01 Bastien wrote: >> The patch adds a function that goes at the beginning of the header to >> get the property. As a bonus it turns the string into a number. >> >> Please let me know if the patch is accepted or needs improvement. > > Can you try the attached patch instead? It work

[O] [PATCH] fix appointment warn time

2013-04-26 Thread Ivan Kanis
It seemed to be a boundary error. (point) was at the end of the timestamp which doesn't hold the org-appt-warntime property. foo.org illustrate what I have seen. Evaling the get-property sexp returns nil. The patch adds a function that goes at the beginning of the header to get the property. As a

Re: [O] hard coded autoload file

2013-04-26 Thread Ivan Kanis
April, 26 at 8:36 Bastien wrote: >> It sucks for me as I generate autoload with a different name. I made a >> workaround so it's fine. > > Why do you generate autoloads with a different name? I do my own packaging. I started before ELPA and el-get existed. I was dissatisfied with the Debian way.

[O] hard coded autoload file

2013-04-25 Thread Ivan Kanis
Hello, It seems each file has the name of the autoload file hard coded at the end. For example at the end org-element.el: ;; Local variables: ;; generated-autoload-file: "org-loaddefs.el" ;; End: It sucks for me as I generate autoload with a different name. I made a workaround so it's fine. I

Re: [O] APPT_WARNTIME not honored anymore in 8.0

2013-04-20 Thread Ivan Kanis
April, 19 at 19:48 Bastien wrote: >> I should get a notice 17mn before 20:00 that I need to go to karaoke. >> Now it does the default 90mn. It's a regression. > > I can't reproduce this -- I assume you added the appointment with > `org-agenda-to-appt', right? AFAIK yes. I might have time next wee

[O] APPT_WARNTIME not honored anymore in 8.0

2013-04-19 Thread Ivan Kanis
Hi, Suppose I have the following entry: ** Karaoke <2012-09-21 Fri 20:00 +1w> :PROPERTIES: :APPT_WARNTIME: 17 :END: I should get a notice 17mn before 20:00 that I need to go to karaoke. Now it does the default 90mn. It's a regression. I might have time next week to look into it. -- Fo

[O] org-macro need to provide org-macs

2013-04-18 Thread Ivan Kanis
Just add (require 'org-macs) in org-macro.el. -- Elle n'était vêtue que de bonnes fortunes du jeu ou de la sottise de ses amants. -- Antoine Furetière

Re: [O] Looking for a way to "scrape" a webpage to a org-mode note (text+images)

2013-04-16 Thread Ivan Kanis
April, 15 at 20:38 Itai kloog wrote: > im looking for a way/wondering if anyone has a homebrew script he > uses, to "scrape" a webpage into org. This is a long, long shot. I wrote some basic emacs-w3m scraping to login to Facebook. You will need to know elisp to make anything out of it. http://i

Re: [O] Org-mode as a replacement for Google Reader

2013-03-26 Thread Ivan Kanis
Le 26 Mars à 13h49, Karl Voit a écrit : > TL;DR: org-feed.el is not a doable replacement for Google Reader. >What about alternatives? I use newsticker, it's part of emacs. -- Aide-toi, l'État ne t'aidera pas. -- Auguste Detœuf

Re: [O] python sessions

2013-03-25 Thread Ivan Andrus
/log/pacman.log >>> >>> [2013-03-20 12:51] upgraded emacs (24.2-4 -> 24.3-1) >>> >>> Using the Arch Rollback Machine, I downloaded Emacs 24.2.4 and >>> downgraded (also required downgrading imageMagick from 6.8.3.10 -> >>> 6.8.2.3). Now it works again (refer to the reproducible example from >>> the mailing list post): >>> - http://www.mail-archive.com/emacs-orgmode@gnu.org/msg68238.html >>> >>> Eric, your example fails for me. I get: >>> >> >> Yes, because my example only works in external (non session) execution >> with the current buggy code, where as your example works with session >> execution in the old working code. >> >>> >>>>>> x = 1 >>>>>> return x >>> File "", line 1 >>> SyntaxError: 'return' outside function >>> >>> This works, hoever: >>> >>> #+begin_src python :session >>> x = 1 >>> x >>> #+end_src >>> >>> #+RESULTS: >>> : 1 >>> >>> #+begin_src python :session >>> x >>> #+end_src >>> >>> #+RESULTS: >>> : 1 >>> >>> So, with emacs 24.2.4 and current Org-mode (pulled just now) and clean >>> make, *both* named and un-named sessions work for me on Arch Linux. >>> >> >> Aha! Thanks for sleuthing this out. So the problem lies in changes to >> the python.el distributed with Emacs. I don't suppose we can ask >> whoever made these changes to python.el to fix the breakage they've >> caused in Org-mode? >> >> Thanks, >> > > Please give me some time still to investigate. Still doubt it's python.el > But if yes, probably will be able to tell more. I think 24.3 is where they changed python.el to fgallina's python.el. So I'd be willing to bet that it _is_ the problem since it's a complete rewrite and many things changed. -Ivan

Re: [O] Automatically escaping single spaces

2013-03-19 Thread Ivan Andrus
properly they should never appear except at sentence boundaries. Which is to say, autofill and fill-paragraph know not to break lines in the middle of a sentence after punctuation. If the user adds a newline manually you can assume they meant it to be a new sentence. IIRC the variable at play is `sentence-end-double-space'. -Ivan

Re: [O] Org Community

2013-03-11 Thread Ivan Kanis
March, 10 at 13:01 Scott Randby wrote: > However, I am concerned about the future of org. There is one > individual who is poisoning the atmosphere by engaging in unfair and > unfounded name calling that simply should not be included in messages > to this list. I think we should ignore him. I hav

[O] Bug: Docstring of `org-clock-persist' doesn't mention `history' [7.9.2 (7.9.2-90-ge5ea08-elpaplus @ /Users/gvol/vcs/emacs/local/nextstep/Emacs.app/Contents/Resources/lisp/org/)]

2012-12-27 Thread Ivan Andrus
a non-nil value. Thanks, Ivan Emacs : GNU Emacs 24.3.50.3 (i386-apple-darwin12.2.0, NS apple-appkit-1187.34) of 2012-12-14 on oroszlan.local Package: Org-mode version 7.9.2 (7.9.2-90-ge5ea08-elpaplus @ /Users/gvol/vcs/emacs/local/nextstep/Emacs.app/Contents/Resources/lisp/org/) current state:

[O] Emacs conference 30/3/2013 in London

2012-12-18 Thread Ivan Kanis
aster/talks.org Take care, Ivan -- It's not what we have in our life, but who we have in our life, that counts. -- J.M. Laurence

Re: [O] Emacs user conference

2012-12-08 Thread Ivan Kanis
of it if it happens, I have some > experience with organizing big events. That's great. I have never done it. -- Ivan Kanis http://ivan.kanis.fr 'Tis better to have loved and lost Than never have loved at all. -- Alfred, Lord Tennyson

Re: [O] The statement on what is orgmode.

2012-12-07 Thread Ivan Andrus
t I could not find anyone who has tried. > - "SkypEmacs" simultaneous videoconferencing and collaborative text > editing, where the participants all type into the same document at > once, but also their entire voice conversation is automatically > transcribed to plain text, and that transcription saved in the same > directory as the document. I think this is probably only chat, but there is https://github.com/buzztaiki/emacs-skype > (i.e. things that prove "It isn't all text after all, but some of it is".) :-) -Ivan

Re: [O] Emacs user conference

2012-12-07 Thread Ivan Kanis
uld do it in July or August because most people takes their holiday then... [1] Take care, Ivan Kanis [1] Well in France at least ;)

[O] Emacs user conference

2012-12-06 Thread Ivan Kanis
m/ I can give a talk on GTD with org mode. And since we are speaking of GTD, what need to happens next for this event to happen? -- Ivan Kanis http://ivan.kanis.fr Don't look back unless you intend to go that way. -- Marc Holm

Re: [O] [PATCH] Allow relative times in clocktable tstart and tend options

2012-11-30 Thread Ivan Vilata i Balaguer
Nicolas Goaziou (2012-11-30 16:31:47 +0100) wrote: > Hello, > > Ivan Vilata i Balaguer writes: > >> I expected to find some existing clocktable test I could base mine >> upon, but it seems that there's none yet. > > Yes, Org is lacking in the regression tests

Re: [O] [PATCH] Allow relative times in clocktable tstart and tend options

2012-11-28 Thread Ivan Vilata i Balaguer
Ivan Vilata i Balaguer (2012-11-28 17:11:46 +0100) wrote: > Nicolas Goaziou (2012-11-28 13:47:32 +0100) wrote: > >> Ivan Vilata i Balaguer writes: >> >>> * lisp/org-clock.el (org-clock-get-table-data): Pass tstart and tend >>> time strings through `org-m

Re: [O] [PATCH] Allow relative times in clocktable tstart and tend options

2012-11-28 Thread Ivan Vilata i Balaguer
Nicolas Goaziou (2012-11-28 13:47:32 +0100) wrote: > Ivan Vilata i Balaguer writes: > >> * lisp/org-clock.el (org-clock-get-table-data): Pass tstart and tend >> time strings through `org-matcher-time` to allow relative times besides >> absolute ones, convert result t

[O] [PATCH] Allow relative times in clocktable tstart and tend options

2012-11-21 Thread Ivan Vilata i Balaguer
te) (save-excursion (org-clock-sum ts te (unless (null matcher) -- 1.7.10.4 -- Ivan Vilata i Balaguer -- https://elvil.net/

Re: [O] [PATCH] Time specifications: Allow specifying relative times

2012-11-14 Thread Ivan Vilata i Balaguer
Achim Gratz (2012-11-14 20:44:55 +0100) wrote: > Ivan Vilata i Balaguer writes: >> Bastien (2012-11-13 23:02:40 +0100) wrote: >>> I'm not sure what went wrong on your side but the patch >>> has been applied here: >>> >>> h

Re: [O] [PATCH] Time specifications: Allow specifying relative times

2012-11-13 Thread Ivan Vilata i Balaguer
Bastien (2012-11-13 23:02:40 +0100) wrote: > Ivan Vilata i Balaguer writes: > >> However, I'm looking at the Git master branch and I see that the >> patch hasn't actually been applied [there][1] yet (and the [original >> thread][2] is from March). Is there any

Re: [O] [PATCH] Time specifications: Allow specifying relative times

2012-11-08 Thread Ivan Vilata i Balaguer
atch hasn't actually been applied [there][1] yet (and the [original thread][2] is from March). Is there any problem with it? Am I looking at the wrong repo? [1]: http://orgmode.org/cgit.cgi/org-mode.git/tree/lisp/org.el#n16359 [2]: http://comments.gmane.org/gmane.emacs.orgmode/54101 Thanks a lot, -- Ivan Vilata i Balaguer -- https://elvil.net/

[O] Short article on how I implement my GTD

2012-10-21 Thread Ivan Kanis
Hi Org moders, I have written a short article: http://ivan.kanis.fr/gtd-and-org-mode.html If there's enough interest I will writ more. Take care, -- Ivan Kanis http://ivan.kanis.fr We must strive to reach that simplicity that lies beyond sophistication. -- John Gardner

Re: [O] Use default value if a variable is not defined

2012-10-12 Thread Ivan Andrus
et a "Symbol's value as variable is void" error when Emacs starts up. > > How do I test for the existence (and non-nil ness of a variable in Emacs) You can use boundp. So (if (boundp 'njn/current-q-file) njn/current-q-file "questions.org") can be used wherever you need it. -Ivan

Re: [O] tables once again

2012-10-03 Thread Ivan Andrus
;) 'org-export-dispatch) and see if that fixes it. You can always try C-h b to see what bindings are in place and which keymaps they come from. -Ivan

[O] Org Camp Paris

2012-09-14 Thread Ivan Kanis
Hi Bastien, The last time we did this was two years ago IIRC. How about we organize it again? Is Frederic Couchet on the org mailing list? -- Ivan Kanis http://ivan.kanis.fr Good breeding consists in concealing how much we think of ourselves and how little we think of the other person

Re: [O] Org-mode release 7.9

2012-08-30 Thread Ivan Andrus
> ELPA. > > I think either of the following repositories would make excellent homes. > > http://tromey.com/elpa/ > http://marmalade-repo.org/packages/ Don't forget MELPA: http://melpa.milkbox.net/ which will package it right out of git. -Ivan

Re: [O] implement appt warntime

2012-08-21 Thread Ivan Kanis
Hey Bastien, Bastien wrote: > Indeed. It should works fine now, please test and tell me. Works great, thank you! -- Ivan Kanis http://ivan.kanis.fr If it works, it's obsolete. -- Marshall McLuhan

Re: [O] implement appt warntime

2012-08-19 Thread Ivan Kanis
Hi Bastien, Bastien a écrit > Hi Ivan, > > Ivan Kanis writes: > >> I could use properties instead. For example: >> >> ** an appointment with a reminder 5 minutes before 10:00 >>SCHEDULED: <2012-07-16 Mon 10:00> >> :PROPERTIES: >>

Re: [O] SageTeX in export

2012-08-19 Thread Ivan Andrus
This is cool. I've opened a ticket [1] on sage-mode to add support for this automatically. Hopefully, I'll get around to it fairly soon, but if not feel free to bug me. I'll obviously have to make it a little more robust than a simple setq, or I would do it right now. -Ivan [1] https://bitbucket.org/gvol/sage-mode/issue/10/add-support-for-sagetex-in-org-latex

Re: [O] Add the capture feature "%(sexp)" to org-feed

2012-08-09 Thread Ivan Andrus
ssing something, but isn't this what directory local variables are for? -Ivan

[O] implement appt warntime

2012-07-16 Thread Ivan Kanis
fore 10:00 SCHEDULED: <2012-07-16 Mon 10:00> :PROPERTIES: :WARNTIME: 5 :END: Would you integrate such a functionality? I might code it if I find the time. Take care, -- Ivan Kanis http://ivan.kanis.fr A great teacher is one who realizes that he himself is also a student and whose goal is

Re: [O] calfw, get rid of file names

2012-06-12 Thread Ivan Vilata i Balaguer
Michael Welle (2012-06-12 10:40:00 +0200) wrote: > Ivan Vilata i Balaguer writes: > >> Kyle Machulis (2012-06-12 03:47:40 +0200) wrote: >> >>> (defadvice qdot/cfw:org-extract-summary (after cfw:org-extract-summary) >>> "Remove tags and filenames from it

Re: [O] calfw, get rid of file names

2012-06-12 Thread Ivan Vilata i Balaguer
n >> customise away the org file names that are shown with the calendar >> entries? Mouse clicking on the entry brings me to the associated file, >> so IMHO showing the file's name does not provide additional information. -- Ivan Vilata i Balaguer -- https://elvil.net/

Re: [O] agenda appt warn time (baby step part 2)

2012-04-24 Thread Ivan Kanis
otify.el by Peter? Someone suggested that on the mailing list. It's on my todo list. -- Ivan Kanis http://ivan.kanis.fr Art washes from the soul the dust of everyday life. -- Pablo Picasso

Re: [O] [RFC] warn time for appointments

2012-03-25 Thread Ivan Kanis
Peter Münster wrote: > On Fri, Mar 23 2012, Ivan Kanis wrote: > >> I got no reply to my RFC and to my tentative patches. Does that mean >> everybody is happy with the default 12 minutes warning time? > > No, I'm not happy with 12 minutes. But there is > https:/

Re: [O] [RFC] warn time for appointments

2012-03-23 Thread Ivan Kanis
ning time? -- Ivan Kanis http://kanis.fr We make a living by what we get, we make a life by what we give. -- Winston Churchill I am listening to "Supersystem - The Love Story".

[O] agenda appt warn time (baby step part 2)

2012-02-23 Thread Ivan Kanis
Hi, The previous patch I sent was completely buggy. This one works but doesn't fulfill my RFC. I think the warn time should be somewhere within the time stamp... diff --git a/emacs/org/org-agenda.el b/emacs/org/org-agenda.el index 780794e..2a8e926 100644 --- a/emacs/org/org-agenda.el +++ b/emacs/

[O] patch for warning time (first baby sted)

2012-02-19 Thread Ivan Kanis
Hi, This patch implements warn time for org appt. It only works on emacs bzr (the variable appt-warning-time-regexp appears in it). You need to add the warntime in the text of the entry, like so : * doctor warntime 10 <2012-02-19 10:00> or * doctor warntime 10 <2012-02-19 10:00> The patch i

[O] [RFC] warn time for appointments

2012-02-04 Thread Ivan Kanis
t's OK with you I will find the time to do it. Take care, -- Ivan Kanis http://kanis.fr Nothing in life is to be feared. It is only to be understood. -- Marie Curie

Re: [O] [PATCH] integration with bbdb 3.0

2011-12-31 Thread Ivan Kanis
Carsten Dominik wrote: > On 28.12.2011, at 20:06, Ivan Kanis wrote: > >> Hi Bastien, >> >> The following patch fixes linking bbdb 3.0 records. Let me know if the >> patch needs improvement. > > Have you signed FSF papers? > Hi Carsten, Yes I have. -- Iv

[O] [PATCH] integration with bbdb 3.0

2011-12-28 Thread Ivan Kanis
Hi Bastien, The following patch fixes linking bbdb 3.0 records. Let me know if the patch needs improvement. Take care, Ivan Kanis diff --git a/emacs/org/org-bbdb.el b/emacs/org/org-bbdb.el index 61f8258..ddb7e4a 100644 --- a/emacs/org/org-bbdb.el +++ b/emacs/org/org-bbdb.el @@ -118,6 +118,9

[O] Bug: Timestamp not removed from recurring appointment [7.7]

2011-11-05 Thread Ivan Vilata i Balaguer
4.6) of 2011-10-26 on trouble, modified by Debian Package: Org-mode version 7.7 current state: == (setq appt-disp-window-function (quote ivb/appt-disp-window) org-agenda-files '("~/bzr/ivan/org/tasks.org" "~/bzr/ivan/org/reminders.org") org-agenda-skip-schedul

[O] bug#9695: allowed date range

2011-10-12 Thread Ivan Kanis
After investigating further <2011-10-17 >--<2011-10-30 > works but not <2011-10-17>--<2011-10-30>. The regexp for a timestamp is defined in org-ts-regexp : "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}[^\r\n>]*?\\)>" Shouldn't the trailing space b

Re: [O] Reminders with alarms

2011-10-03 Thread Ivan Vilata i Balaguer
itle: $message" done 8< It should be executable and placed in your $PATH. On Debian/Ubuntu you'll need the libnotify-bin and screen packages. Customize appt-display-duration, appt-display-interval and appt-message-warning-time to your liking, then run: 8< (appt-activate +1) (bh/org-agenda-to-appt) 8< HTH, -- Ivan Vilata i Balaguer -- http://elvil.net/

[O] [Bug] Error when clicking in calendar

2011-05-25 Thread Ivan Vanyushkin
om git master branch. I think, error is related to "(add-hook 'post-command-hook 'org-read-date-display)" in org.el somehow, but my knowledge is not enough to fix it. Please, help me to fix "Error in post-command-hook: (buffer-read-only *Calendar*)". Thank you. -- Ivan.

  1   2   >