[O] source block breaks when code looks like heading

2017-08-07 Thread bruce robertson
multi-line comments or expressions appearing to be headings break block. * top #+begin_src php /* *do not prepend a space to 'do' */ b = 2 *3; // do not prepend a space to '3' #+end_src GNU Emacs 25.1.1 (x86_64-apple-darwin13.4.0, NS appkit-1265.21 Version 10.9.5 (Build 13F1911)) of 2016-09-20

Re: [O] [PATCH] org.el: Allow tags without keys in customization

2017-08-07 Thread Allen Li
* lisp/org.el (org-tag-alist, org-tag-persistent-alist): Add non-keyed tag type. --- lisp/org.el | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 4bb2345a3..32c337601 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -3574,8 +3574,10 @@

Re: [O] [PATCH] Add option to automatically align tags in agenda view

2017-08-07 Thread Adam Porter
Kyle Meyer writes: > ... with just one case and a fallthrough, I'd prefer you test with eq > rather than using pcase. Hi Kyle, Ok, I've updated the patch. Thanks, Adam >From 99a61e09d5267ddaa84e8f93fbab161144aea011 Mon Sep 17 00:00:00 2001 From: Adam Porter

Re: [O] clock start time is gone

2017-08-07 Thread Samuel Wales
On 8/7/17, Nicolas Goaziou wrote: > Fixed. Thank you. thank you! i seem to get another bug, no active clock, on the same mwe: :LOGBOOK: CLOCK: :END: if i use -Q with these settings: (setq org-log-into-drawer t) (setq org-clock-into-drawer t) (setq

Re: [O] ox-taskjuggler on MELPA useful despite org-plus-contrib

2017-08-07 Thread Simon Guest
Well, almost as soon as I started on that, I see some issues around mixing old/new org-mode functionality, so this seems like a not-so-good idea after all. In particular, ox-taskjuggler is using the very new org-duration library. I'll think of another approach, not using MELPA. At least until

Re: [O] clock start time is gone

2017-08-07 Thread Nicolas Goaziou
Hello, Samuel Wales writes: > i seem to get another bug, no active clock, on the same mwe: > > :LOGBOOK: > CLOCK: > :END: > > if i use -Q with these settings: > > (setq org-log-into-drawer t) > (setq org-clock-into-drawer t) > (setq org-clock-mode-line-total 'today) >

Re: [O] [PATCH] org.el: Allow tags without keys in customization

2017-08-07 Thread Nicolas Goaziou
Hello, Allen Li writes: > * lisp/org.el (org-tag-alist, org-tag-persistent-alist): > Add non-keyed tag type. Applied. Thank you. Regards, -- Nicolas Goaziou0x80A93738

Re: [O] clock start time is gone

2017-08-07 Thread Samuel Wales
On 8/7/17, Nicolas Goaziou wrote: > I'm not sure about the steps required to reproduce your issue. What do > you do on the same mwe? Clock in > > "* clock in here, then sort below, then try to clock out here" > > then sort at > > "*** sort here by alpha" > > then clock

Re: [O] [PATCH] Add option to automatically align tags in agenda view

2017-08-07 Thread Kyle Meyer
Adam Porter writes: > Ok, I've updated the patch. Thanks. A few more comments. > (org-agenda-align-tags): Handle automatic alignment > (org-agenda-tags-column): Add 'auto setting You're missing the file name in the entries above. Also, the entries should end in a period.

[O] ox-taskjuggler on MELPA useful despite org-plus-contrib

2017-08-07 Thread Simon Guest
Well, I see now that org-plus-contrib has its issues. Specifically I am hitting the same issue as reported here, which I see has been a problem for nearly 2 years. https://github.com/purcell/emacs.d/issues/297 Therefore, unless I hear another idea or an objection here, I intend to proceed with

Re: [O] clock start time is gone

2017-08-07 Thread Nicolas Goaziou
Hello, Samuel Wales writes: > this mce produces "clock start time is gone" bug in emacs -Q. emacs > 24, org maint. > > === > * b > * clock in here, then sort below, then try to clock out here > *** SOMEWHAT b > *** c > *** c > *** c > *** c > *** sort here by alpha >

Re: [O] Announcing Worg (Web-Org)

2017-08-07 Thread Nicolas Goaziou
Hello, Josh Moller-Mara writes: > ~org-toggle-tag~ now seems to delete currently set tags for a heading. It > seems that calling ~(match-string 1)~ after ~(replace-match "")~ makes > the former return an empty string, so the ~current~ tags get set as an > empty string. It also

Re: [O] Slow speed of week and month views

2017-08-07 Thread Nicolas Goaziou
Hello, Karl Voit writes: > Results at the end of this posting. Thank you. I assume you have around 17 agenda files, use a single day view and have much more SCHEDULED than DEADLINE? Is it right? > I may take some time to come up with a minimum config and my agenda >

Re: [O] Change in appearance of org-todo-keywords

2017-08-07 Thread Colin Baxter
Dear Nicolas, > "Nicolas" == Nicolas Goaziou writes: Nicolas> Hello, Colin Baxter writes: >> Yes, you are correct. I can confirm that switching off >> org-todo-state-tags-triggers removes the insertion of colons for >> me too.

Re: [O] Change in appearance of org-todo-keywords

2017-08-07 Thread Josh Moller-Mara
Nicolas Goaziou writes: > Hello, > > Colin Baxter writes: > >> Yes, you are correct. I can confirm that switching off >> org-todo-state-tags-triggers removes the insertion of colons for me >> too. > > Fixed. Thank you. > Hello, ~org-toggle-tag~ now

Re: [O] Change in appearance of org-todo-keywords

2017-08-07 Thread Colin Baxter
Dear Josh, > "Josh" == Josh Moller-Mara writes: Josh> Colin Baxter writes: >> As of today, TODO now appears with three sets of un-requested >> double colons after it, as in TODO :: :: :: >> >> The behaviour doesn't occur with emacs

Re: [O] [PATCH v3] ob-vala.el: Add Vala support to Babel

2017-08-07 Thread Nicolas Goaziou
Hello, Christian Garbs writes: > * lisp/ob-vala.el: Add support for the Vala language to Babel. > > * testing/lisp/test-ob-vala.el: Add tests for ob-vala.el. > > * doc/org.texi (Working with source code): Add Vala to the list of > supported languages. Applied. Thank you.

Re: [O] Change in appearance of org-todo-keywords

2017-08-07 Thread Nicolas Goaziou
Hello, Colin Baxter writes: > Yes, you are correct. I can confirm that switching off > org-todo-state-tags-triggers removes the insertion of colons for me > too. Fixed. Thank you. Regards, -- Nicolas Goaziou

Re: [O] [PATCH] ob-vala.el: Add Vala support to Babel

2017-08-07 Thread Nicolas Goaziou
Hello, Christian Garbs writes: > I fear that I am the only one who will ever run the vala tests ;-) > > - Are there any build hosts that automatically run the tests with all > languages enabled? I don't think so. > - Or could the BTEST_OB_LANGUAGES default in mk/default.mk

Re: [O] Slow usage of capture templates

2017-08-07 Thread Johan Ekh
Thanks Fabrice! I will continue to evaluate the WSL as I now have it installed and it seems to work. I think my strategy will be to try both the native windows version and the Ubuntu version of my key applications and just see which one works best for me. I installed XMing for X server and it

Re: [O] Commit "org-agenda: Support for dimming..." breaks agenda display

2017-08-07 Thread Yuri Lensky
Hi, I have a attached a patch to fix this bug. As can be seen from the patch, the problem was improperly balanced parenthesis in `org-agenda--mark-blocked-entry' which caused the function to return 'nil unless the entry passed to it had the todo-state text property, whereas the proper behavior is

Re: [O] Change in appearance of org-todo-keywords

2017-08-07 Thread Colin Baxter
Dear Josh, > "Josh" == Josh Moller-Mara writes: Josh> Nicolas Goaziou writes: >> Hello, >> >> Colin Baxter writes: >> >>> Yes, you are correct. I can confirm that switching off >>>

[O] [PATCH] Add option to automatically align tags in agenda view

2017-08-07 Thread Adam Porter
Hi Nicolas, Here is a patch to optionally automatically align tags in the agenda view to the right edge of the window. I don't yet have the CA done, but I think this qualifies as a tinychange. Thanks, Adam >From 8cd0a4035ddb8fcd90d6011c9fd529526472b379 Mon Sep 17 00:00:00 2001 From: Adam

Re: [O] Slow usage of capture templates

2017-08-07 Thread Johan Ekh
Thanks Tim! I didn't know about this. Ive installed it and it seems to work very nice! I will continue to test it and maybe scrap both vmware (been using for 10+ years) and cygwin. Thanks alot! Johan On Thu, Aug 3, 2017 at 12:12 AM, Tim Cross wrote: > > Probably no real

Re: [O] Slow usage of capture templates

2017-08-07 Thread Fabrice Popineau
2017-08-03 0:12 GMT+02:00 Tim Cross : > Probably no real help, but win10 is (or soon will be) bundling in bash > shell, which may address many of the reasons to use Cygwin. From posts > I've seen on a number of lists, I would not be surprised to see cygwin > slowly decline

Re: [O] Commit "org-agenda: Support for dimming..." breaks agenda display

2017-08-07 Thread Nicolas Goaziou
Hello, Yuri Lensky writes: > I have a attached a patch to fix this bug. As can be seen from the patch, > the problem was improperly balanced parenthesis in > `org-agenda--mark-blocked-entry' which caused the function to return 'nil > unless the entry passed to it had the

Re: [O] Change in appearance of org-todo-keywords

2017-08-07 Thread Malcolm Purvis
> "Josh" == Josh Moller-Mara writes: Josh> From what I can tell, doing something like (org-toggle-tag Josh> "sometag" 'off) produces these double colons. It seems to have to Josh> do with the way that org-split-string no longer returns nil, but Josh> returns (""). I'm also

Re: [O] Add-Easy-Template-for-COMMENT-C to org.el

2017-08-07 Thread Nicolas Goaziou
Hello, Grant Rettke writes: > Attached is a patch to an Easy Template binding `C' for `COMMENT'. Thank you. Would you mind also adding an entry in ORG-NEWS about it? > The tests had the same 1 failure before and after I made the change > "1 unexpected results: >

Re: [O] [PATCH] Add option to automatically align tags in agenda view

2017-08-07 Thread Kyle Meyer
Adam Porter writes: [...] > + (org-agenda-tags-column (pcase org-agenda-tags-column > + ('auto (- (window-text-width))) I believe that `auto is needed instead of 'auto because the latter will fail with Emacs versions earlier than Emacs 25.