Nicolas Goaziou writes:
> It's a first step. It would be nice to get rid of `org-split-string'
> altogether in the long run. We may make `org-split-string' an obsolete
> alias for `split-string', and update code base accordingly.
Agreed. I was unclear, I meant: why not using split-string instea
Hi Kyle,
Kyle Meyer writes:
> I'll restore the use of font-lock-fontify-buffer and leave a comment to
> make sure it isn't reverted again.
Ouch. I've been bitten by this before, if my memory is correct.
Let's fix those regressions within the next hour and release 8.3.1
to propagate them.
Tha
Hi Achim,
Achim Gratz writes:
> Just a few statistics: these are 2936 commits since the 8.2 release 23
> months ago, 2390 commits on top of 8.2.10 and 1361 of those after the
> 8.3beta release 13 months ago.
Thanls - we clearly need a shorter and steadier release cycle!
--
Bastien
Nicolas Goaziou writes:
> Wasn't it a goal to slowly move away from contrib/ and use either ELPA
> or core instead?
Yes, it is still a goal -- but we don't know when this will happen so
in the meantime, adding a package to contrib/ is okay.
--
Bastien
Aloha all,
IMHO, this should be in core, along with a function (if it doesn't
exist) to remove a link from the description text.
All the best,
Tom
Bastien Guerry writes:
> Nicolas Goaziou writes:
>
>> Wasn't it a goal to slowly move away from contrib/ and use either ELPA
>> or core instead?
>
On Tuesday, 4 Aug 2015 at 22:24, Titus von der Malsburg wrote:
> I’d like to use org-mode to create an academic poster like this one
> (random example found using Google):
[...]
> What I would like to write in org is something like the following:
Beamer is fully supported in org and especially
Eric S Fraga writes:
> For LaTeX directives that I used to always put in #+latex: lines when
> I needed these within a paragraph, I now increasingly use
> @@latex:...@@.
FYI, you could make it smelt to just @@l:...@@ with:
--8<---cut here---start->8---
(ad
On Wednesday, 5 Aug 2015 at 10:17, Sebastien Vauban wrote:
> Eric S Fraga writes:
>> For LaTeX directives that I used to always put in #+latex: lines when
>> I needed these within a paragraph, I now increasingly use
>> @@latex:...@@.
>
> FYI, you could make it smelt to just @@l:...@@ with:
>
>
I forgot to mention that I have this in my emacs setup related to ox-latex
and minted:
(setq org-latex-listings 'minted)
(setq org-latex-packages-alist
'(
;; % 0 paragraph indent, adds vertical space between
paragraphs
thx both John and Matt
I went on and used johns function he recommended (since i needed a simple
text only export) and it works flawlessly :)
John: just a quick follow up though
with that function you kindly shred "email-heading " it opens up a buffer
and you insert the email address. is it poss
I've released 8.3.1 with this fix.
Thanks,
--
Bastien
Thomas S. Dye writes:
> IMHO, this should be in core, along with a function (if it doesn't
> exist) to remove a link from the description text.
Yes, we should consider this. Let's find some good keybinding,
we cannot rely on hydra for this.
Thanks,
--
Bastien
Thanks guys!
On Aug 5, 2015 7:34 AM, "Bastien Guerry" wrote:
> I've released 8.3.1 with this fix.
>
> Thanks,
>
> --
> Bastien
>
* Automatic send email to myself
#+BEGIN_SRC emacs-lisp
(defun email-heading-to-me ()
"Send the current org-mode heading as the body of an email, with headline as
the subject."
(interactive)
(save-excursion
(org-mark-subtree)
(let ((content (buffer-substring (point) (mark)))
Seeing that org-mode had a new version I did a git pull, make autoloads,
make doc, make config, sudo make install, and then restarted emacs which
failed to start saying -
╭
│org-babel-safe-header-args , and I think it said something about the
| function being void. |
╰
So I commented my g
Actually everyone can ignore this; I have a working hack.
On Wed, Aug 5, 2015 at 6:55 AM Kaushal wrote:
> I forgot to mention that I have this in my emacs setup related to ox-latex
> and minted:
>
>(setq org-latex-listings 'minted)
>
> (setq org-latex-packages-alist
>
Hello,
Just to be sure, can we require Emacs 24.4 for development version
(a.k.a. Org 8.4)? As a data point, Debian stable provides it.
Also, what is the status of XEmacs support? AFAIU Org 8.3 doesn't build
on XEmacs but no one is complaining. We may as well drop it and ignore
most of "org-compa
+1
On Wed, Aug 5, 2015 at 3:38 PM Nicolas Goaziou
wrote:
> Hello,
>
> Just to be sure, can we require Emacs 24.4 for development version
> (a.k.a. Org 8.4)? As a data point, Debian stable provides it.
>
> Also, what is the status of XEmacs support? AFAIU Org 8.3 doesn't build
> on XEmacs but no
On Wed, Aug 05, 2015 at 09:39:19PM +0200, Nicolas Goaziou wrote:
> Hello,
>
> Just to be sure, can we require Emacs 24.4 for development version
> (a.k.a. Org 8.4)? As a data point, Debian stable provides it.
>
> Also, what is the status of XEmacs support? AFAIU Org 8.3 doesn't build
> on XEmacs
Nicolas Goaziou writes:
> Just to be sure, can we require Emacs 24.4 for development version
> (a.k.a. Org 8.4)? As a data point, Debian stable provides it.
Are the any differences between 24.4 and 24.5 that we care about?
wrt the distros I care about:
- Arch and Fedora are on both on 24.5.
-
Hi Nicolas,
Nicolas Goaziou writes:
> Just to be sure, can we require Emacs 24.4 for development version
> (a.k.a. Org 8.4)? As a data point, Debian stable provides it.
Before discussion 24.4 vs say 24.3... why?
What compatibility code is a burden today?
> Also, what is the status of XEmacs su
Sharon Kimble writes:
> ╭
> │org-babel-safe-header-args , and I think it said something about the
> | function being void. |
> ╰
A similar error is also reported here:
https://www.reddit.com/r/emacs/comments/3fuq11/org_83_released/
Anyone knows how to reproduce and fix this?
--
Basti
I had this problem too, but only on one of my machines. In my case it was
triggered by "(require 'ob-R)". Running "byte-compile-file" on ob-R.el
fixed it for me. I don't know what that means, but maybe it will give
someone a clue as to how to track this down.
best,
Ista
On Aug 5, 2015 6:23 PM, "Ba
Bastien Guerry writes:
> Before discussion 24.4 vs say 24.3... why?
> What compatibility code is a burden today?
24.3 is the minimum required to drop `org-link-escape-browser', which is
currently buggy.
24.4 fixes `split-string' and introduces many changes at the lisp level
(variadic functions.
Thank you, Eric! I had to add ignoreheading to the top-level heading
because the title of the poster is handled via the #+TITLE attribute,
but otherwise it works nicely. It’s a little unfortunate that the
wrap-all heading is needed because it doesn’t serve a purpose. I tried
a couple of things
agenda shows them.
org-agenda-skip-comment-trees is non-nil.
git maint -> new git maint caused this.
On 8/5/15, Samuel Wales wrote:
> agenda shows them.
>
> org-agenda-skip-comment-trees is non-nil.
Samuel Wales wrote:
> git maint -> new git maint caused this.
>
> On 8/5/15, Samuel Wales wrote:
>> agenda shows them.
>>
>> org-agenda-skip-comment-trees is non-nil.
I can't reproduce this running emacs -Q with the current master
(b5f5d66) and Emacs 24.5.1 using the following test file as the
24.4.1
can repro with -Q and this old testcase code and restriction lock and
org-agenda-list.
===
;;;
;;;alpha-org-testcase.el
;;;
;;;minimal testcase for org
;;;
;;; dorg=your-org-dir delorgsrc=your-org-src-dir emacs -Q -l
alpha-org-testcase.el
;;;
;;;
;;;for my use i do this:
;;;
"
mep=t em
Perfect! (as always i might add John ;))
thx so muxh
Z
On Wed, Aug 5, 2015 at 9:38 PM, John Kitchin
wrote:
> * Automatic send email to myself
>
> #+BEGIN_SRC emacs-lisp
> (defun email-heading-to-me ()
> "Send the current org-mode heading as the body of an email, with
> headline as the subjec
On Wed, 05 Aug 2015 23:51:32 +0200
Rasmus wrote:
> Nicolas Goaziou writes:
>
> > Just to be sure, can we require Emacs 24.4 for development version
> > (a.k.a. Org 8.4)? As a data point, Debian stable provides it.
>
>
> Are the any differences between 24.4 and 24.5 that we care about?
>
> wr
iguration
#
Emacs : GNU Emacs 24.5.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.10.8)
of 2015-05-04 on dflt1w
Package: Org-mode version 8.3.1 (8.3.1-elpaplus @
/home/dfeich/.emacs.d/elpa/org-plus-contrib-20150805/)
current state:
==
(setq
org-src-lang-modes '(("
Xebar Saram writes:
> Perfect! (as always i might add John ;))
>
> thx so muxh
Just to add to the mess, here's something I've used before -- kind of a
poor man's mail merge, to send spam (not really spam!).
(defvar my-spam-sent-names nil
"Make sure that, even if we have to run this multiple
33 matches
Mail list logo