On Thu, Aug 18, 2011 at 6:44 PM, Bastien wrote:
> Valentin Wüstholz writes:
>
>> I was thinking of the the 80 character line limit for both code and
>> commit messages, which doesn't seem to be in there. It might also make
>> sense to link to some style guide
Hi Bastien.
On Wed, Aug 17, 2011 at 11:40 AM, Bastien wrote:
>> Maybe that's something that could be added to the
>> corresponding worg page (http://orgmode.org/worg/org-contribute.html).
>
> This is already described here:
>
> http://orgmode.org/worg/org-contribute.html#sec-5
>
> Feel free to
rote:
> Hi Valentin,
>
> Valentin Wüstholz writes:
>
>>> Meanwhile, could you please reformat a bit your patch (no more than 80
>>> columns, no parents on their own line), add a commit message followed
>>> by TINYCHANGE (unless you have signed FSF papers alr
Hi Bastien.
On Tue, Aug 16, 2011 at 7:05 PM, Bastien wrote:
> Hi Valentin,
>
> Valentin Wüstholz writes:
>
>> I've noticed that org-add-planning-info adds a superfluous space
>> character when a repeated task is marked as DONE and gets rescheduled.
>
> Patc
Hi Nicolas.
On Tue, Aug 9, 2011 at 3:21 PM, Nicolas Goaziou wrote:
>> I would love to hear how other people feel about this.
>
> Same here. I don't use such blocks very often after all.
>
> Meanwhile, could you please reformat a bit your patch (no more than 80
> columns, no parents on their own
Hi Nicolas.
On Tue, Aug 9, 2011 at 11:18 AM, Nicolas Goaziou wrote:
> Hello,
>
> Valentin Wüstholz writes:
>
>> Sure. At least four use cases come to my mind for this: (a) literal
>> console output, (b) blocks of pseudo code (can't really use SRC blocks
>> si
Hi Nicolas,
thanks for the quick response.
On Tue, Aug 9, 2011 at 12:33 AM, Nicolas Goaziou wrote:
> Valentin Wüstholz writes:
>
>> Colons are great for short snippets. However, blocks are far more
>> convenient for longer passages.
>
> That's certainly true, but
Hi Nicolas.
On Mon, Aug 8, 2011 at 10:40 PM, Nicolas Goaziou wrote:
> Hello,
>
> Valentin Wüstholz writes:
>
>> lines in example blocks are currently indented like the surrounding
>> begin and end delimiters. ¨This works fine unless, you want to indent
>>
Hi,
lines in example blocks are currently indented like the surrounding
begin and end delimiters. ¨This works fine unless, you want to indent
some lines manually; in this case, auto-indenting the buffer reverts
the manual indentation. This patch should prevent this from happening.
Best regards,
Hi,
I've noticed that org-add-planning-info adds a superfluous space
character when a repeated task is marked as DONE and gets rescheduled.
Example:
* TODO foo
SCHEDULED: <2011-08-08 Mon +1d>
This becomes (after pressing Shift-Right a few times):
* TODO foo
SCHEDULED: <2011-08-09 Tue +1d>
(car (last org-export-ascii-underline
Best regards,
Valentin
On Tue, Feb 15, 2011 at 7:58 AM, Valentin Wüstholz wrote:
> On Tue, Feb 15, 2011 at 5:31 AM, Bastien wrote:
>> Hi Valentin,
>>
>> Valentin Wüstholz writes:
>>
>>> thanks. Is ther
On Tue, Feb 15, 2011 at 5:31 AM, Bastien wrote:
> Hi Valentin,
>
> Valentin Wüstholz writes:
>
>> thanks. Is there a reason for keeping the 'reverse' operation? The
>> documentation for org-export-ascii-underline states that the
>> characters are ordered
t 12:44 PM, Bastien wrote:
> Hi Valentin,
>
> Valentin Wüstholz writes:
>
>> I have attached a small patch for a bug that I reported a while ago.
>> See http://thread.gmane.org/gmane.emacs.orgmode/36097.
>
> Thanks for this patch. I've just applied a simplified
Hi,
I have attached a small patch for a bug that I reported a while ago.
See http://thread.gmane.org/gmane.emacs.orgmode/36097.
Best regards,
Valentin
org-ascii.el.diff
Description: Binary data
___
Emacs-orgmode mailing list
Please use `Reply All' to
Hi,
I have attached a small patch, that adds nice formatting for time
stamps in headlines.
Best regards,
Valentin
org-latex.el.diff
Description: Binary data
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgm
Hi,
I have attached a small patch that makes LaTeX export use the same
regular expression as HTML export for identifying horizontal lines.
The regular expression used in HTML export seems more useful, since it
allows for leading whitespace, which is for instance introduced by
auto-indenting the bu
Thanks! I tried it out and it doesn't quite work yet. The following
change seems to do the trick:
-- lisp/org-ascii.el --
index 01106c3..f9094a1 100644
@@ -655,3 +655,2 @@ publishing directory."
- (setq char (or (nth (max (- umax level)
Hi,
I ran into a bug with the ascii export. Exporting the attached org
file to ascii fails (see the attached backtrace). The failure seems to
be related to the 'H:10' option.
I had a look at the code and the following patch seemed to alleviate the issue:
-- lisp/org-a
Great! Thanks.
Valentin
On Sun, Apr 11, 2010 at 6:14 PM, Eric Schulte wrote:
> Hi Valentin,
>
> Thanks for reporting this bug. I've just pushed up a fix.
>
> Best -- Eric
>
> Valentin Wüstholz writes:
>
>> Hi,
>>
>> when I export to LaTeX
Hi,
when I export to LaTeX, only the body is exported. It looks like this
might be due to the following change:
1b40601ebd5de3746ab72d19d3258f815a402066
Cheers,
Valentin
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the lis
Hi,
the following hack works quite well for me:
(add-hook 'org-export-latex-after-blockquotes-hook 'org-export-latex-arrows)
(defun org-export-latex-arrows ()
(goto-char (point-min))
(while (search-forward "==>" nil t)
(org-if-unprotected
(replace-match (org-export-latex-protect-stri
Great! Thanks.
Valentin
On Fri, Nov 6, 2009 at 5:12 PM, Carsten Dominik
wrote:
> This is nice, thanks, I have applied your patch.
>
> - Carsten
>
> On Nov 6, 2009, at 1:20 PM, Valentin Wüstholz wrote:
>
>> Hi,
>>
>> I would like to suggest two small
Hi,
the following works for me:
(setq system-time-locale "C")
Cheers,
Valentin
On Sun, Aug 30, 2009 at 8:06 PM, bar tomas wrote:
> Hi,
>
> First of all I'd like to say that I find orgmode great. I'd been looking for
> a tool like this for years.
> I have a french version of windows so when I
Great! Thanks!
Valentin
2009/8/27 Carsten Dominik :
> I have reverted this commit, thanks.
>
> - Carsten
>
___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listin
Hi,
it seems to me like revision 0ba7d3d2f961a224d077e6806b804cde4c4a7726
broke the LaTeX export of emphasises (e.g. =foo=).
Is anybody else having the same problem?
Cheers
Valentin
___
Emacs-orgmode mailing list
Remember: use `Reply All' to send re
25 matches
Mail list logo