[Orgmode] Using org-protocol to (org-)capture files for read/review?

2011-02-24 Thread Albin Stjerna
Hello, notmuch-org! I'm using org-mode to structure most of my life, but I haven't been able to incorporate my list of PDFs (or other documents) to read/review in org-mode, so currently I'm just putting them in ~/read-review. However, I thought I'd use org-protocol and emacsclient to add links to

Re: [Orgmode] Possible Calc support for Org-Babel?

2011-02-24 Thread Eric S Fraga
"Eric Schulte" writes: > Christopher Allan Webber writes: > >> (failed to wide-reply initially) >> >> I just had use for this for some quick calculations I wanted to add to >> one of my files, but... >> >> Any idea why variables inside of parentheses don't work, but variables >> outside of them

Re: [Orgmode] [babel] maxima support?

2011-02-24 Thread Eric S Fraga
Litvinov Sergey writes: > I have not found (i)maxima on this page. > http://orgmode.org/worg/org-contrib/babel/languages.html > (Babel: Languages) > > Has someone implemented it? I have implemented a very basic interface (attached). Example: #+begin-src org * maxima test *** simple test #+

Re: [Orgmode] [babel] maxima support?

2011-02-24 Thread Eric S Fraga
Eric S Fraga writes: > Litvinov Sergey writes: > >> I have not found (i)maxima on this page. >> http://orgmode.org/worg/org-contrib/babel/languages.html >> (Babel: Languages) >> >> Has someone implemented it? > > I have implemented a very basic interface (attached). Example: > > #+begin-src org

[Orgmode] TODO state change from TODO to DONE blocked

2011-02-24 Thread Sébastien Vauban
Hi, I've a really weird exception occurring: change state from TODO to DONE is blocked... while I'm on a leaf of the Org tree!? --8<---cut here---start->8--- Debugger entered--Lisp error: (error #("TODO state change from TODO to DONE blocked" 23 27 (face org-t

[Orgmode] [HOW] no way to escape vertical bar (pipe char) in tables?

2011-02-24 Thread Vladimir Alexiev
I want to manage some perl regexps in a table then feed them to a code block (literate programming). Unfortunately they include alternatives (|) and the table editor thinks this is a column break. There's no way to escape this? On a related thought: what is the best way to manage leading/trailin

[Orgmode] question about indirect buffers for capture and line-breaks

2011-02-24 Thread Filippo A. Salustri
Hi, I've turned off hard line breaks for various reasons. I do it like this: > (add-hook 'org-mode-hook > '(lambda () > (auto-fill-mode nil) > (visual-line-mode t))) However, in the indirect buffers used by capture, hard line breaks are still in place. I've lo

[Orgmode] [babel] Possible bug: (mis)handling tuples for :return value in Python [7.4 (release_7.4.153.ga0b8)]

2011-02-24 Thread Scott May
I do not think that =org-babel-read= is correctly handling Python tuples that are returned from source blocks. If I execute the following source block: #+begin_src python :results value return (1,2) #+end_src I get the following error message: : Symbol's function definition is void: 1\, The Py

[Orgmode] Re: [Accepted] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-02-24 Thread Matt Lundin
Matt Lundin writes: > Bastien Guerry writes: > >> Patch 543 (http://patchwork.newartisans.com/patch/543/) is now "Accepted". > >>> * org-agenda.el (org-agenda-list): Use org-agenda-current-span as a >>> possible default span if it is set. > This patch breaks custom commands --- i.e., if one bin

[Orgmode] Re: [Accepted] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-02-24 Thread Matt Lundin
Matt Lundin writes: > > Has there been any progress on this issue? I am finding that the local > span bindings in the custom command above still do not have any effect. > My default agenda span is a day. If I call the custom command above, it > displays only one day, despite the local setting. I

[Orgmode] Re: TODO state change from TODO to DONE blocked

2011-02-24 Thread Sébastien Vauban
Hi, Sébastien Vauban wrote: > I've a really weird exception occurring: change state from TODO to DONE is > blocked... while I'm on a leaf of the Org tree!? > > Debugger entered--Lisp error: (error #("TODO state change from TODO to DONE > blocked" 23 27 (face org-todo) 31 35 (face org-done))) >

Re: [Orgmode] question about indirect buffers for capture and line-breaks

2011-02-24 Thread Jeff Horn
What happens if you use (auto-fill-mode -1) intead? ,[ C-h f auto-fill-mode RET ] | auto-fill-mode is an interactive compiled Lisp function in | `simple.el'. | | (auto-fill-mode &optional ARG) | | Toggle Auto Fill mode. | With ARG, turn Auto Fill mode on if and only if ARG is positive. | In Au

Re: [Orgmode] question about indirect buffers for capture and line-breaks

2011-02-24 Thread Jeff Horn
Yep. Evaluate the following two lines in the scratch buffer: (auto-fill-mode -1) (auto-fill-mode nil) The first returns nil every time. The second returns true every time. Funky. On Thu, Feb 24, 2011 at 11:07 AM, Jeff Horn wrote: > What happens if you use (auto-fill-mode -1) intead? >

[Orgmode] [PATCH] new babel latex feature :imagemagick

2011-02-24 Thread Andreas Leha
Hi all, Just a small patch that might make life easier for LaTeX (and esp. tikz) users. It enables the output of graphics in a lot of formats using imagemagick. See below for an example. This is my first patch, I have never programmed emacs lisp before, and my common lisp experiences have been

[Orgmode] Org-mode tutorial in Hungarian

2011-02-24 Thread PASZTOR Miklos
The Hungarian version of David O'Toole's tutorial is avilable at http://deneb.iszt.hu/~pasztor/orgtutorial/notebook/orgtutorial-hu.html The org and pdf versions are also available at: http://deneb.iszt.hu/~pasztor/orgtutorial/notebook/ Cheers, Miklós -- signature.asc Description: Digi

Re: [Orgmode] question about indirect buffers for capture and line-breaks

2011-02-24 Thread Filippo A. Salustri
On my aquamacs, (auto-fill-mode nil) seems to toggle the mode, whereas (auto-fill-mode -1) seems to always disable it. In any case, that seems to have fixed it. Thanks! Cheers. Fil On 24 February 2011 11:09, Jeff Horn wrote: > Yep. > > Evaluate the following two lines in the scratch buffer: > >

[Orgmode] [babel] Bug? :cache yes ignored when :noweb yes

2011-02-24 Thread Andreas Leha
Hi all, When ':noweb yes' is in the header, ':cache yes' is ignored during export. (At least when I export the sample file below.) To me this seems to be a bug. Or am I missing something? Regards, Andreas PS: Example: * Test #+srcname: test_sleep #+begin_src R :sessio

[Orgmode] bug: invalid export key in export visible region

2011-02-24 Thread Samuel Wales
The following commands error out, seeming to say that the keys are wrong. c-c c-e v H c-c c-e v R Emacs 22, latest org git master. Thanks. Samuel -- The Kafka Pandemic: http://thekafkapandemic.blogspot.com/2010/12/welcome-to-kafka-pandemic-two-forces_9182.html I support the Whittemore-Pet

Re: [Orgmode] [PATCH] new babel latex feature :imagemagick

2011-02-24 Thread Eric S Fraga
Andreas Leha writes: > Hi all, > > Just a small patch that might make life easier for > LaTeX (and esp. tikz) users. It enables the output of graphics in a > lot of formats using imagemagick. See below for an example. [...] This seems to work rather well. I tried the following: #+begin_src

[Orgmode] Note buffer killed unexpectedly

2011-02-24 Thread Raymond Zeitler
After typing a note, I pressed C-u C-c C-c and unintentionally killed the buffer without saving the note. I should've pressed C-c C-c, but I'm so used to pressing C-u C-c C-c to refile each new task, that I used that key combination instead. Why would adding a prefix argument to C-c C-c kill *Org

Re: [Orgmode] Note buffer killed unexpectedly

2011-02-24 Thread Nick Dokos
Raymond Zeitler wrote: > After typing a note, I pressed C-u C-c C-c and unintentionally killed the > buffer without saving the note. I should've pressed C-c C-c, but I'm so > used to pressing C-u C-c C-c to refile each new task, that I used that key > combination instead. > > Why would adding a

[Orgmode] org-toggle-checkbox bug

2011-02-24 Thread Matt Lundin
According to the docstring of org-toggle-checkbox, the function can be called on headlines: , | If the cursor is in a headline, apply this to all checkbox items | in the text below the heading, taking as reference the first item | in subtree, ignoring drawers. ` When I call org-toggle-che

[Orgmode] Capture question

2011-02-24 Thread John Hendy
Hi, I'm trying to setup capture for the first time and am getting some odd behavior. I've been following the manual and my .emacs has this: ,- | ;; capture | (setq org-default-notes-file (concat org-directory "~/org/2011-02Feb.org" "Tracking")) | (global-set-key "\C-cc" 'org-capture) | (setq

Re: [Orgmode] org-toggle-checkbox bug

2011-02-24 Thread John Hendy
On Thu, Feb 24, 2011 at 5:52 PM, Matt Lundin wrote: > According to the docstring of org-toggle-checkbox, the function can be > called on headlines: > > , > | If the cursor is in a headline, apply this to all checkbox items > | in the text below the heading, taking as reference the first item

[Orgmode] Re: [Accepted] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-02-24 Thread Bastien
Hi Matt, Matt Lundin writes: > Matt Lundin writes: >> >> Has there been any progress on this issue? I am finding that the local >> span bindings in the custom command above still do not have any effect. >> My default agenda span is a day. If I call the custom command above, it >> displays only

Re: [Orgmode] Re: [Accepted] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-02-24 Thread Bastien
Hi Matt, Bastien writes: > I'm not able to reproduce your problem with emacs -q and the minimal > configuration you proposed. Can I ask you to check again? Forget my message - I *can* reproduce your issue, I will investigate this tomorrow. Thanks for your patience, -- Bastien

[Orgmode] Grouping clock report by tag?

2011-02-24 Thread John Hendy
Hi, I just decided to try to start clocking tasks and would find it most helpful to organize by tag, not file. Perhaps my filing system is unorthodox, but I originally started using an org file per work project but just found it cumbersome when it came to recording my notes since I'd be switching

Re: [Orgmode] org-toggle-checkbox bug

2011-02-24 Thread Nick Dokos
John Hendy wrote: > On Thu, Feb 24, 2011 at 5:52 PM, Matt Lundin wrote: > > According to the docstring of org-toggle-checkbox, the function can be > called on headlines: > > , > | If the cursor is in a headline, apply this to all checkbox items > | in the text below

[Orgmode] Org-Remember C-1 C-c C-c

2011-02-24 Thread Matthew Sauer
Whenever I use Remember to shoot a note to a specific location I press C-1 and get the following error: M-[ 1 ; 5 q is undefined I changed my .emacs to make the default refiling and C-1 C-c C-c is now the template location specified. At times I would still like to use the C-1 C-c C-c behavior. I

Re: [Orgmode] org-toggle-checkbox bug

2011-02-24 Thread Nick Dokos
Matt Lundin wrote: > According to the docstring of org-toggle-checkbox, the function can be > called on headlines: > > , > | If the cursor is in a headline, apply this to all checkbox items > | in the text below the heading, taking as reference the first item > | in subtree, ignoring drawers

[Orgmode] Uncover bullet points with BEAMER_env: ignoreheading

2011-02-24 Thread Derek Thomas
I've been using BEAMER_env: ignoreheading to generate columns of bulleted lists as follows #+begin_src org * hidden heading 1:BMCOL:B_ignoreheading: :PROPERTIES: :BEAMER_col: 0.5 :BEAMER_env: ignoreheading :BEAMER_envargs: [<+->] :END: ** Item 1 ** Item

[Orgmode] Bug: Missing prompt label in capture template expansion

2011-02-24 Thread Aankhen
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. --

[Orgmode][babel] How-to realise a simplified usage scenario?

2011-02-24 Thread Torsten Wagner
Hi, I tried to use org-babel (particular with python) several times. However, I always struggled with the amount of options and it take me long time to get it right. I would like to describe my personal perfect scenario and hope that some of those points could find a way into babel. Basicall