stardiviner writes:
> Matthew Lundin writes:
>
>>
>> I think you also need to replace the newline with a space in the upper
>> case version.
>>
> Supposed there is \n after #+end_src. I also checked the original version
> before
> that change commit. The
stardiviner writes:
> I updated the patch commit message.
>
> From b0bdf52a305cb5f9663ee1dc2d08c5de6c7cb602 Mon Sep 17 00:00:00 2001
> From: stardiviner
> Date: Sun, 31 May 2020 10:59:41 +0800
> Subject: [PATCH] fix 5f0a9cca3 missing space
>
> * lisp/ob-core.el (org-babel-demarcate-block):
Russell Adams writes:
> Unfortunately looking at the options keeps coming back to how poor
> general support for CardDAV and vcard files is. In particular, the
> popular vdirsyncer tool is now looking for a new maintainer, and I had
> the impression from his list of grievances he might drop it
Alex Branham writes:
> I find it unintuitive that the usual calendar keys C-n/p/f/b don't work
> when scheduling tasks in org mode (yes, I know about S-right, etc). I've
> something like this to my init file for those four keys (based on their
> setup in org-keys.el) for some time with no
Ihor Radchenko writes:
>> As I said, PATCH welcome, I admired many times I don't have ability to build
>> a
>> complex archive functionality on url.el or wget or curl.
>
> I have found the following solution [1] using wget:
>
> wget --mirror -p --convert-links -P ./LOCAL-DIR WEBSITE-URL
>
I
Ihor Radchenko writes:
> My view on this is bare-bones download, in a spirit of org-attach
> itself. There is already 'url method in org-attach-attach, but it is
> hard-coded to url-retrieve-synchronously. It would be handy if user
> could configure alternative retrievers (like monolith, wget,
Ihor Radchenko writes:
> It does not mean that attaching URL directly is not worth including
> into org. This sounds pretty common use case, especially considering
> the number of packages providing similar feature. You mentioned
> org-board, but there is also org-download and org-web-tools.
My
Nicolas Goaziou writes:
> Matt Lundin writes:
>
>> All drawers default to open at startup except for property drawers. This
>> includes :LOGBOOK: drawers, which can be quite long and block view of an
>> entry.
>
> I think all drawers are opened at startup, including property drawers.
>
>> I ran
stardiviner writes:
> I attached the patch.
>
> I think this feature will be helpful for use who archive web page data usually
> like me. To be more portable, I also added an defcustom option for other
> external command. And use an if condition to detect whether external command
> available,
Jack Kamm writes:
> Hello,
>
> Thanks for reporting. I've just fixed this issue in master (commit
> 6149b6cb6).
>
> The problem was that ob-python adds tab indentation to the code body
> before putting it inside a main() function, which adds spurious
> indentation to multiline strings passed
Sébastien Miquel writes:
> Is there a way to have an org-babel block which only exports its code
> but still gets evaluated when exporting ?
I think you can do something like this:
#+begin_src emacs-lisp :exports both :results none
(setq my-variable t)
#+end_src
Or, if you want to
Hi Thomas,
Thomas Schaper writes:
> When playing around with org-archive, I noticed that the function
> org-archive-all-matches doesn't use org-archive-default-command but
> calls org-archive-subtree directly. Is there any reason for this, or is
> it simply a small bug/missing feature?
I think
Anthony Carrico writes:
> Given that the mailing list holds the issues, it would be nice if you
> could import the mailing list into your client as a lump (maildir/mbox).
> Currently you can only download it chunk by chunk, so it isn't really
> practical for a newcomer to import the whole
Detlef Steuer writes:
> How to add more now? Same here. Mail is functionally superior to a lot
> of modern solutions.
>
> A Bugtracker you do not use on a regular basis often is a horrible time sink.
> Plus, most of the time you need just another account for a site you
> never wanted an account
Ivan Sokolov writes:
> 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 @@
>
Nicolas Goaziou writes:
> Matthew Lundin writes:
>
>> What I was thinking of in terms of configuration is being able to
>> preserve path-based links (instead of IDs) if creating a link above the
>> first headline. This is the behavior that existed in the past when
>
Nicolas Goaziou writes:
>
>> -(when (save-excursion (skip-chars-backward "*") (bolp))
>> - (forward-char
>> +(and (looking-at " ")
>> + (string-match "\\*+" (buffer-substring (point-at-bol) (point)))
>> + (forward-char
>
> Please replace `and' with `when' if
Gustav Wikström writes:
> Hi again,
>
> Patch is attached. It's not applied yet as it doesn't include anything
> about user-configuration yet. @Matt Lundin, care to elaborate what you
> had in mind in terms of that?
>
> With this patch a link before first headline is stored with the
> filename
Bastien writes:
> - org-fontify-done-headline => t
>
> This is useful to visualize done headlines and can be easily turned
> off, while not being easily discovered for Org newcomers.
I find this a bit visually distracting, but that's likely because I've
used Org mode in the "old school" way
Mirko Vukovic writes:
> For most of my links, I want to use the ID generated by orgmode
> i.e., (setq org-id-link-to-org-use-id t)
>
> But occasionally, for targets that are not part of my agenda files, I want
> to store a link of the type file:path.org::*headline
>
> I wrote the following
Hi Bastien,
Bastien writes:
>
> Andrew Hyatt writes:
>
>> Removing the (beginning-of-line 1) at the end of the time display
>> code in that function, and substituting (org-agenda-previous-line)
>> seems to fix it. I'm not sure if that's the right approach - the
>> previous code didn't use that
Adam Porter writes:
> There may be improvements to be made, but the defaults shouldn't be set
> to match the preferences of any one user. Remember that people have
> been using Org for years, and theming and faces are very personal. ;)
I strongly agree. All of the changes mentioned in these
"Berry, Charles" via "General discussions about Org-mode."
writes:
>> On Jan 31, 2020, at 3:03 AM, Bastien wrote:
>>
>> Hi all,
>>
>> I'd like to make an equivalent to in Org Src
>> buffers so that hitting will close the buffer, which seems
>> natural.
>>
>> WDYT?
>
> Many modes used in
Sébastien,
Matt Lundin m...@imapmail.org writes:
Hi Sebastian,
My apologies for misspelling your name!
- Matt
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
Rainer M Krug r.m.k...@gmail.com writes:
On Mon, Sep 27, 2010 at 2:03 AM, Matt Lundin m...@imapmail.org wrote:
Rainer M Krug r.m.k...@gmail.com writes:
Hi
I hava a problem with exporting to LaTeX.
I want to export a table to latex. I put it into a
Hi Carsten,
Carsten Dominik carsten.domi...@gmail.com writes:
On Sep 13, 2010, at 6:48 PM, Matt Lundin wrote:
lisp/org-agenda.el (org-agenda-set-tags): Remove org-agenda-show to
prevent
disrupting windows and changing point in original buffer.
(org-agenda-set-property): Same
[My apologies, but I'm afraid my first attempt at this patch mistook a
necessary second check for redundancy. Here is an improved version.]
* lisp/org-agenda.el (org-prepare-agenda): If the agenda is called
from within the agenda via an elisp link, such as
[[elisp:(org-agenda-list)]],
Hi evita,
evita moreno evitamoren...@live.com writes:
Typing
$ sudo lsmod | grep pcspkr
in my terminal does not give anything. It simply shows the next prompt
(if I am using the correct terminology - I am new in emacs and Linux!).
You could try sudo modprobe pcspkr. This should activate
David Maus dm...@ictsoc.de writes:
Matt Lundin wrote:
Aidan Gauland aidal...@no8wireless.co.nz writes:
If I create a link with C-c C-l and give it a relative file: link, a
link is created with an absolute path. For example, C-c C-l
file:../foo.org RET foo puts
Hi Carsten,
Thanks so much both for thinking this through. And thanks again, Eric,
for your work in integrating org-babel into org-mode---including taking
into account a humble user's concerns! :)
Carsten Dominik carsten.domi...@gmail.com writes:
Here is what I propose (several items are
Eric Schulte schulte.e...@gmail.com writes:
Matt Lundin m...@imapmail.org writes:
[...]
When I run make clean make make install I find that the language
directory is not installed. Does the langs directory require a manual
installation?
Also, with make install, the ob-* files are
Matt Lundin m...@imapmail.org writes:
Kestutis Matonis maton...@gmail.com writes:
in .mailcap i have set-upped:
inode/directory-locked; pcmanfm2 '%s';
inode/directory; pcmanfm2 '%s';
text/directory; pcmanfm2 '%s';
but when I'm trying to open attachments directory, it is still opened
in
Carsten Dominik carsten.domi...@gmail.com writes:
I guess this is wih pretty entity display turned on?
Yes. Sorry I forgot to mention that.
- Matt
On Jun 6, 2010, at 7:39 PM, Matt Lundin wrote:
Git commit 70d24c5d036cd5787f719104a0ad2f157c5207b1 causes underscores
in hyperlinks to
Hi Carsten,
Carsten Dominik carsten.domi...@gmail.com writes:
can someone please summarize what the status of this discussion is?
I have lost track
As I understand it, the proposed patch hides items scheduled in the
future in the weekly agenda. E.g., if it is Monday, tasks scheduled for
Nathaniel Flath flat0...@gmail.com writes:
Yes, this patch is primarily for weekly agendas - it changes when items
are displayed to be the same as having a style of 'habit, while also
allowing to do it for non-recurring items.
Do you mean that it is the same as when
-binding setup, it worked ok to
assign it to C-c 7. Maybe better to set it on a viewing mode, but I
have been prone to hack as a go.
Be all that as it may be, here is the current state of the file on my
system.
Alan.
On Sun, May 16, 2010 at 10:43 PM, Matthew Lundin m...@imapmail.org
wrote
Robin Message rh...@cam.ac.uk writes:
Alternatively, is there some kind of headline ending command or some
way of easily adding one, e.g.
* Head 1
Body 1
*** Head 2
Body 2
***$
More Body 1
Stephan mentioned org-inline tasks, which has the following syntax:
--8---cut
Carsten Dominik carsten.domi...@gmail.com writes:
Hi Matt,
no, org-help.org is not about the FAQ, it is a separate document, like
a quick reference, made by Alan Davis. It is more than the refcard,
less than the manual.
It seems to live here:
Buck Brody buckbr...@gmail.com writes:
Might I ask why the sparse tree search above or a simple agenda
view of deadlines is inadequate? The daily agenda provides a nice
view of all deadlines, making clear which are due today and which
are past due. And with a custom agenda
Buck Brody buckbr...@gmail.com writes:
The problem with the sparse tree is that a sparse tree will only show
the headlines above the item with a deadline, it will not show the
sibling headlines. For example, if I used a sparse tree on:
That depends on the value of org-show-siblings.
To
Hi Buck,
Buck Brody buckbr...@gmail.com writes:
Sorry, I don't think I properly described what I am looking for. I
want a visual indicator (like a tag or a face) of tasks due today, but
I don't want to do a specific search. The idea would be that, within a
view of all tasks, I would be
Carsten Dominik carsten.domi...@gmail.com writes:
On Apr 19, 2010, at 5:07 PM, Matthew Lundin wrote:
I find that (org-agenda-restriction-lock) makes subsequent calls to
my-org-agenda-files-by-filetag slow, since it refreshes the current
agenda.
Are there any potential pitfalls if I use
Hi Carsten,
Carsten Dominik carsten.domi...@gmail.com writes:
On Apr 17, 2010, at 3:50 PM, Matt Lundin wrote:
FWIW, I've found it quite convenient to rely on filetags to organize
my notes. I've written a few functions that allow me to limit my
agenda to a subset of agenda files that share a
Hi Carsten,
Carsten Dominik carsten.domi...@gmail.com writes:
that is a good catch. org-diary is a total orphan for me,
I have not looked at this function for 5 years - it was written
when I was still thinking to use Org-files through the Emacs diary.
Thanks for applying the patch. Yes, I
Hi Stephen,
Stephen Eglen s.j.eg...@damtp.cam.ac.uk writes:
When I enter the time of day after typing i d, the time of day is
added to the timestamp (as above) but is *not* removed the headline.
E.g.,
Day entry: 9:00am go shopping [RET]
...results in the following headline...
*
Hi Carsten,
Carsten Dominik carsten.domi...@gmail.com writes:
wow, you have proven me wrong. There is a way to get
a significant speedup in agenda construction, for special
cases like you mentioned in an earlier message. This is
brilliant.
I have taken the patch, with a few small
Hi Trance,
Trance Diviner trance.divi...@gmail.com writes:
On Feb 25, 2010, at 7:38 PM, Matt Lundin wrote:
Trance Diviner trance.divi...@gmail.com writes:
But I find that org-remember always creates notes as a level-2 entry.
For example, starting with an empty example.org file and the
David Maus maus.da...@gmail.com writes:
Matt Lundin wrote:
Nathaniel Flath flat0...@gmail.com writes:
I have a todo state, PENDING, that I organize tasks that I cannot
perform immediately. Is there a way to configure org-todoconfigure so
that when a task is switched to PENDING, if it has a
Hi Carsten,
Carsten Dominik carsten.domi...@gmail.com writes:
I am afraid I don't see any major speed improvements that could make
this happen.
Yes, one could parse all the files once, build a table in memory and
get the entries for each day from there - but that comes down to a
complete
Carsten Dominik carsten.domi...@gmail.com writes:
On Feb 19, 2010, at 4:46 AM, Matt Lundin wrote:
I'd like to report a minor issue with org-agenda-goto and inline
tasks.
Let's say one has the following file:
I do understand the problem, however, don't have a good solution
for it, and I
Brody, William (Buck) brody...@darden.virginia.edu writes:
I see that I can now filter by tag. Is it possible to filter by todo
state? For instance, I would like to exclude all DONE items.
There is no way to filter by TODO state. One way to achieve the same
effect, however, is to set the
Giovanni Ridolfi giovanni.rido...@yahoo.it writes:
Stephan Schmitt drmab...@cs.tu-berlin.de writes:
Hi, Stephan,
Also sprach Matt Lundin:
evita moreno evitamoren...@live.com writes:
* jones2000
blah blah blah keyword1 keyword2
*jones2007
blah blah keyword2
and so on. I was wondering
Carsten Dominik carsten.domi...@gmail.com writes:
On Feb 9, 2010, at 3:48 PM, Matt Lundin wrote:
Interesting. The docstring for org-agenda-todo-ignore-deadlines
seems to
suggest otherwise. Is this documentation inaccurate?
,
| Documentation:
| Non-nil means don't show near deadline
Daniel Martins daniel...@gmail.com writes:
In fact, it helps! Thanks
However a sentence like this:
+# a class that meets every Monday evening between February 16 and
April 20, 2009
** Class 7:00pm-9:00pm
%%(and (= 1 (calendar-day-of-week date)) (diary-block 2 16 2009 4 20 2009))
is not
Hi Carsten,
Carsten Dominik carsten.domi...@gmail.com writes:
Yep. Bastien moved us to a new server, and it seems that the cronjob
doing the update is not configured yet.
I updated by hand for now - will surely be fixed soon.
- Carsten
It appears that Worg updates are still not being
Matt Lundin m...@imapmail.org writes:
I notice that org-docview.el was added to the repo on November 28 or
thereabouts.
I'm experiencing a few problems with it.
When calling the agenda for the first time after starting up org-mode, I
get the following message:
,
| Problems while
Matt Lundin m...@imapmail.org writes:
The word/regexp agenda search to work with more than one word or regexp
unless the first word or regexp is also preceded by a + or -.
Take the following example.
* Org-mode
Org mode is a major mode for Emacs written by Carsten Dominik.
Let's say I
Hi James,
James TD Smith ahktenz...@mohorovi.cc writes:
I'm experiencing the same problem the OP reports (i.e., no effort or
clocksum summaries) when viewing columns in the agenda. I reported this
in an earlier email:
http://article.gmane.org/gmane.emacs.orgmode/19937
Ah, I missed that.
Carsten Dominik carsten.domi...@gmail.com writes:
Hi Matt,
yes. The fact that this has not been reported earlier shows that this
is not a frequent case.
Fixed now, 2 lines are now allowed. Is that enough?
Yes, I believe two should be enough. Thanks!
- Matt
Carsten Dominik carsten.domi...@gmail.com writes:
Hi Matt,
please try
(setq org-agenda-insert-diary-strategy 'top-level)
HTH
Thanks Carsten! It works very well.
- Matt
___
Emacs-orgmode mailing list
Remember: use `Reply All' to send
Carsten Dominik carsten.domi...@gmail.com writes:
On Nov 14, 2009, at 1:33 PM, Matt Lundin wrote:
Hi Carsten,
The new org-agenda-diary-entry looks quite convenient.
Would it be possible to add an option to bypass the date tree so as to
add each new appointment as a simple first level
Paul Mead paul.d.m...@googlemail.com writes:
Matthew Lundin m...@imapmail.org writes:
It will if you use brackets to perform a regexp match. E.g.,
Keyword={example1}
(...assuming the property is Keyword: example1 example2.)
From the manual page above:
,
| * If the comparison
Paul Mead paul.d.m...@googlemail.com writes:
Matt Lundin m...@imapmail.org writes:
http://orgmode.org/manual/Matching-tags-and-properties.html
- Matt
Thanks Matt, although that allows me to search for a single property (if
I use 'Keyword' as an example, this will return a match if I
John Wiegley jwieg...@gmail.com writes:
The only difference between regular repeating tasks and habits is this:
1. Habits appear at the bottom of the agenda (by default)
Out of curiosity, might I ask what org-agenda-sorting-strategy setting
produces the default behavior? My agenda shows
Matthew Lundin m...@imapmail.org writes:
John Wiegley jwieg...@gmail.com writes:
The only difference between regular repeating tasks and habits is this:
1. Habits appear at the bottom of the agenda (by default)
Out of curiosity, might I ask what org-agenda-sorting-strategy setting
Carsten Dominik carsten.domi...@gmail.com writes:
On Oct 22, 2009, at 10:23 PM, Matt Lundin wrote:
Bernt Hansen be...@norang.ca writes:
Tim O'Callaghan tim.ocallag...@gmail.com writes:
Can you use the #+BIND: keyword to set arbitrary variables and
achieve
the same result?
If I
Carsten Dominik carsten.domi...@gmail.com writes:
Hi Matt,
I believe this works now - please verity.
Thanks Carsten! This works great. Now org-mode makes organizing my life
that much easier. :)
- Matt
On Oct 17, 2009, at 1:42 AM, Matt Lundin wrote:
Hi everyone,
I've searched the
Hi Carsten,
Carsten Dominik carsten.domi...@gmail.com writes:
2. It is somewhat cumbersome to add two repeating timestamps to the
same
entry. If one sets up the first repeating timestamp, then one cannot
add
a second timestamp automatically. I.e., the following error message
appears:
John Wiegley jwieg...@gmail.com writes:
On Oct 20, 2009, at 10:02 AM, Matt Lundin wrote:
1. The syntax for defining habits seems fairly complex. One must add a
repeating scheduled timestamp, a repeating deadline timestamp and a
property. I was wondering if there could be anyway to automate
Carsten Dominik wrote:
Matt: Inline tasks are now always exported, the variable
org-inlinetask-export is obsolete. Export will look like
a description list item - in fact, the export uses internally
description lists.
Thanks for clarifying this. I had
Eric S Fraga ucec...@ucl.ac.uk writes:
At Fri, 02 Oct 2009 10:52:37 -0400,
Matt Lundin wrote:
Do you use ledger.el, which comes with the ledger source? It makes it
very easy to enter new items and to invoke ledger commands from within a
ledger file. I also find it indispensable for
Matt Lundin m...@imapmail.org writes:
Ilya Shlyakhter ilya_...@alum.mit.edu writes:
The suggestion is to enhance the timeline agenda with options to:
- recognize inactive timestamps ([in square brackets])
See the variable org-agenda-inactive-timestamps.
Correction. This should read
Matt Lundin m...@imapmail.org writes:
I've been looking for similar functionality for a while so I hacked up a
simple function to export the bookmarks of an org file as an html
file,
Here's a better version of the function:
--8---cut here---start-8---
Michael Gilbert m...@gilbert.org writes:
On Sep 23,2009, at 8:05 PM, Matt Lundin wrote:
Michael Gilbert m...@gilbert.org writes:
(1) I want to define a custom agenda view that displays only those
tasks that have today as a deadline or are past-due. Since many of my
tasks also have
Ethan ethan.glasser.c...@gmail.com writes:
On Wed, Sep 16, 2009 at 11:46 PM, Matt Lundin m...@imapmail.org wrote:
O.K. So I went a little crazy and added a bunch of definitions to
the
glossary.
- http://orgmode.org/worg/org-glossary.php
Perhaps it's not so
Matt Lundin m...@imapmail.org writes:
timetrap timet...@gmail.com writes:
One of my favorite features in the vim out liner was the ability to
hoist a sparse tree into a new temporary buffer.
Is there a way to do this in org-mode?
Of course there is. This is emacs. ;)
O.K. I just
Eric S Fraga ucec...@ucl.ac.uk, Eric S Fraga ucec...@ucl.ac.uk
writes:
At Tue, 01 Sep 2009 15:50:08 -0400,
Matt Lundin wrote:
key. Thus, short of using viper, the only solution that works for me is
to use the Caps Lock key as Control. With that slight modification, I
find emacs controls
Wes Hardaker wjhns...@hardakers.net writes:
On Tue, 25 Aug 2009 18:51:50 -0400, Matt Lundin m...@imapmail.org said:
ML Org-mode is not a mail mode. It certainly would not be suitable as a
ML major mode for composing mail.
I do frequently, however, write notes and things in org and then mail
waterloo waterloo2...@gmail.com writes:
I use _underlined_ to get a line under `underline' in html.
But the character `_' is known as math subscript of latex (just as in \
sum_0^100 ).
I want to use both underline and math subscript simultaneously.
As Bernt explained in his reply, the
Noorul Islam wrote:
On Sat, Aug 22, 2009 at 7:19 PM, Matt Lundinm...@imapmail.org wrote:
Noorul Islam wrote:
On Sat, Aug 22, 2009 at 6:48 PM, Matt Lundinm...@imapmail.org wrote:
Noorul Islam gnu...@gmail.com writes:
In an org-file I typed in #+A followed by ESC-Tab. I got a
At Wed, 12 Aug 2009 12:13:14 +0100,
Paul Mead wrote:
1. Map C-c a a to a custom agenda view:
(setq org-agenda-custom-commands
'((a Agenda
((agenda )
(todo STARTED)
turns out this was exactly what I needed, thanks!
You are welcome! I'm glad it helped.
Best,
John SJ Anderson geneh...@genehack.org writes:
Is there a way to display an agenda (like 'C-a a' does) but have it
limited to items that have a particular tag? (E.g., so I can see only
'@WORK' items when at work.)
The following FAQs explain how to do this:
User spamfilteracco...@gmail.com writes:
Is there a way to do it? I use saveplace.el which puts me back to
the position where I was last time. I use nofold, so the place is
not hidden when opening the file. Currently, I'm satisfied with
this setup, but it would even be nicer if the previous
Chris Willard cw-orgm...@meliser.co.uk writes:
On Fri, 24 Jul 2009, Russell Adams wrote:
Maybe we should make a portable org-mode! ;]
[snip (50 lines)]
All ready using it on my USB stick!
TTFN
Yes, that's the irony here: if you exclude webapps (which aren't nearly
as capable), emacs +
Raffi R raf...@gmail.com writes:
That's an interesting point. I started using org-mode randomly,
because I was writing an outline and didn't care for outline-mode and
figured org-mode should be compatible. After I'd used it for a couple
outlines, I found it could export to HTML. And LaTeX.
Bastien bastiengue...@googlemail.com writes:
Paul Mead paul.d.m...@gmail.com writes:
Bastien bastiengue...@googlemail.com writes:
Please people vote. It's a tiny change but since we all have different
preferences for such things, it's good to have a sense of what everyone
thinks...
Torsten Wagner torsten.wag...@gmail.com writes:
[...]
First of all everything which org-mode is aware of is within a
git-repro. That makes it highly portable. If you like to use your
complete working environment (your org-files and all linked files) on
another computer a easy git clone
Xin Shi shixin...@gmail.com writes:
I'm not sure if Sebastian has already implemented it or not. I saw my
friends using a software on Mac called aquaminds to produce webnotes,
and that expand button is very useful when presenting across the
internet during net-work meeting.
Here is the one
Keith Lancaster klancaster1...@mac.com writes:
The screencast is great, but I can't seem to get things working. On OS
X, I consistently get a message from Firefox that no application is
associated with org-protocol. This happens on both FF 3 and 3.5, and
regardless of how I specify
Eric S Fraga ucec...@ucl.ac.uk writes:
At Fri, 17 Jul 2009 18:25:11 +0200, Óscar Fuentes wrote:
Another nuisance is attached files. This requires an ad-hoc mechanism
and I'm not sure I want them stored along with the source files.
Actually, I'm glad you brought this up. Since moving my org
Manuel Amador amador.man...@gmail.com writes:
I think I have found a bug (or a feature!). Sometimes when
writing documents I tend to comment out a line by adding a #
in the column 0. However, after doing this in a line at the
middle of the document, I get the following behavior:
-8---
% Created 2009-07-10 Fri 07:10
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{hyperref}
\title{Kapitel 1}
\author{Matthew Lundin}
\date{10 July 2009}
\begin{document}
\maketitle
Holst Thomas (DS-ET/ECF1) thomas.ho...@de.bosch.com writes:
I think I discoverd a bug in LaTeX export. I mark a subtree with C-c @
and then export it to LaTeX with C-c C-e L.
If the subtree has no further subtrees the LaTeX-file not only contains
the region, but also the rest of the document
Peter Frings peter.fri...@agfa.com writes:
On 09 Jul 2009, at 23:32, Matthew Lundin wrote:
I found it easiest to install the new org files directly to the
Emacs.app directory.
I've seen this approach mentioned several times, but I think it makes
things more complicated then they should
Holst Thomas (DS-ET/ECF1) thomas.ho...@de.bosch.com writes:
yes I have transient-mark-mode enabled.
Here is a simpler example to reproduce the bug:
--8---cut here---start-8---
* Kapitel 1
dingens
foo bar
* Kapitel 2
bar foo
Karl Maihofer ignora...@gmx.de writes:
Until now I used Org with Debian GNU/Linux. Today I bought a MacBook
Pro 13 and I spent the evening making my first steps with MacOS. I
installed the Carbon Emacs package and configured Emacs to use the
latest Org-Version that I copied to
Giovanni Ridolfi giovanni.rido...@yahoo.it writes:
--- Mar 7/7/09, Matthew Lundin m...@imapmail.org ha scritto:
In case this question comes up again, I put up an FAQ
pointing to this
mailing list thread.
Matt,
do you think it is worth to add a make clean in the faq?
i.e.:
without
Sebastian Rose sebastian_r...@gmx.de writes:
Eric S Fraga ucec...@ucl.ac.uk writes:
This all assumes, of course, that the order of compilation does not
matter, a point raised by Scot Becker?
It did in a description we had earlier on this list.
I therefore load all the lisp files first
Hi everyone,
I've made some progress in understanding emacs this past year, but
customizing the mode-line eludes me.
When I clock into an item in org-mode, the clock information is always
at the extreme right of the mode line --- and thus unable to be seen
unless I make my emacs window full
Nick Dokos nicholas.do...@hp.com writes:
Matthew Lundin m...@imapmail.org wrote:
I've made some progress in understanding emacs this past year, but
customizing the mode-line eludes me.
When I clock into an item in org-mode, the clock information is always
at the extreme right of the mode
1 - 100 of 337 matches
Mail list logo