Re: [PATCH v2] Re: [BUG] recently commits on master branch breaks command 'org-babel-demarcate-block'

2020-05-31 Thread Matthew Lundin
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

Re: [PATCH v2] Re: [BUG] recently commits on master branch breaks command 'org-babel-demarcate-block'

2020-05-31 Thread Matthew Lundin
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): repla

Re: Contact data and sync revisited

2020-05-31 Thread Matthew Lundin
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 en

Re: org-read-date-minibuffer-local-map should use C-n/p/f/b

2020-05-29 Thread Matthew Lundin
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 negativ

Re: [Feature] add a new org-attach dispatcher command to offline save web page

2020-05-29 Thread Matthew Lundin
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 don

Re: [Feature] add a new org-attach dispatcher command to offline save web page

2020-05-28 Thread Matthew Lundin
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, cu

Re: [Feature] add a new org-attach dispatcher command to offline save web page

2020-05-28 Thread Matthew Lundin
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

Re: [BUG] All drawers except property drawers are open at startup

2020-05-28 Thread Matthew Lundin
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

Re: [Feature] add a new org-attach dispatcher command to offline save web page

2020-05-27 Thread Matthew Lundin
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, els

Re: Bug: ob-python mangles multiline :var values [9.3.6 (release_9.3.6-397-ga089600)]

2020-05-27 Thread Matthew Lundin
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 thro

Re: org-babel block with :exports code that gets evaluated on export

2020-05-26 Thread Matthew Lundin
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 pas

Re: org-archive-all-matches doesn't use org-archive-default-command

2020-05-26 Thread Matthew Lundin
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

Re: issue tracker?

2020-05-26 Thread Matthew Lundin
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 list

Re: issue tracker?

2020-05-26 Thread Matthew Lundin
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 o

Re: ob-js uses deprecated Node APIs

2020-05-20 Thread Matthew Lundin
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 @@ >:saf

Re: [Bug] org-store-link should not insert a document level ID property

2020-05-13 Thread Matthew Lundin
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 >

Re: [PATCH] Fix moving cursor in org-set-tags-command

2020-05-10 Thread Matthew Lundin
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 side-effe

RE: [Bug] org-store-link should not insert a document level ID property

2020-05-07 Thread Matthew Lundin
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 (n

Re: Survey: changing a few default settings for Org 9.4

2020-02-19 Thread Matthew Lundin
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

Re: How to occasionally store link as file.org+headline

2020-02-18 Thread Matthew Lundin
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 functi

Re: [BUG] Infinite loop in org-agenda-show-new-time

2020-02-05 Thread Matthew Lundin
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

Re: Make code elements in prose unobtrusive [legibility 6/6]

2020-02-04 Thread Matthew Lundin
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 le

Re: C-c C-c to close the buffer in *Org Src ...* buffers

2020-01-31 Thread Matthew Lundin
"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 o

[Orgmode] Re: Having (too) many files in org-agenda-files

2010-09-29 Thread Matthew Lundin
Sébastien, Matt Lundin 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 http://lists.gnu.org/mailman/listinfo/emacs-orgmo

[Orgmode] Re: Problem with PROPERTIES :OPTIONS: when exporting subtree

2010-09-28 Thread Matthew Lundin
Rainer M Krug writes: > On Mon, Sep 27, 2010 at 2:03 AM, Matt Lundin wrote: > > Rainer M Krug writes: > > > Hi > > > > I hava a problem with exporting to LaTeX. > > > > I want to export a table to latex. I put it into a subtree, > containing > > only the tabl

[Orgmode] [PATCH] Fix bug that erases org buffer when calling agenda via org-agenda-open-link.

2010-09-15 Thread Matthew Lundin
[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)]], org-prep

Re: [Orgmode] [PATCH] Removed unecessary invocations of org-agenda-show.

2010-09-15 Thread Matthew Lundin
Hi Carsten, Carsten Dominik 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 >> (org-agenda-set-effort):

[Orgmode] Re: Re Audible reminder in org-mode not working

2010-07-22 Thread Matthew Lundin
Hi evita, evita moreno 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 the system beep i

[Orgmode] Re: Bug: Relative paths in file: links are expanded [6.36trans]

2010-07-13 Thread Matthew Lundin
David Maus writes: > Matt Lundin wrote: >>Aidan Gauland 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 foo puts >>> [[file:~/path/to/working-directory/foo.org][foo]] in the

[Orgmode] Re: [ANN] Org-babel integrated into Org-mode

2010-06-30 Thread Matthew Lundin
Dan Davison writes: > "Eric Schulte" writes: > >> Carsten Dominik writes: >> >>> You main proposal was to make Org Babel an optional module. >>> This will not solve the problem fully, I think, because we also >>> don't want that people who turn it on automatically commit >>> to potentially dang

[Orgmode] Re: [ANN] Org-babel integrated into Org-mode

2010-06-30 Thread Matthew Lundin
"Eric Schulte" writes: > Matt Lundin 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 installed on the same le

Re: [Orgmode] Re: [ANN] Org-babel integrated into Org-mode

2010-06-30 Thread Matthew Lundin
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 writes: > Here is what I propose (several items are similar to what Eric proposes)

[Orgmode] Re: [ANN] Org-babel integrated into Org-mode

2010-06-30 Thread Matthew Lundin
Hi Eric, Thanks so much for taking these observations into account. "Eric Schulte" writes: > Thanks for raising the point about potentially dangerous code blocks. > > Matt Lundin writes: > >> Hi Eric, >> >> Thanks again for all the work that you, Dan, and Tom have put into >> org-babel. I'm gl

[Orgmode] Re: [ANN] Org-babel integrated into Org-mode

2010-06-29 Thread Matthew Lundin
Matt Lundin writes: > This section of the lisp file flattens out the lisp/babel hierarchy in > the repo when copying to the target directory: The above should read: "This section of the Makefile..." > > install-lisp: $(LISPFILES) $(ELCFILES) > if [ ! -d $(lispdir) ]; then $(MKDIR) $(lispdir

[Orgmode] Re: howto open attachment directory in external program?

2010-06-18 Thread Matthew Lundin
Matt Lundin writes: > Kestutis Matonis 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 emacs. > > I'm not

Re: [Orgmode] Bug: Pretty display of subscripts and hyperlinks

2010-06-06 Thread Matthew Lundin
Carsten Dominik 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 display parts of link an

[Orgmode] Re: [PATCH] only display a scheduled item if it is due today or in the past

2010-06-04 Thread Matthew Lundin
Hi Carsten, Carsten Dominik 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 Friday with a "STYLE=hi

[Orgmode] Re: Include FAQ to info?

2010-05-22 Thread Matthew Lundin
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 > wrote: > > Carst

[Orgmode] Re: [PATCH] only display a scheduled item if it is due today or in the past

2010-05-22 Thread Matthew Lundin
Nathaniel Flath 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 org-habit-show-habits-only-for-today is se

[Orgmode] Re: Heirarchy and indenting of plain text belonging to headline of same indent

2010-05-20 Thread Matthew Lundin
Robin Message 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 here---

[Orgmode] Re: Include FAQ to info? (was: Org-FAQ request for full-text dump)

2010-05-16 Thread Matthew Lundin
Carsten Dominik 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: > > http://osdir.com/ml/attachments/orgF54hhOaC48.org > > Get in

[Orgmode] Re: due today notification

2010-04-28 Thread Matthew Lundin
Buck Brody 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 ensure that siblings

[Orgmode] Re: due today notification

2010-04-28 Thread Matthew Lundin
Buck Brody 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 command you

[Orgmode] Re: due today notification

2010-04-27 Thread Matthew Lundin
Hi Buck, Buck Brody 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 able to see at a gl

Re: [Orgmode] Re: How you ORGanize yourself? (aka: Why not one file to rule'em all?)

2010-04-20 Thread Matthew Lundin
Carsten Dominik 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

Re: [Orgmode] Re: How you ORGanize yourself? (aka: Why not one file to rule'em all?)

2010-04-19 Thread Matthew Lundin
Hi Carsten, Carsten Dominik 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 filetag (e.g., >>

[Orgmode] Re: [PATCH] Speed up org-diary

2010-03-29 Thread Matthew Lundin
Hi Carsten, Carsten Dominik 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 think one of the FAQs ni

[Orgmode] Re: icalendar: exporting times of day specified in heading?

2010-03-17 Thread Matthew Lundin
Hi Stephen, Stephen Eglen 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... >> >> * 9:00am g

Re: [Orgmode] [PATCH] New variable to speed up custom agendas

2010-03-10 Thread Matthew Lundin
Hi Carsten, Carsten Dominik 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 modifications: > > 1. I cha

[Orgmode] Re: inserting notes at level 1 with org-remember

2010-02-26 Thread Matthew Lundin
Hi Trance, Trance Diviner writes: > On Feb 25, 2010, at 7:38 PM, Matt Lundin wrote: > >> Trance Diviner 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 >>> following configuration: >>> >>>

Re: [Orgmode] Re: Remove scheduled date when switch TODO states

2010-02-22 Thread Matthew Lundin
David Maus writes: > Matt Lundin wrote: >>Nathaniel Flath 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 scheduled date >>> that da

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

2010-02-21 Thread Matthew Lundin
Hi Carsten, Carsten Dominik 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 rewrite of the parser,

Re: [Orgmode] Problem with org-agenda-goto and inline tasks

2010-02-19 Thread Matthew Lundin
Carsten Dominik 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 doubt that there i

[Orgmode] Re: Secondary filtering and query editing within daily/weekly agenda

2010-02-17 Thread Matthew Lundin
"Brody, William (Buck)" 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 variable org-todo-state-tags-t

[Orgmode] Re: search for DEADLINE in warning period

2010-02-11 Thread Matthew Lundin
Carsten Dominik 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 entries in

[Orgmode] Re: Org-mode and searching for multiple occurances

2010-02-11 Thread Matthew Lundin
Giovanni Ridolfi writes: > Stephan Schmitt writes: > > Hi, Stephan, >> Also sprach Matt Lundin: >>> evita moreno writes: >>> * jones2000 blah blah blah keyword1 keyword2 *jones2007 blah blah keyword2 and so on. I was wondering whether there is a way where one can

[Orgmode] Re: Organizing a students live

2009-12-22 Thread Matthew Lundin
Daniel Martins 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 an examp

[Orgmode] Re: Worg currently not publishing

2009-12-09 Thread Matthew Lundin
Hi Carsten, Carsten Dominik 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 published. Ian's new tu

[Orgmode] Re: Problems with org-docview

2009-12-03 Thread Matthew Lundin
Matt Lundin 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 trying to l

[Orgmode] Re: Boolean word/regexp search problem

2009-11-27 Thread Matthew Lundin
Matt Lundin 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 searc

[Orgmode] Re: Bug with time summary in column view?

2009-11-25 Thread Matthew Lundin
Hi James, James TD Smith 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. Sorry. > >

[Orgmode] Re: Wrapped links with long descriptions

2009-11-23 Thread Matthew Lundin
Carsten Dominik 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 ___

[Orgmode] Re: org-agenda-diary-entry without date tree

2009-11-19 Thread Matthew Lundin
Carsten Dominik 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 replies to the list. Ema

[Orgmode] Re: org-agenda-diary-entry without date tree

2009-11-15 Thread Matthew Lundin
Carsten Dominik 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 heading? I prefe

[Orgmode] Re: Best way to implement Keywords feature

2009-11-09 Thread Matthew Lundin
Paul Mead writes: > Matthew Lundin 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

[Orgmode] Re: Best way to implement Keywords feature

2009-11-08 Thread Matthew Lundin
Paul Mead writes: > Matt Lundin 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 search for > 'Keyword="example"'.

[Orgmode] Re: Added support for "habit tracking"

2009-10-24 Thread Matthew Lundin
Matthew Lundin writes: > John Wiegley 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 &

[Orgmode] Re: Added support for "habit tracking"

2009-10-24 Thread Matthew Lundin
John Wiegley 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 habits intermingled

[Orgmode] Re: Feature Request? #+CONFIG keyword - to abstract more configuration into org files,

2009-10-22 Thread Matthew Lundin
Carsten Dominik writes: > On Oct 22, 2009, at 10:23 PM, Matt Lundin wrote: > >> Bernt Hansen writes: >> >>> "Tim O'Callaghan" writes: >>> >>> Can you use the #+BIND: keyword to set arbitrary variables and >>> achieve >>> the same result? >> >> If I understand it correctly, #+BIND only works for

[Orgmode] Re: Added support for "habit tracking"

2009-10-20 Thread Matthew Lundin
John Wiegley 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 >> creating

[Orgmode] Re: Added support for "habit tracking"

2009-10-20 Thread Matthew Lundin
Hi Carsten, Carsten Dominik 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: >> >> "Cannot chang

[Orgmode] Re: Any way to include filetags in tags completion?

2009-10-20 Thread Matthew Lundin
Carsten Dominik 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 org-mode variables

[Orgmode] Re: Tagging a region of text without creating a branch

2009-10-12 Thread Matthew Lundin
Carsten Dominik writes: > On Oct 12, 2009, at 3:14 PM, Matt Lundin wrote: > >> At Mon, 12 Oct 2009 09:29:05 +0200, >> Carsten Dominik wrote: >>> >>> On Oct 10, 2009, at 5:39 PM, Matt Lundin wrote: >>> Hi Carsten, Carsten Dominik wrote: > > Yes, this should now work. Good c

[Orgmode] Re: org-clock-into-drawer

2009-10-12 Thread Matthew Lundin
Matt Lundin writes: > According to the docstring, the value of org-clock-into-drawer is > derived from org-log-into-drawer. > > , > | The default for this variable is the value of `org-log-into-drawer'. > ` > > I have org-log-into-drawer set to t, and yet org-clock-into-drawer is > nil. >

Re: [Orgmode] Re: Tagging a region of text without creating a branch

2009-10-09 Thread Matthew Lundin
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 org-inlineta

[Orgmode] Re: Orgmode for budgeting/expense recording

2009-10-02 Thread Matthew Lundin
Eric S Fraga 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 reconciling account

[Orgmode] Re: to bookmarks

2009-09-26 Thread Matthew Lundin
Matt Lundin 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--- (defun org-export

[Orgmode] Re: suggestion: options for chronological agenda

2009-09-26 Thread Matthew Lundin
Matt Lundin writes: > Ilya Shlyakhter 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 org-agenda-include-inactive-time

[Orgmode] Re: two custom agenda view questions

2009-09-24 Thread Matthew Lundin
Michael Gilbert writes: > On Sep 23,2009, at 8:05 PM, Matt Lundin wrote: > >> Michael Gilbert 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 scheduled timestamps, som

[Orgmode] Re: Hoisting (so to speak)

2009-09-17 Thread Matthew Lundin
Matt Lundin writes: > timetrap 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 realized I missed the "sparse

[Orgmode] Re: Documentation wishlist items

2009-09-17 Thread Matthew Lundin
Ethan writes: > On Wed, Sep 16, 2009 at 11:46 PM, Matt Lundin 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 much a glossary any more as an shorter

[Orgmode] Re: Documentation wishlist items

2009-09-16 Thread Matthew Lundin
Ethan writes: > On Tue, Sep 15, 2009 at 11:34 PM, Matt Lundin wrote: > > My guess is that this allows him to see what group an item belongs > to in > the agenda view, since categories are listed in the left column. > > But this is like asking why someone puts their pots in th

Re: [Orgmode] Re: RSI

2009-09-11 Thread Matthew Lundin
Eric S Fraga , Eric S Fraga 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 *very* comfortable (perhaps eve

[Orgmode] Re: Orgmodehow do you compose mails in Gnus with org-mode

2009-08-26 Thread Matthew Lundin
Wes Hardaker writes: >> On Tue, 25 Aug 2009 18:51:50 -0400, Matt Lundin 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 > them out later. I eithe

[Orgmode] Re: How to use both _underlined_ and math subcsript of latex ?

2009-08-25 Thread Matthew Lundin
waterloo 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 exporter should disting

[Orgmode] Re: Keyword completion.

2009-08-22 Thread Matthew Lundin
Noorul Islam wrote: > > On Sat, Aug 22, 2009 at 7:19 PM, Matt Lundin wrote: > > Noorul Islam wrote: > >> > >> On Sat, Aug 22, 2009 at 6:48 PM, Matt Lundin wrote: > >> > Noorul Islam writes: > >> > > >> >> In an org-file I typed in #+A followed by ESC-Tab. I got a completion > >> >> list window in

[Orgmode] Re: Customizing main Agenda view??

2009-08-13 Thread Matthew Lundin
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 gla

[Orgmode] Re: limit agenda to particular tag?

2009-07-28 Thread Matthew Lundin
John SJ Anderson 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: http://orgmode.org/worg/org-faq.php#limit-agend

[Orgmode] Re: Restored previous folded state after buffer opened again?

2009-07-25 Thread Matthew Lundin
User 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 folded > state was also r

[Orgmode] Re: Results of the SourceForge Community Award

2009-07-24 Thread Matthew Lundin
Raffi R 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. And worked as a

[Orgmode] Re: Results of the SourceForge Community Award

2009-07-24 Thread Matthew Lundin
Chris Willard 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 + org-mode is one of

[Orgmode] Re: org-mode meets git a first proposal ?!

2009-07-23 Thread Matthew Lundin
Torsten Wagner 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 git://myfirstcomputer/org

[Orgmode] Re: More conspicous header lines

2009-07-23 Thread Matthew Lundin
Bastien writes: > Paul Mead writes: > >> Bastien 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... >> >> What are we voting for, to make this *possible* or *default

[Orgmode] Re: New screencast about org-protocol.el

2009-07-19 Thread Matthew Lundin
Keith Lancaster 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 emacsclient. Any thoughts on

[Orgmode] Re: Feature request: javascript expand collapse

2009-07-19 Thread Matthew Lundin
Xin Shi 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 example pag

[Orgmode] Re: Org-mode as a bug tracker.

2009-07-17 Thread Matthew Lundin
Eric S Fraga 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 files to

[Orgmode] Re: Comments in Org-mode

2009-07-15 Thread Matthew Lundin
Manuel Amador 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: > > ---

[Orgmode] Re: Publishing subsections of an orgmode file (HTML)

2009-07-13 Thread Matthew Lundin
Ben writes: > I think that's my first post here and I would like first of all to > thank you all for your amazing work. Welcome! > > My first question is: How can I publish a subsection of one of these > files as a webpage (and this subsection only)? I occasionally do that > manually with C-c C

[Orgmode] Re: AW: Bug in LaTeX export

2009-07-10 Thread Matthew Lundin
"Holst Thomas (DS-ET/ECF1)" 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 > --8<---cut here---

[Orgmode] Re: Latest Org and Carbon Emacs

2009-07-10 Thread Matthew Lundin
Peter Frings 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

  1   2   3   4   >