[O] Fwd: org-bullets extension

2012-12-15 Thread E Sabof
* Currently the bullets get painted with background color on occasion. * Overlays are easy to turn on/off. Same might be true for font-lock, I just haven't figured out a way. * Org-bullets conflict with overlay-heavy modes (ex. org-columns). This probably won't be the case with font-lock. * An impo

[O] Bug: org-time-stamp sometimes moves my cursor to another monitor ( [7.8.11]

2013-01-05 Thread E Sabof
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 http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. --

Re: [O] Bug: org-time-stamp sometimes moves my cursor to another monitor ( [7.8.11]

2013-01-06 Thread E Sabof
Hi, > > E Sabof writes: > > > The culprit has proved to be the last line of this function, which I > > commented out in my config: > > Please provide a way to reproduce the bug. > > Thanks, > > -- > Bastien >

Re: [O] Bug: org-time-stamp sometimes moves my cursor to another monitor ( [7.8.11]

2013-01-06 Thread E Sabof
ive. > > > > On Sun, Jan 6, 2013 at 7:58 AM, Bastien wrote: > >> Hi, >> >> E Sabof writes: >> >> > The culprit has proved to be the last line of this function, which I >> > commented out in my config: >> >> Please provide a way to reproduce the bug. >> >> Thanks, >> >> -- >> Bastien >> > >

Re: [O] org-bullets extension

2013-01-27 Thread E Sabof
What is the current status of the package? Was it accepted? Was it superseded? If it wasn't superseded, I might spend some time re-implementing it. Evgeni On Tue, Dec 18, 2012 at 11:05 AM, Bastien wrote: > Hi Jambunathan, > > Jambunathan K writes: > > > (font-lock-add-keywords > > '

Re: [O] org-bullets extension

2013-02-12 Thread E Sabof
e sense to implement that as well. Evgeni On Mon, Feb 11, 2013 at 5:38 PM, Bastien wrote: > E Sabof writes: > > > What is the current status of the package? Was it accepted? Was it > > superseded? > > org-bullets.el is in the contrib/ directory. > > > If it wa

Re: [O] org-bullets extension

2013-02-20 Thread E Sabof
In any case, I've updated org-bullets to use compose-region. You can get it from here: https://github.com/sabof/org-bullets Evgeni On Wed, Feb 13, 2013 at 7:40 AM, E Sabof wrote: > I tend to agree. It might also be better to enable it by default. At the > same time I'm not ve

Re: [O] bug#14346: 24.3; beginning-of-visual-line jumps to previous line in org-mode

2013-05-06 Thread E Sabof
)) Evgeni On Sat, May 4, 2013 at 2:27 PM, E Sabof wrote: > Wouldn't it be better if forward/backward-char kept the old behavior, and > the rest of the commands did something similar to this in the end: > > (setq disable-point-adjustment > (preceding-or-following-cha

[O] Auto-refreshing rendered images from org-babel

2014-02-05 Thread E Sabof
I have the org snippet below. What I would like, is to see the rendered image when I press C-c C-c. I can achieve this with the elisp snippet below. Is there a "proper", or at least a better way of doing this? Evgeni #+BEGIN_SRC dot :file files/graphviz/example1.png digraph test { size="6,

Re: [O] Auto-refreshing rendered images from org-babel

2014-02-05 Thread E Sabof
ook refresh-and-remove-self))) (defadvice org-babel-execute:dot (after refresh-images activate) (es-org-babel-refresh-images-after-execution)) Bastien writes: > E Sabof writes: > >> I have the org snippet below. What I would like, is to see the >> rendered image when I press

Re: [O] Auto-refreshing rendered images from org-babel

2014-02-06 Thread E Sabof
Bastien writes: > Thanks. Why is it more useful than > > (add-hook 'org-babel-after-execute-hook 'org-redisplay-inline-images) > > ? It's more targeted -- I don't use dot that often, and I'd rather not have an additional side effect when executing any org-babel snippet. Evgeni

Re: [O] Auto-refreshing rendered images from org-babel

2014-02-06 Thread E Sabof
Bastien writes: > Ok, thanks. I'd rather have ob-dot.el and friends have their own > hooks (e.g. org-babel-execute:dot-hook). But I'm not yet convince, > as `org-redisplay-inline-images' is already bound to `C-c C-x C-M-v'. I'm not a heavy babel user, but maybe something like this could be ru

[O] Documentation error/bug regarding checkboxes

2014-02-12 Thread E Sabof
According to the footnote [3] on http://orgmode.org/manual/Checkboxes.html, if I press C-u C-c C-c on the first item of a list, all items on that list will get checkboxes. However only the first one does. Evgeni

Re: [O] Documentation error/bug regarding checkboxes

2014-02-12 Thread E Sabof
Josiah Schwab writes: > I just tried C-u C-c C-c on the following list and it worked as documented. > > + foo > + bar > + baz > > I am using the current maint branch. Actually I did it like this: + |foo + bar + baz If I do this instead, it works as you've said: |+ foo + bar + baz I've switc