[Orgmode] Re: cheatsheets in emacs

2010-09-22 Thread Glauber Alex Dias Prado
FYI There is also a cheat emacs interface:
http://github.com/defunkt/cheat.el

the idea is not bad if it isnt a NIH syndrom otherwise just use cheat ;)

Rustom Mody rustompm...@gmail.com writes:

 There is this ruby utility cheat (see http://cheat.errtheblog.com/ )
 that allows one to make/use cheatsheets using ruby. The format of the
 cheatsheet is yml.

 I feel that it should be possible to replace ruby by emacs and the
 yaml format by org-mode

 Does anything like this exist?

 There is of course a third aspect to the ruby solution -- providing
 web-available cheatsheets (see http://cheat.errtheblog.com/b )
 This I am currently not asking for because I am only trying to track
 my own findings in a manageable way

___
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-orgmode


[Orgmode] Re: [ANN] List improvement v.2

2010-08-15 Thread Glauber Alex Dias Prado
Carsten Dominik carsten.domi...@gmail.com writes:

 Hi Nicolas,

 I have finally started to look at your changes to the list
 implementation.
 Lots of it is very good!  I like for example that TAB indentation now
 works
 a lot better.

 Here are a few problems I noted so far:

 1 Error when pressing M-RET in second line after list
 ~~

   - Example item1
   - Exmaple item2

 With cursor position at @, M-RET throws an error

 2 Incompatibility 1
 
   - Example 1
   - Ex 2

   This used to be outside of the list.  The HTML exporter still treats
   it as being outside of the list.  The LaTeX exporter treats it as
   part of the last item.  If I add a second empty line, then both
   exporters handle it well.

   So this breaks with documented properties of the lists.  I guess
   this is unavoidable because this is just how the new list definition
   works.  But it will break existing documents when exported to LaTeX

 3 Text between two sublists
 

   - Ex1
   - Ex2
 - Ex2a
 - Ex2b
 Some text between two sublists
 - A new list starts

 This always was an inconsistency between HTML and LaTeX export, and it
 still is now.  There seems to be no way now to do what I intend here,
 putting some text between two lists.

preferably not only for lists, something like:

* some stuff
  quick intro
** nest 1  
   stuff about nest1
  now what i dont think is possible and dont even know if it is usually
  done on latex something that belongs to some stuff and is in between
  nest 1 and 2, i find it usefull for commenting on nests(thats why
  i miss it) and looks like it is the same thing you are wishing for lists?
  My use case for this is mostly note-taking.
** nest 2
   stuff about nest2

could be also usefull, if it makes sense, btw the lists are taking shape :).



 On Jul 22, 2010, at 11:08 PM, Nicolas Goaziou wrote:

 Hello,

 Here is a new, and probably final feature-wise, suggestion of list
 improvement in Org Mode.

 Table of Contents
 =
 1 What is it about again ?
 2 Is that all ?
2.1 Preserving blank lines
2.2 Timer lists
2.3 Automatic rules
2.4 `org-apply-on-list'
 3 Where can it be tried ?


 1 What is it about again ?
 ~~~

  I redefined lists in Org Mode. Lists start, as before, at a bullet
  (whose true regexp is at `org-item-beginning-re'), and end at either
  `org-list-end-regexp', a new headline, or, obviously, end of buffer.

  `org-list-end-regexp' is customizable and defaults to 2 blank lines,
  but `org-empty-line-terminates-plain-lists' has precedence over it.
  Moreover, any `org-list-end-regexp' found in special blocks does not
  end list. Here are two examples of valid lists:

  Case 1: `org-list-end-regexp' is at default value


  - First item

- Sub item

  #+BEGIN_EXAMPLE
  Two blank lines below


  Two blank lines above
  #+END_SRC

- Last sub item


  List has ended at the beginning of this line.

  Case 2: `org-list-end-regexp' is ^[ \t]*___[ \t]*\n


  - item 1
  - item 2
- sub-item
- sub-item 2
  - item 3
  __
  List has ended at the beginning of this line.

  Now, Org Mode knows when a list has ended and how to indent line
  accordingly. In other words, you can `org-return-indent' three times
  to exit a list and be at the right column to go on with the text.

  This new definition is also understood by exporters (LaTeX, DocBook,
  HTML or ASCII) and `org-list-end-regexp' will appear in source as a
  blank line, whatever its value is (as long as it starts with a caret
  and ends with a newline character, as specified in doc-string).

  Another advantage is that you can have two lists of different types
  in a row like in the example below:


  - item
  - item


  1. item
  2. item

  In this example, you can move (or cycle, or indent) items in the
  second list without worrying about changing the first one.

 2 Is that all ?
 

  Yes and no. I tried as much as possible to keep compatibility with
  previous implementation. But, as I was at it, I made a number of
  minor improvements I am now going to describe.

 2.1 Preserving blank lines
 ===

   `org-move-item-up' and `org-move-item-down' will not eat blank
   lines anymore. You can move an item up and down and stay assured
   list will keep its integrity.

   The same is true for `org-sort-list' that would previously collapse
   the list being sorted. Sorting is now safe.

   `org-insert-item', when 'plain-list-item is set to 'auto in
   `org-blank-before-new-entry' (the default, I think), will work hard
   to guess the appropriate number of blank lines to insert before the
   item to come. The function is also much more predictable (in
   previous version, trying to insert an item with point on a blank
   line between 2 items would create a new headline).

 2.2 Timer lists
 

   

[Orgmode] Re: [ANN] List improvement v.2

2010-08-15 Thread Glauber Alex Dias Prado
Carsten Dominik carsten.domi...@gmail.com writes:

 On Aug 15, 2010, at 10:45 AM, Glauber Alex Dias Prado wrote:

 Carsten Dominik carsten.domi...@gmail.com writes:

 Hi Nicolas,

 I have finally started to look at your changes to the list
 implementation.
 Lots of it is very good!  I like for example that TAB indentation now
 works
 a lot better.

 Here are a few problems I noted so far:

 1 Error when pressing M-RET in second line after list
 ~~

  - Example item1
  - Exmaple item2

 With cursor position at @, M-RET throws an error

 2 Incompatibility 1
 
  - Example 1
  - Ex 2

  This used to be outside of the list.  The HTML exporter still treats
  it as being outside of the list.  The LaTeX exporter treats it as
  part of the last item.  If I add a second empty line, then both
  exporters handle it well.

  So this breaks with documented properties of the lists.  I guess
  this is unavoidable because this is just how the new list definition
  works.  But it will break existing documents when exported to LaTeX

 3 Text between two sublists
 

  - Ex1
  - Ex2
- Ex2a
- Ex2b
Some text between two sublists
- A new list starts

 This always was an inconsistency between HTML and LaTeX export, and
 it
 still is now.  There seems to be no way now to do what I intend here,
 putting some text between two lists.

 preferably not only for lists, something like:

 * some stuff
  quick intro
 ** nest 1
   stuff about nest1
  now what i dont think is possible and dont even know if it is usually
  done on latex something that belongs to some stuff and is in between
  nest 1 and 2, i find it usefull for commenting on nests(thats why
  i miss it) and looks like it is the same thing you are wishing for
 lists?
  My use case for this is mostly note-taking.
 ** nest 2
   stuff about nest2

 could be also usefull, if it makes sense, btw the lists are taking
 shape :).

 This has been discussed here a million times and it is not going to
 happen.

 - Carsten

Sorry i cant catchup on everything. I was thinking here could this be
done as footnotes on org headings? the look certainly wouldnt be the
same but perhaps the effect would, am gonna try it later, never played
with footnotes export.

cheers,
glauber.





 On Jul 22, 2010, at 11:08 PM, Nicolas Goaziou wrote:

 Hello,

 Here is a new, and probably final feature-wise, suggestion of list
 improvement in Org Mode.

 Table of Contents
 =
 1 What is it about again ?
 2 Is that all ?
   2.1 Preserving blank lines
   2.2 Timer lists
   2.3 Automatic rules
   2.4 `org-apply-on-list'
 3 Where can it be tried ?


 1 What is it about again ?
 ~~~

 I redefined lists in Org Mode. Lists start, as before, at a bullet
 (whose true regexp is at `org-item-beginning-re'), and end at either
 `org-list-end-regexp', a new headline, or, obviously, end of buffer.

 `org-list-end-regexp' is customizable and defaults to 2 blank lines,
 but `org-empty-line-terminates-plain-lists' has precedence over it.
 Moreover, any `org-list-end-regexp' found in special blocks does not
 end list. Here are two examples of valid lists:

 Case 1: `org-list-end-regexp' is at default value


 - First item

   - Sub item

 #+BEGIN_EXAMPLE
 Two blank lines below


 Two blank lines above
 #+END_SRC

   - Last sub item


 List has ended at the beginning of this line.

 Case 2: `org-list-end-regexp' is ^[ \t]*___[ \t]*\n


 - item 1
 - item 2
   - sub-item
   - sub-item 2
 - item 3
 __
 List has ended at the beginning of this line.

 Now, Org Mode knows when a list has ended and how to indent line
 accordingly. In other words, you can `org-return-indent' three times
 to exit a list and be at the right column to go on with the text.

 This new definition is also understood by exporters (LaTeX, DocBook,
 HTML or ASCII) and `org-list-end-regexp' will appear in source as a
 blank line, whatever its value is (as long as it starts with a caret
 and ends with a newline character, as specified in doc-string).

 Another advantage is that you can have two lists of different types
 in a row like in the example below:


 - item
 - item


 1. item
 2. item

 In this example, you can move (or cycle, or indent) items in the
 second list without worrying about changing the first one.

 2 Is that all ?
 

 Yes and no. I tried as much as possible to keep compatibility with
 previous implementation. But, as I was at it, I made a number of
 minor improvements I am now going to describe.

 2.1 Preserving blank lines
 ===

  `org-move-item-up' and `org-move-item-down' will not eat blank
  lines anymore. You can move an item up and down and stay assured
  list will keep its integrity.

  The same is true for `org-sort-list' that would previously collapse
  the list being sorted. Sorting is now safe.

  `org-insert-item', when 'plain

[Orgmode] Re: org-capture-templates : should symbols work as a file target ?

2010-07-08 Thread Glauber Alex Dias Prado
David Maus dm...@ictsoc.de writes:

 Julien Fantin wrote:
Hi folks,

I'v been trying to setup an org-capture template using a symbol as the file
target, but this raises an error.
Someone on IRC mentionned this is probably a bug, but I'm not experienced
enough to be sure I'm not simply misusing it...

my apologies it was me, and im also not that experienced, nice that you
answered his question.



Here is the bit of config in question:


** Templates
#+BEGIN_SRC emacs-lisp
(setq org-capture-templates
   `(
(t Task entry
 (file+headline  organizer Tasks)
 * TODO %?\n%U)

(j Journal entry
 (file+datetree ~/org/journal.org)
 * %?\nEntered on %U\n %i\n %a)
))
#+END_SRC

 You already backquote the template list so you've just to but the
 special marker , (comma) in front of organizer and it gets evaluated.

 HTH
   -- David
 --
 OpenPGP... 0x99ADB83B5A4478E6
 Jabber dmj...@jabber.org
 Email. dm...@ictsoc.de
 ___
 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-orgmode

___
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-orgmode


[Orgmode] Re: org-remember and anything

2010-06-14 Thread Glauber Alex Dias Prado
i thought i was explicity enough when i said when calling org-remember
:), this happens after i select a template and it prompts for completion
which is being handled by anything, that is when the backtrace happens,
this only happens with org-mode so i thought it was more a org thing
than anything.

Thierry Volpiatto thierry.volpia...@gmail.com writes:

 Hi, can you please provide more info on what you do exactly and how you
 use anything (which source, function etc...) with org.
 Which command give this backtrace?

 Glauber Alex Dias Prado sma...@gmail.com writes:

 Hi,
 when calling org-remember, after selecting the template org doesnt
 provide the right syntax to anything as it is configure for icomplete i
 think, dunno what is really involved here as it used to work( i tried it
 with both ido completion support on and off):

 Sorry if this is not really a org thing:


 Debugger entered--Lisp error: (error anything-interpret-value: Symbol must 
 be a function or a variable)
   signal(error (anything-interpret-value: Symbol must be a function or a 
 variable))
   error(anything-interpret-value: Symbol must be a function or a variable)
   anything-interpret-value(org-remember-template-prompt-history::Brief\ 
 Description ((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-get-candidates(((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-get-cached-candidates(((match anything-exact-match 
 anything-mp-3p-match anything-mp-3-match) (search anything-exact-search 
 anything-mp-3p-search anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   #[nil \306\307\\306\310\\311!\306\312\\211\203\313   
 \n#\202\n)\314\n\315\232\2042\316\232\203F\317!\211G\fV\203K\320\321\f#\202K\314\322\323\217\210\306\324\\211\203[\313
 $)-\207 [source it anything-pattern matches limit 
 anything-source-name assoc-default match name 
 anything-candidate-number-limit pattern-transformer 
 anything-composed-funcall-with-source nil  (identity) 
 anything-get-cached-candidates subseq 0 (byte-code 
 \306\307!\310\f\204\311C\312!\210\313\314\215\210+\310\207 [source exit 
 cands item-count functions anything-match-hash 0 
 anything-get-cached-candidates nil #[... \302\\207 
 [anything-pattern candidate string-match] 3] clrhash --cl-block-nil-- ...] 
 3) (...) filtered-candidate-transformer functions] 8]()
   anything-compute-matches(((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-process-source(((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-update()
   anything-read-pattern-maybe(#(Brief Description:  0 17 (fontified nil)) 
 nil nil noresume nil)
   byte-code(\306\211\211\307\206   
 \310\311\\312\313!B\f\312\314!B\315\316\313\306\\210\317\216\320\321!\210\322!\323
  !\\210\324\325!\210\326 !\210\327\216\330\!# $%\210-?\205_\331 -\207 
 [any-buffer anything-buffer case-fold-search anything-quit 
 anything-in-persistent-action anything-source-name nil t mapcar #[(v) 
 \211JB\207 [v] 2] default-value post-command-hook pre-command-hook (t) 
 set-default ((byte-code \306\211  :\203  @\211\2...@\211\nl\210  
 a\211\202...@\307\305\fa\\207 [--orig-vars --cl-var-- value var 
 --post-command-hook-pair post-command-hook nil set-default] 3)) 
 anything-frame/window-configuration save anything-normalize-sources 
 anything-initialize-1 anything-hooks setup anything-display-buffer 
 ((byte-code \300 \210\301\302!\210\303\304!\207 [anything-cleanup 
 anything-hooks cleanup anything-frame/window-configuration restore] 2)) 
 anything-read-pattern-maybe anything-execute-selection-action-1 
 anything-restored-variables --pre-command-hook-pair --post-command-hook-pair 
 --orig-vars any-sources anything-sources any-resume any-input any-prompt 
 any-preselect any

[Orgmode] Re: org-remember and anything

2010-06-14 Thread Glauber Alex Dias Prado
Oh sorry, here is complete instructions:
(add-to-list 'load-path /home/glauber/elisp)
(add-to-list 'load-path /home/glauber/elisp/org-mode)
(add-to-list 'load-path /home/glauber/elisp/org-mode/lisp)
(require 'org)
(require 'init-org-mode) ;; which can be found here: 
http://openpaste.org/22109/inline/
(require 'anything-startup)
(toggle-debug-on-error)

call function org-remember trough binding f9-o-r
when prompt for a template press t
results in backtrace. I think im using latest version of all involved.

Thierry Volpiatto thierry.volpia...@gmail.com writes:

 Hi, can you please provide more info on what you do exactly and how you
 use anything (which source, function etc...) with org.
 Which command give this backtrace?

 Glauber Alex Dias Prado sma...@gmail.com writes:

 Hi,
 when calling org-remember, after selecting the template org doesnt
 provide the right syntax to anything as it is configure for icomplete i
 think, dunno what is really involved here as it used to work( i tried it
 with both ido completion support on and off):

 Sorry if this is not really a org thing:


 Debugger entered--Lisp error: (error anything-interpret-value: Symbol must 
 be a function or a variable)
   signal(error (anything-interpret-value: Symbol must be a function or a 
 variable))
   error(anything-interpret-value: Symbol must be a function or a variable)
   anything-interpret-value(org-remember-template-prompt-history::Brief\ 
 Description ((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-get-candidates(((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-get-cached-candidates(((match anything-exact-match 
 anything-mp-3p-match anything-mp-3-match) (search anything-exact-search 
 anything-mp-3p-search anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   #[nil \306\307\\306\310\\311!\306\312\\211\203\313   
 \n#\202\n)\314\n\315\232\2042\316\232\203F\317!\211G\fV\203K\320\321\f#\202K\314\322\323\217\210\306\324\\211\203[\313
 $)-\207 [source it anything-pattern matches limit 
 anything-source-name assoc-default match name 
 anything-candidate-number-limit pattern-transformer 
 anything-composed-funcall-with-source nil  (identity) 
 anything-get-cached-candidates subseq 0 (byte-code 
 \306\307!\310\f\204\311C\312!\210\313\314\215\210+\310\207 [source exit 
 cands item-count functions anything-match-hash 0 
 anything-get-cached-candidates nil #[... \302\\207 
 [anything-pattern candidate string-match] 3] clrhash --cl-block-nil-- ...] 
 3) (...) filtered-candidate-transformer functions] 8]()
   anything-compute-matches(((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-process-source(((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-update()
   anything-read-pattern-maybe(#(Brief Description:  0 17 (fontified nil)) 
 nil nil noresume nil)
   byte-code(\306\211\211\307\206   
 \310\311\\312\313!B\f\312\314!B\315\316\313\306\\210\317\216\320\321!\210\322!\323
  !\\210\324\325!\210\326 !\210\327\216\330\!# $%\210-?\205_\331 -\207 
 [any-buffer anything-buffer case-fold-search anything-quit 
 anything-in-persistent-action anything-source-name nil t mapcar #[(v) 
 \211JB\207 [v] 2] default-value post-command-hook pre-command-hook (t) 
 set-default ((byte-code \306\211  :\203  @\211\2...@\211\nl\210  
 a\211\202...@\307\305\fa\\207 [--orig-vars --cl-var-- value var 
 --post-command-hook-pair post-command-hook nil set-default] 3)) 
 anything-frame/window-configuration save anything-normalize-sources 
 anything-initialize-1 anything-hooks setup anything-display-buffer 
 ((byte-code \300 \210\301\302!\210\303\304!\207 [anything-cleanup 
 anything-hooks cleanup anything-frame/window-configuration restore] 2)) 
 anything-read-pattern-maybe

[Orgmode] org-remember and anything

2010-06-12 Thread Glauber Alex Dias Prado
Hi,
when calling org-remember, after selecting the template org doesnt
provide the right syntax to anything as it is configure for icomplete i
think, dunno what is really involved here as it used to work( i tried it
with both ido completion support on and off):

Sorry if this is not really a org thing:


Debugger entered--Lisp error: (error anything-interpret-value: Symbol must be 
a function or a variable)
  signal(error (anything-interpret-value: Symbol must be a function or a 
variable))
  error(anything-interpret-value: Symbol must be a function or a variable)
  anything-interpret-value(org-remember-template-prompt-history::Brief\ 
Description ((match anything-exact-match anything-mp-3p-match 
anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  anything-get-candidates(((match anything-exact-match anything-mp-3p-match 
anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  anything-get-cached-candidates(((match anything-exact-match 
anything-mp-3p-match anything-mp-3-match) (search anything-exact-search 
anything-mp-3p-search anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  #[nil \306\307\\306\310\\311!\306\312\\211\203\313
\n#\202\n)\314\n\315\232\2042\316\232\203F\317!\211G\fV\203K\320\321\f#\202K\314\322\323\217\210\306\324\\211\203[\313
   $)-\207 [source it anything-pattern matches limit anything-source-name 
assoc-default match name anything-candidate-number-limit pattern-transformer 
anything-composed-funcall-with-source nil  (identity) 
anything-get-cached-candidates subseq 0 (byte-code 
\306\307!\310\f\204\311C\312
!\210\313\314\215\210+\310\207 [source exit cands item-count functions 
anything-match-hash 0 anything-get-cached-candidates nil #[... \302   \\207 
[anything-pattern candidate string-match] 3] clrhash --cl-block-nil-- ...] 3) 
(...) filtered-candidate-transformer functions] 8]()
  anything-compute-matches(((match anything-exact-match anything-mp-3p-match 
anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  anything-process-source(((match anything-exact-match anything-mp-3p-match 
anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  anything-update()
  anything-read-pattern-maybe(#(Brief Description:  0 17 (fontified nil)) nil 
nil noresume nil)
  byte-code(\306\211\211\307\206     
\310\311\\312\313!B\f\312\314!B\315\316\313\306\\210\317\216\320\321!\210\322!\323
 !\\210\324\325!\210\326   !\210\327\216\330\!# $%\210-?\205_\331 
-\207 [any-buffer anything-buffer case-fold-search anything-quit 
anything-in-persistent-action anything-source-name nil t mapcar #[(v) 
\211JB\207 [v] 2] default-value post-command-hook pre-command-hook (t) 
set-default ((byte-code \306\211  :\203 @\211\21...@\211\nl\210   
a\211\202...@\307\305\fa\\207 [--orig-vars --cl-var-- value var 
--post-command-hook-pair post-command-hook nil set-default] 3)) 
anything-frame/window-configuration save anything-normalize-sources 
anything-initialize-1 anything-hooks setup anything-display-buffer ((byte-code 
\300 \210\301\302!\210\303\304!\207 [anything-cleanup anything-hooks cleanup 
anything-frame/window-configuration restore] 2)) anything-read-pattern-maybe 
anything-execute-selection-action-1 anything-restored-variables 
--pre-command-hook-pair --post-command-hook-pair --orig-vars any-sources 
anything-sources any-resume any-input any-prompt any-preselect any-keymap] 6)
  anythingname . Default) (default-value . ) (action . identity) 
(accept-empty)) ((name . Completions) (candidates) (action . identity) nil 
nil) ((name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity)) ((name . #(Brief Description:  0 17 ...)) (dummy) (action . 
identity))) nil #(Brief Description:  0 17 (fontified nil)) noresume nil 
*anything complete*)
  anything-noresumename . Default) (default-value . ) (action . 
identity) (accept-empty)) ((name . Completions) (candidates) (action . 
identity) nil nil) 

[Orgmode] Re: org-remember and anything

2010-06-12 Thread Glauber Alex Dias Prado
Bernt Hansen be...@norang.ca writes:

 Glauber Alex Dias Prado sma...@gmail.com writes:

 Hi,
 when calling org-remember, after selecting the template org doesnt
 provide the right syntax to anything as it is configure for icomplete i
 think, dunno what is really involved here as it used to work( i tried it
 with both ido completion support on and off):

 Sorry if this is not really a org thing:


 Debugger entered--Lisp error: (error anything-interpret-value: Symbol must 
 be a function or a variable)
   signal(error (anything-interpret-value: Symbol must be a function or a 
 variable))
   error(anything-interpret-value: Symbol must be a function or a variable)

 snipped details of backtrace

   remember-mode()
   remember(nil)
   org-do-remember()
   org-remember(nil)
   call-interactively(org-remember nil nil)

 I don't think there are enough details here to help.  You should provide
 your org-mode and emacs versions and the remember template you are
 trying to invoke.

It happens for the simplest template you try(any):
GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.20.0) of
2010-05-20 on jetski
Org-mode version 6.35trans (release_6.35g.161.ga2518)


 I have no idea what 'anything' is so details of your setup for that
 would be helpful as well.
its a very simple setup(if using auto-install):
http://www.emacswiki.org/emacs/AutoInstall

after u install auto-install you can call
M-x auto-install-batch
anything RET

After that:
(require 'anything-startup)


 Regards,
 Bernt



 ___
 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-orgmode

___
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-orgmode


[Orgmode] Re: Xiki framework (wiki and tree emacs features)

2010-02-07 Thread Glauber Alex Dias Prado
Richard Stallman r...@gnu.org writes:

 Please point me to the part of OrgMode with features for
 navigating and searching the filesystem in a tree structure.  I'm
 interested in checking i= t out and comparing it to xiki.

 The question that suggests itself to me
 is whether there is a way to separate out the various ideas,
 implemented by xiki and by Org mode, into modular features.

Just to tell my grandchildren that once i was in the same thread as rms
:), these two tools are awesome and i am using both, and would take
advantage of a more modular design for easy integration instead of each
one working in its own pet.

cheers,
glauber.


___
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-orgmode


Re: [Orgmode] Re: Repeating dates on named weekdays

2010-01-17 Thread Glauber Alex Dias Prado
William Halliburton whallibur...@gmail.com writes:

 Thanks much. That is exactly what I was wishing for.
sorry for overlooking your question, i didnt remembered how to do it either.

 On Fri, Jan 15, 2010 at 6:08 PM, John Rakestraw 
 li...@johnrakestraw.comwrote:


  every third Monday of each month

 I'm by no means the org/emacs expert, but here's what I'd do:

 * Meeting on 3d Monday of each month
  %%(diary-float t 1 3)

 (see

 http://www.gnu.org/software/emacs/manual/html_node/emacs/Sexp-Diary-Entries.html
 and http://orgmode.org/manual/Weekly_002fdaily-agenda.html)

 --
 John Rakestraw



___
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-orgmode


[Orgmode] Re: Repeating dates on named weekdays

2010-01-16 Thread Glauber Alex Dias Prado
William Halliburton whallibur...@gmail.com writes:

 Hello all, please excuse me if this is a FAQ, I can't seem to find any
 discussion on it.
kind of

 How can one enter in repeating dates such as

 every third thursday of each month

http://www.gnu.org/software/emacs/manual/html_node/org/Repeating-items.html#Repeating-items
http://orgmode.org/manual/Repeated-tasks.html#Repeated-tasks

 or

 the first and third wendsdays of each month

 ?

 Thank you very much.
 Will
 ___
 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-orgmode







___
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-orgmode


[Orgmode] org store link doesnt work

2007-09-29 Thread Glauber Alex Dias Prado
Hi I cant seem to make org store link work, does i have to do something
special? It simply says that the link was stored but when i try to
retrieve it the only possible completions are the kind of links that are
possible, like nntp: file: ...


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] org store link doesnt work

2007-09-29 Thread Glauber Alex Dias Prado
Carsten Dominik [EMAIL PROTECTED] writes:

 On Sep 28, 2007, at 13:19, Glauber Alex Dias Prado wrote:

 Hi I cant seem to make org store link work, does i have to do something
 special? It simply says that the link was stored but when i try to
 retrieve it the only possible completions are the kind of links that
 are
 possible, like nntp: file: ...

 Use the up arrow or M-p.  The stored links are in the history, not
 in the
 completion table.  It used to be like this, but it was changed.  If the
 documentation still says you should use completion, it is wrong and I'd
 like to know about it.

Hi the docs arent wrong but are missing the M-p which worked here to
restore it, where down and up arrows doesnt work probably cause of
something that i have customized which might steals the bind (im not sure)
below it follows where i could find info doc on this subject:

All links stored during the current session are part of
 the history for this prompt, so you can access them with up and
 down.  Completion, on the other hand, will help you to insert
 valid link prefixes like `http:' or `ftp:', including the prefixes
 defined through link abbreviations (*note Link abbreviations::).

Thanks a lot, i was already thinking i had something broken here on my side.

 - Carsten

Cheers,

Glauber.


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] org store link doesnt work

2007-09-29 Thread Glauber Alex Dias Prado
Carsten Dominik [EMAIL PROTECTED] writes:

 On Sep 28, 2007, at 13:19, Glauber Alex Dias Prado wrote:

 Hi I cant seem to make org store link work, does i have to do something
 special? It simply says that the link was stored but when i try to
 retrieve it the only possible completions are the kind of links that
 are
 possible, like nntp: file: ...

 Use the up arrow or M-p.  The stored links are in the history, not
 in the
 completion table.  It used to be like this, but it was changed.  If the
 documentation still says you should use completion, it is wrong and I'd
 like to know about it.

Hi the docs arent wrong but are missing the M-p which worked here to
restore it, where down and up arrows doesnt work(sorry correcting it
they work after i had pressed M-p at least one time) probably cause of
something that i have customized which might steals the bind (im not sure)
below it follows where i could find info doc on this subject:

All links stored during the current session are part of
 the history for this prompt, so you can access them with up and
 down.  Completion, on the other hand, will help you to insert
 valid link prefixes like `http:' or `ftp:', including the prefixes
 defined through link abbreviations (*note Link abbreviations::).

Thanks a lot, i was already thinking i had something broken here on my side.

 - Carsten

Cheers,

Glauber.


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org store link doesnt work

2007-09-29 Thread Glauber Alex Dias Prado
Jost Burkardt [EMAIL PROTECTED] writes:

 Hi Glauber, 

 Glauber Alex Dias Prado [EMAIL PROTECTED] writes:

 Hi I cant seem to make org store link work, does i have to do something
 special? It simply says that the link was stored but when i try to
 retrieve it the only possible completions are the kind of links that are
 possible, like nntp: file: ...

 What keys do you use to complete the link? On my setup I get
 standard-prefixes with TAB completion, to get stored links I have to
 use M-p, M-n or just RETURN for the last stored link. 

Cool stuff RETURN is very pratical when not working with lots of links
which should be more than 80% of the cases i use it.


 Jost


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode