Re: org-table-blank-field key binding removal

2021-10-13 Thread Michael Brand
Hi all Then Version 9.6 (or forget) seems right to me. Michael

Re: org-table-blank-field key binding removal

2021-10-13 Thread Michael Brand
Hi all The change is not announced in ORG-NEWS. I think it should be in Version 9.4. Michael

Re: empty/nil in table cells

2020-07-10 Thread Michael Brand
Hi Mario For such cases I use ~subseq~ to take the running window out of the complete range ~@I$2..@II$2~: | date | measure | running avg | |---+-+-| | 01-27 | 604 | | | 01-28 | 314 | | | 01-29 | 636 | | | 01-30 | 305 |

Statistic cookies for headings and list items

2020-03-31 Thread Michael Brand
Is this all intended behaviour? When I start with ~C-c C-c~ on [ of line A, Org seems to count list items: * [0/2] A - [ ] B - [ ] C ** DONE D Then ~S-~ on line D seems to count subheadings: * [0/1] A - [ ] B - [ ] C ** TODO D Then ~C-c C-c~ on [ of line A seems to count list items again: *

Agenda initial state

2019-11-24 Thread Michael Brand
Hi all I would like to ask for some help with the setup of ~org-agenda-start-with-log-mode~ and ~org-agenda-start-with-clockreport-mode~. With the minimal setup below I can see the effect of ~org-agenda-clockreport-parameter-plist~ but when I open the agenda with ~x~ the log and clockreport are

Re: [O] Cut and paste an entry programmatically

2019-06-29 Thread Michael Brand
Hi Kyle On Sat, Jun 29, 2019 at 2:58 AM Kyle Meyer wrote: > Hmm I don't consider that a bug. It's documented behavior for kill > commands to append to the last kill when called successively. > > ,[ C-h f kill-region RET ] > | [...] > | Any command that calls this function is a "kill

Re: [O] Cut and paste an entry programmatically

2019-06-28 Thread Michael Brand
Hi Samuel On Thu, Jun 27, 2019 at 11:57 PM Samuel Wales wrote: > does (kill-new "") in front of the kill fix it? Good idea. Yes, it prevents reinsertion of "1". Same with (setq kill-ring nil) in front of org-cut-subtree. With your idea I debug printed kill-ring and found that after the second

[O] Fwd: Cut and paste an entry programmatically

2019-06-27 Thread Michael Brand
org ,* 3 ,* 1 ,* 1 ,* 2 ,* 4 #+end_src with an unexpected reinsertion of "1" when inserting "2" resulting in a duplicate "1". Michael -- Forwarded message - From: Michael Brand Date: Thu, May 16, 2019 at 6:40 PM Subject: Cut and paste an entry

Re: [O] table, calc, reorder and protect calculation in one cell

2019-06-17 Thread Michael Brand
Hi Uwe On Tue, Jun 11, 2019 at 11:36 AM Uwe Brauer wrote: > Is this behavior possible? When I delete a row or a column, the TBLFM > is updated, could that be done for reordering? You may want to use something like this, (I knew the syntax for ~"$1"~ and used the formula debugger ~C-c {~ to

Re: [O] Cut and paste an entry programmatically

2019-05-17 Thread Michael Brand
Hi all I found something else with ~org-paste-subtree~ that surprises me and that reminds me of ~C-c *~ where I was never able to get a remindable understanding of what it does until now when investigating deeper with this minimal complete example: #+begin_src org ,* a ,** b - x ,** c - y ,* d

[O] Cut and paste an entry programmatically

2019-05-16 Thread Michael Brand
Hi all I would like to ask for some help to understand what am I doing wrong with this minimal complete example: #+begin_src org ,* 1 ,* 2 ,* 3 ,* 4 #+end_src #+begin_src emacs-lisp :results silent (defun temp () (org-cut-subtree) (org-forward-heading-same-level 2)

Re: [O] Column width cookies stopped working in 9.2.3?

2019-05-14 Thread Michael Brand
mum width Requested by Michael Brand Michael

Re: [O] Structured links to headings with endless depth

2019-05-07 Thread Michael Brand
Hi Ihor On Tue, May 7, 2019 at 5:27 AM Ihor Radchenko wrote: > I am wondering why you are strictly against ID properties. To me this looks like a misunderstanding. I use the ID often but my weighting of the different advantages is not the same in all cases. Some situations where no ID can be

Re: [O] Structured links to headings with endless depth

2019-05-06 Thread Michael Brand
Hi all On Wed, Mar 14, 2018 at 7:58 AM Michael Brand wrote: > ,(arbitrarily more levels upwards) > , * [...] > ,* > , * > ,* TODO > , * :5: > ,- The tag 5 is my rating of this audio recording. > ,

Re: [O] [RFC] Fixing link encoding once and for all

2019-03-01 Thread Michael Brand
On Fri, Mar 1, 2019 at 9:15 AM Nicolas Goaziou wrote: > Thinking a bit more about it, we don't need to escape /all/ square > brackets, only "]]" and "][" constructs. Therefore, we don't need to > escape every backslash either. Brilliant!

Re: [O] Format of links to Info node and Info index

2019-02-07 Thread Michael Brand
Hi all On Sat, Feb 2, 2019 at 11:14 AM Michael Brand wrote: > [...] Now I am confused about > the difference of info:org#Feedback that is documented as a link to an > info _node_ in [[info:org#External Links]] but never used in > org-manual.org versus info:org::Feedback that is no

[O] Format of links to Info node and Info index

2019-02-02 Thread Michael Brand
Hi all I noticed that the link format with only single colons for the Info node like info:org:Feedback stopped to work. Now I am confused about the difference of info:org#Feedback that is documented as a link to an info _node_ in [[info:org#External Links]] but never used in org-manual.org versus

Re: [O] Date macro and file permission

2019-01-22 Thread Michael Brand
Hi Nicolas On Tue, Jan 22, 2019 at 9:03 AM Nicolas Goaziou wrote: > Michael Brand writes: > > > Thank you for looking into it. Now it asks "Buffer *temp* modified; > > kill anyway?". > > Oh, so that (restore-buffer-modified-p nil) was useful… > >

Re: [O] Date macro and file permission

2019-01-21 Thread Michael Brand
Hi Nicolas On Mon, Jan 21, 2019 at 9:47 PM Nicolas Goaziou wrote: > Michael Brand writes: > > > Visiting a read-only file that uses the ~#+date:~ macro results in the > > message "File mode specification error: (buffer-read-only # > buffer>)" and a n

[O] Date macro and file permission

2019-01-21 Thread Michael Brand
Hi all Visiting a read-only file that uses the ~#+date:~ macro results in the message "File mode specification error: (buffer-read-only #)" and a not properly initialized Org buffer. For example Org indent does not indent and some faces show a wrong color. I tried today's master branch and found

Re: [O] Calculate differences of remote table numbers

2018-10-05 Thread Michael Brand
Hi Karl On Mon, Oct 1, 2018 at 5:02 PM Karl Voit wrote: > I'd like to calculate the differences between rows of numbers of a > different table. For this kind of shifting row or column indexes I use Calc vector subscript. In your case: #+NAME: my-table | Numbers | |-| | 1 | |

Re: [O] Link "bracket-types"

2018-05-17 Thread Michael Brand
Hi all On Sat, May 12, 2018 at 10:12 AM, Michael Brand <michael.ch.br...@gmail.com> wrote: > Thank you for the patch. I changed it (attached) to something that > preserves org-toggle-link-display and allows more different configs > for more different usages, please see the doc

[O] org-link customization and org-open-link-functions

2018-05-17 Thread Michael Brand
Hi all Customization of the face org-link changes org-open-link-functions resulting in org-open-at-point asking for a TAGS file. Is that intended behavior? - M-x org-mode - M-x customize - org-open-link-functions is now nil - In customization navigate to org-link and open it -

Re: [O] Parsing of todo state log lines

2018-05-16 Thread Michael Brand
Hi Nicolas On Wed, May 16, 2018 at 10:42 PM, Nicolas Goaziou wrote: > I didn't test logging, but `org-skip-over-state-notes' definitely goes > past the three items, so I guess `org-log-beginning' should put point at > the end of the three items, too. Indeed, it works

Re: [O] Parsing of todo state log lines

2018-05-16 Thread Michael Brand
Hi On Wed, May 16, 2018 at 10:08 PM, Nicolas Goaziou wrote: > You are right. It should be empty, not "". I think I fixed it in maint. I still get the new log in the middle line with release_9.1.13-757-g463664b after restarting Emacs. Did you get the new log after the

Re: [O] Parsing of todo state log lines

2018-05-16 Thread Michael Brand
Hi Nicolas On Wed, May 16, 2018 at 9:07 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Michael Brand <michael.ch.br...@gmail.com> writes: > >> There seems to be an inconsistency in parsing. When >> org-log-states-order-reversed i

[O] Parsing of todo state log lines

2018-05-15 Thread Michael Brand
Hi all There seems to be an inconsistency in parsing. When org-log-states-order-reversed is nil (which I am new to) and a TODO with the manually written state log lines - State "DONE" from "TODO" [2018-05-12 Sat] - State "DONE" from [2018-05-13 Sun] - State "DONE"

Re: [O] Link "bracket-types"

2018-05-12 Thread Michael Brand
Hi Nicolas Thank you for the patch. I changed it (attached) to something that preserves org-toggle-link-display and allows more different configs for more different usages, please see the docstring of org-link-brackets. I tried it out with org-toggle-link-display and for org-link-brackets '(0 0),

Re: [O] Link "bracket-types"

2018-05-11 Thread Michael Brand
On Fri, May 11, 2018 at 3:10 PM, Nicolas Goaziou wrote: > Completing myself, > > Nicolas Goaziou writes: > >> If you mean that fontification should show one pair of brackets instead >> of hiding them all, I suggested it already, users found it

Re: [O] Link "bracket-types"

2018-05-10 Thread Michael Brand
Hi Nicolas On Thu, May 10, 2018 at 6:27 PM, Nicolas Goaziou wrote: > IIUC, you want fontification to make it obvious there are square > brackets in links, so that you know when they can be removed, for > improved readability outside Org. Yes, and generally just to see

Re: [O] Link "bracket-types"

2018-05-10 Thread Michael Brand
Hi Nicolas On Thu, May 10, 2018 at 3:33 PM, Nicolas Goaziou wrote: > Sorry for being dense, but I still don't get it. I can not claim to have been clear enough, hope to make it clearer below. > When using non-Org tools, the solution doesn't belong to Org, does it? > I

Re: [O] Link "bracket-types"

2018-05-10 Thread Michael Brand
Hi Nicolas On Thu, May 10, 2018 at 2:44 PM, Nicolas Goaziou wrote: > I still don't understand what your use case is about. Why do you care > about the presence of square brackets? Because I care about the raw file content that I see when using non-Org tools like mainly

Re: [O] Link "bracket-types"

2018-05-10 Thread Michael Brand
Hi Nicolas Thank you for looking into this. On Thu, May 10, 2018 at 10:14 AM, Nicolas Goaziou wrote: > Just move the mouse over them. A tooltip or the minibuffer will display > what the link is really. During my use case I don't care what URL the link opens. I want to

[O] Link "bracket-types"

2018-05-10 Thread Michael Brand
Hi all For the four different Org link "bracket-types" shown below I would like to have four different faces to be able to distinguish them at first sight. What is the recommended way to do this? The four Org link bracket-types by example: Buffer raw content (or visible-mode): : 1)

[O] org-indent-mode and wrapping of bullet

2018-05-05 Thread Michael Brand
Hi all When an item or heading with a single word is wider than the buffer width it is shown as │-│ │http://www.orgmode.org/z\│ │zzz │ │*│ │http://www.orgmode.org/z\│ │zzz │ when

Re: [O] Structured links to headings with endless depth

2018-03-14 Thread Michael Brand
Hi John On Wed, Mar 14, 2018 at 4:49 AM, John Kitchin wrote: > (defun xpath-follow (path) Thank you for this solution. I plan to adapt it to match the link path only to a portion of a headline branch by ignoring the higher and lower levels not given in the link path for

Re: [O] problem with empty column

2018-01-05 Thread Michael Brand
Hi Uwe On Fri, Jan 5, 2018 at 1:44 PM, Uwe Brauer wrote: > But fails if there is a row like this > > | Name | E1 | E2 | E3 | E4 | Res | > |+++++-| > | Entry1 ||||| NP | > | Entry2 | 10 | 20 | 30 | 40 | 10 | > | Entry3 | 10 ||

Re: [O] orgstruct-mode and colorizing headings.

2017-09-23 Thread Michael Brand
Hi Nonono On Sat, Sep 23, 2017 at 9:40 AM, Nonono wrote: > Hello orgmode! I have a question that I searched on the internet and > manuals about one hour, but still don't find out how. > > How to change the face of headings when in the orgstruct-mode? I think > It would be neat

Re: [O] [RFC] Remove Org Struct mode

2017-09-09 Thread Michael Brand
Hi Thorsten First thank you very much for creating outshine. On Sat, Sep 9, 2017 at 8:20 PM, Thorsten Jolitz wrote: > I'm not sure how orgstruct-mode does it, but since outshine is a minor > mode, it cannot use Key bindings exactly like Org, since many of these > are used in

Re: [O] [RFC] Remove Org Struct mode

2017-09-05 Thread Michael Brand
On Tue, Aug 22, 2017 at 7:48 PM, Michael Brand <michael.ch.br...@gmail.com> wrote: > 6) No syntax highlighting of headings To get the above behavior of orgstruct-mode in outshine for programming modes I added outshine-fontify. It makes me ready to let orgstruct-mode go. outshin

Re: [O] [RFC] Remove Org Struct mode

2017-08-27 Thread Michael Brand
Hi Adam On Wed, Aug 23, 2017 at 5:14 PM, Adam Porter wrote: > ;; Regular comment > ;;; Heading level 1 > Heading level 2 > ... > > Then any comment that starts with 3 or more semicolons is indented to > the left edge and becomes a collapsible heading, regardless of the

Re: [O] [RFC] Remove Org Struct mode

2017-08-23 Thread Michael Brand
Hi Rasmus On Wed, Aug 23, 2017 at 9:17 PM, Rasmus wrote: > FWIW, I use similar patterns, > > ;; outline-regexp: ";;\\*+\\|\\`" > ;; orgstruct-heading-prefix-regexp: ";;\\*+\\|\\`" Thank you, I will try that out. Michael

Re: [O] [RFC] Remove Org Struct mode

2017-08-23 Thread Michael Brand
Hi Adam Thank you for all the explanations that I will study and try later. Especially the origami package looks very useful to me. Michael

Re: [O] [RFC] Remove Org Struct mode

2017-08-23 Thread Michael Brand
Hi Adam First thank you for taking over maintenance of outshine.el from Thorsten Jolitz. On Wed, Aug 23, 2017 at 1:33 PM, Adam Porter wrote: > Rasmus writes: > >> I also would like to see a minor-mode for Org-like cycling when using >> outline-minor-mode, as

Re: [O] [RFC] Remove Org Struct mode

2017-08-22 Thread Michael Brand
Thanks for pointing out speed keys in outshine.el that I was not aware of. However I still failed. My requirements for orgstruct-mode or its replacement are very limited compared to what orgstruct-mode or outshine.el do or intend to do: 1) Only headings, no lists 2) No structure editing, only

Re: [O] [RFC] Remove Org Struct mode

2017-08-21 Thread Michael Brand
Hi all If I understand correctly orgstruct-mode has much more convenient key bindings like TAB and its variants for cycling than outshine.el or outline-minor-mode which is a big advantage for me. When point is on a heading also the other key bindings are just the same as in Org mode. This was my

Re: [O] [RFC] Shrink columns dynamically

2017-07-11 Thread Michael Brand
Hi Nicolas On Tue, Jul 11, 2017 at 1:47 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Michael Brand <michael.ch.br...@gmail.com> writes: >> Also I hope that you can build in complete removal of columns for >> export similar to as discussed around here: >

Re: [O] Deleting org table columns during export (Was: [RFC] Shrink columns dynamically)

2017-07-11 Thread Michael Brand
Hi Kaushal On Tue, Jul 11, 2017 at 1:18 PM, Kaushal Modi <kaushal.m...@gmail.com> wrote: > On Tue, Jul 11, 2017, 2:19 AM Michael Brand <michael.ch.br...@gmail.com> > wrote: >> Also I hope that you can build in complete removal of columns for >> export simil

Re: [O] [RFC] Shrink columns dynamically

2017-07-11 Thread Michael Brand
Hi Nicolas On Tue, Jul 11, 2017 at 12:11 AM, Kaushal Modi wrote: > The feature works nicely as explained, but please do not remove the width > cookie! > > The new feature supports only completely hiding a column. But what we lose > by removal of width cookie is: > > -

Re: [O] org table toggle narrowing and true column hiding

2017-06-23 Thread Michael Brand
Hi Uwe On Wed, Jun 21, 2017 at 11:24 AM, Uwe Brauer wrote: > Any plans to implement true column hiding for org tables? Not that I know of. How would you select a hidden column to unhide it? > Concerning narrowing (poor man version of hiding) > > | Name | passport | Other

Re: [O] empty cells in columns should be left emtpy when manipulating columns

2017-06-23 Thread Michael Brand
Hi Uwe On Thu, Jun 22, 2017 at 9:56 AM, Uwe Brauer wrote: > #+TBLFM: $2=if("$1" == "nan", string(""), $1*0.15;%.1f);E > > And friends did not work any more > > | 3.25 | 0.5) | > | | 0.0) | > #+TBLFM: $2=if("$1" == "nan", string(""), $1*0.15;%.1f);E This is invalid syntax,

Re: [O] insert cell inside an org-mode table?

2017-06-08 Thread Michael Brand
Hi Sharon On Thu, Jun 8, 2017 at 4:21 PM, Sharon Kimble wrote: > Okay, imagine that you have this table - > > | fruit | one| two| > |++| > | pear | orange | grape | > | banana | grapefruit | satsuma| > |

Re: [O] truncate-lines for org tables, visual-line-mode for rest?

2017-06-04 Thread Michael Brand
Hi all On Mon, Jan 26, 2015 at 9:24 PM, Eric S Fraga wrote: > On Monday, 26 Jan 2015 at 21:43, Vladimir Alexiev wrote: >> I use visual-line-mode to wrap long lines on display. >> But for org tables, wrapping makes the display very confused. >> Is it possible to have

Re: [O] org-hide in terminal

2017-05-31 Thread Michael Brand
Hi Johannes In a terminal with at least 16 colors the terminal color white (ID 7) which is used for the face org-hide is darker than the terminal color bright white (ID 15). Bright white is usually the same as the light background. Use M-x list-colors-display in a terminal Emacs and look at the

Re: [O] Table formula references

2017-04-02 Thread Michael Brand
Hi Manuel Not sure if I understand your formulas right, so check my solutions with the formula debugger. On Thu, Mar 30, 2017 at 10:38 AM, Manuel Schneckenreither wrote: > So @5$3 should be 0.9^0*127 + 0.9^1*118 + 0.9^2*121 + 0.9^3*115. Emacs Calc has map with

Re: [O] [RFC] Change visibility for bracket links

2016-10-13 Thread Michael Brand
Hi Nicolas On Thu, Oct 13, 2016 at 2:35 PM, Nicolas Goaziou wrote: > > Aaron Ecay writes: > >> FWIW, I agree. On the other hand, many people object to the brackets. > > I don't mind adding a variable. Or maybe add new value(s) to

Re: [O] working with tables can be quite painful...

2016-09-17 Thread Michael Brand
Hi Eric Question, out of curiosity: Is there a difference when you delete all lines above and below the table, with and without adding a headline above? One of my tables fluctuates around 150 rows and around 20 to 40 columns, overall a few hundred characters wide (columns with some history

Re: [O] How to use symbolic names to refer to spreadsheet fields containing irregular values

2016-08-04 Thread Michael Brand
Hi Christoph On Wed, Aug 3, 2016 at 11:31 PM, Christoph LANGE wrote: > I would like to make the following work (with Org 8.3.5): > > |---+--++---| > | |13:13 | - | 1 | > | ^ |h | s | n | > |---+--++---| > | |

Re: [O] [BUG] External unicode links without a description in ox-html

2016-07-25 Thread Michael Brand
l 25, 2016 at 2:52 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Michael Brand <michael.ch.br...@gmail.com> writes: >> There seems to be a related issue with an inconsistency between HTML >> and other export formats in using org-link-unescape for the lin

Re: [O] [BUG] External unicode links without a description in ox-html

2016-07-23 Thread Michael Brand
Hi Nicolas There seems to be a related issue with an inconsistency between HTML and other export formats in using org-link-unescape for the link _destination_ part: With the Org file 1) https://duckduckgo.com/?q=Org+mode+%252B+Worg 2) https://duckduckgo.com/?q=Org+mode+%2B+Worg

Re: [O] Bug: Table formula does not copy time interval correctly [8.2.10 (release_8.2.10 @ /usr/share/emacs/25.0.94/lisp/org/)]

2016-07-10 Thread Michael Brand
Hi Rares On Fri, Jul 8, 2016 at 6:06 AM, Rares Vernica wrote: > Just to clarify, how would you fix this: > > | [2016-07-05 Tue]--[2016-07-06 Wed] | 1d | vsum(d) | > | [2016-07-06 Wed]--[2016-07-07 Thu] | 1d | 2 d | > #+TBLFM: $3=vsum(@1$-1..@0$-1) > > Notice the

Re: [O] tables: sum columns only in certain ranges of rows

2016-07-07 Thread Michael Brand
Hi Uwe On Mon, Jul 4, 2016 at 9:12 PM, Uwe Brauer wrote: > Is the a simple way to tell a org-table that > it adds say two columns in a certain way $4=0.2*($2+$3) > but only for certain values of the row. I hoped that > a hline would help but it does not the row containing

Re: [O] Bug: Table formula does not copy time interval correctly [8.2.10 (release_8.2.10 @ /usr/share/emacs/25.0.94/lisp/org/)]

2016-07-07 Thread Michael Brand
Hi Rares On Mon, Jul 4, 2016 at 6:28 PM, Rares Vernica wrote: > | [2016-07-03 Sun]--[2016-07-04 Mon] | 1d | d | > | [2016-07-03 Sun]--[2016-07-05 Tue] | 2d | 2 d | > #+TBLFM: $3=$2 A Calc formula interprets field values as a symbolic expressions to calculate with. To copy

[O] bug#2409: bug#2409: 23.0.90; org-mode + viper-mode + ns make typing unresponsive

2016-05-17 Thread Michael Brand
Hi all I did some trials in lisp/org/org.el with - Emacs on OS X built with configure --with-ns, 24.5 and today's master - Org from today's master 1) Removing the line containing org-self-insert-command from (org-remap org-mode-map 'self-insert-command

Re: [O] tables, comment in one line, export to html

2016-04-27 Thread Michael Brand
Hi Nicolas I agree, together all the below makes sense. Some comments added. Nicolas Goaziou wrote: > You are talking about section "3.5 The spreadsheet". I don't think this > feature is directly related to spreadsheet capabilities. > > Actually, / in first column is

Re: [O] tables, comment in one line, export to html

2016-04-26 Thread Michael Brand
Hi On Tue, Apr 26, 2016 at 11:10 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Michael Brand <michael.ch.br...@gmail.com> writes: >> # in non-first columns to mean noexport of the column has the >> disadvantage of possible confusion with # in the first colum

Re: [O] tables, comment in one line, export to html

2016-04-26 Thread Michael Brand
Hi On Tue, Apr 26, 2016 at 9:14 PM, Nicolas Goaziou wrote: > It sounds good, as long as it is clear this markers is for export > consumption only, and has no special effect when using the spreadsheet. > > I suggest to use # or <#> instead of / so as to refer to "comment"

Re: [O] How to hide a table column from exporting

2016-04-26 Thread Michael Brand
Hi Kaushal On Fri, Apr 22, 2016 at 8:40 PM, Kaushal Modi wrote: > I was trying to prevent an org table column from exporting to html. So I > started looking for a solution and found this: > http://stackoverflow.com/q/6641379/1219634 Please see my answer for one solution

Re: [O] tables, comment in one line, export to html

2016-04-26 Thread Michael Brand
Hi Uwe On Tue, Apr 19, 2016 at 1:08 PM, Uwe Brauer wrote: > I would like to have a table entry in which the last colum contains > comments which I don't want to export to html. > > Like this > > | Joe Smith | 7 | 25 | 5 || 37 | | #+begin_comment from > group

Re: [O] Orgtbl: edit table like code, in a separate buffer?

2016-03-06 Thread Michael Brand
Hi Rafael On Fri, Mar 4, 2016 at 6:17 PM, Rafael Ramirez Morales wrote: > I was wondering if it was technically possible to invoke a separate buffer > to edit a table in org mode. > > My working scenario is a table with several columns with limited width so as >

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-25 Thread Michael Brand
Hi Oleh On Thu, Feb 25, 2016 at 11:59 AM, Oleh Krehel wrote: > - Tags - there are always a pain to re-align, they show up as diffs in > git commits Did you consider to set org-tags-column to 0? Or put the tags into your own property :MyTag: in the property drawer

Re: [O] Auto-delete dated DONE notifications?

2016-02-23 Thread Michael Brand
Hi all On Sat, Feb 20, 2016 at 2:00 PM, Nicolas Goaziou wrote: > I think this would be a nice addition to Org. Yes, it has been the wish of several users including me earlier on this list. > We could add an option that can limit the number of state change > notes in an

Re: [O] Table calculation

2016-02-20 Thread Michael Brand
Hi Brett On Sat, Feb 20, 2016 at 8:41 PM, Brett Presnell wrote: > In the following table, the last row gives the number of empty cells > following the last nonempty cell in each column (except the first column > of course). I would like to create a TBLFM formula that

Re: [O] Concatenation of cells using 'remote'

2016-02-15 Thread Michael Brand
Hi Loris On Fri, Jan 29, 2016 at 2:20 PM, Loris Bennett wrote: > Hi, > > I can create a concatenation of the element in column like this: > > #+NAME: addresses > | able| a...@example.org | > | baker | ba...@example.org

Re: [O] column view uses non-existent org-whitespace face

2016-02-08 Thread Michael Brand
Hi Eric On Thu, Sep 25, 2014 at 6:09 PM, Michael Brand <michael.ch.br...@gmail.com> wrote: > On Tue, Aug 5, 2014 at 4:53 AM, Eric Abrahamsen <e...@ericabrahamsen.net> > wrote: >> 2. The text for %ITEM has the face org-whitespace applied to the leading >> stars,

Re: [O] org-player and switch to lexical binding in org.el

2016-02-07 Thread Michael Brand
Hi Paul On Thu, Jan 28, 2016 at 4:00 AM, Paul Sexton wrote: > Hi, I have just pushed the suggested change to the org-player repository on > bitbucket. Please let me know if it has fixed the problem. org-player.el 1.0.1 plays again for links with a position. For links

Re: [O] org-pdfview-open doesn't work anymore

2016-02-07 Thread Michael Brand
. Michael From 96aa89840c15c71c534faa0ce265530d5ff88c0a Mon Sep 17 00:00:00 2001 From: Michael Brand <michael.br...@alumni.ethz.ch> Date: Sun, 7 Feb 2016 11:07:56 +0100 Subject: [PATCH] `org-file-apps' add migration hint for function signature * lisp/org.el (org-open-file): Add a user error for when the function sig

Re: [O] org-pdfview-open doesn't work anymore

2016-02-06 Thread Michael Brand
Hi Nicolas On Fri, Feb 5, 2016 at 11:43 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Michael Brand <michael.ch.br...@gmail.com> writes: >> + ;; FIXME: Remove this check when most default installations of >> + ;; Emacs have at least Org 9.0. >>

Re: [O] Columnview *** is exported as *

2016-02-06 Thread Michael Brand
Hi Nicolas On Sat, Feb 6, 2016 at 12:07 AM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Michael Brand <michael.ch.br...@gmail.com> writes: >> -- >> ITEM | >> * Column view | >> *** Subsect.. | >&

Re: [O] org-pdfview-open doesn't work anymore

2016-02-05 Thread Michael Brand
Hi Julien On Fri, Feb 5, 2016 at 6:46 AM, Julien Cubizolles wrote: > I've been using org-pdfview (from > https://github.com/markus1189/org-pdfview) to have org-mode open pdf > files generated during export. > > --8<---cut

Re: [O] org-pdfview-open doesn't work anymore

2016-02-05 Thread Michael Brand
Hi Nicolas On Fri, Feb 5, 2016 at 6:22 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Michael Brand <michael.ch.br...@gmail.com> writes: >> + ;; FIXME: Remove this check when most default installations of >> + ;; Emacs have at least Org 9.0. >

Re: [O] Columnview *** is exported as *

2016-02-05 Thread Michael Brand
Hi Nicolas Commit release_8.3.3-547-g00f0c70 does not respect the stars of ITEM any more for the dynamic column width of the interactive column view with overlays. The fix of org-columns-get-autowidth-alist for the two "(setq-local org-columns-current-maxwidths [...]" seems too complicated to do

Re: [O] org-pdfview-open doesn't work anymore

2016-02-05 Thread Michael Brand
Hi Nicolas On Fri, Feb 5, 2016 at 9:33 AM, Michael Brand <michael.ch.br...@gmail.com> wrote: > Due to lexical binding in org.el there was a change in > `org-file-apps', see Org News for version 9.0 and e. g. this thread: > http://thread.gmane.org/gmane.emacs.orgmode/104272 >

Re: [O] org-player and switch to lexical binding in org.el

2016-02-04 Thread Michael Brand
Hi Nicolas On Thu, Feb 4, 2016 at 9:36 AM, Nicolas Goaziou wrote: > I do not mind, as there is an explicit "FIXME" or "XXX" somewhere above > reminding us to remove this at some point. My concern is only the version 9.1 which I find too early. A FIXME in my sense is

Re: [O] org-player and switch to lexical binding in org.el

2016-02-03 Thread Michael Brand
Hi Nicolas and Paul On Wed, Feb 3, 2016 at 6:33 PM, Nicolas Goaziou wrote: > I replaced S-expressions with functions of two arguments. The Org world > is a better place with one less `eval'. Just to confirm: Updating org-player.el to 1.0.1 makes Org links to media files

Re: [O] org-player and switch to lexical binding in org.el

2016-02-03 Thread Michael Brand
Hi Nicolas On Wed, Feb 3, 2016 at 9:56 PM, Nicolas Goaziou wrote: > I have no objection, but I suggest to add a big fat FIXME above so as to > remove it once we release Org 9.1. I would prefer to keep it much longer for those who do not regularly update Org. The many

Re: [O] org-player and switch to lexical binding in org.el

2016-01-31 Thread Michael Brand
Hi Nicolas and Paul On Sun, Jan 31, 2016 at 12:30 AM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Michael Brand <michael.ch.br...@gmail.com> writes: > >> Only slowly I begin to get it partially. My observation is that if the >> current `org-open-file' would

Re: [O] org-player and switch to lexical binding in org.el

2016-01-29 Thread Michael Brand
Hi Nicolas On Fri, Jan 29, 2016 at 2:32 PM, Nicolas Goaziou wrote: > My suggestion was hypothetical, and not yet implemented. No wonder it > doesn't work. > > If you think this change sounds reasonable, I can implement it, tho. > However, there is some backward

Re: [O] org-player and switch to lexical binding in org.el

2016-01-28 Thread Michael Brand
Hi Nicolas On Sun, Jan 17, 2016 at 9:40 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Michael Brand <michael.ch.br...@gmail.com> writes: > >> release_8.3.3-426-g1f49e9f introduces a regression. The link >> >> [[fi

Re: [O] Tables: remote reference fails with umlaut (and in other cases)

2016-01-25 Thread Michael Brand
Hi Karl > I tried to reference "the item one row up" via @@#-1$1 (and similar) > and failed. Is there a way to accomplish this as well? It fails because @@#-1$1 is only substituted with @1-1$1, @2-1$1 etc. depending on the row it is evaluated on. To be able to use an expression as the index for

Re: [O] Tables: remote reference fails with umlaut (and in other cases)

2016-01-19 Thread Michael Brand
Hi Karl On Tue, Jan 19, 2016 at 4:29 PM, Karl Voit wrote: > I never understood the @@#-syntax anyway. On [1] I referenced to [2]. Please see the Org manual for @# and $#. Thus @@#$1 is substituted with @1$1, @2$1, @3$1 etc. depending on the row it is evaluated on. @1$$#

Re: [O] isearch-forward at end of entry

2016-01-18 Thread Michael Brand
Hi Kyle On Mon, Jan 18, 2016 at 4:33 AM, Kyle Meyer <k...@kyleam.com> wrote: > > Michael Brand <michael.ch.br...@gmail.com> writes: > >> With today's release_8.3.2-441-ga87dea3 on Emacs 24.5 and this org >> file >> >> ---

Re: [O] isearch-forward at end of entry

2016-01-18 Thread Michael Brand
Hi Kyle On Mon, Jan 18, 2016 at 8:06 PM, Kyle Meyer wrote: > > I was failing to produce this with an Emacs 25.0.50 build on GNU/Linux. > I tried with Emacs 24.5.1, and I see the same issue as you. So > presumably a commit in Emacs 25 fixes this, but I haven't looked into >

Re: [O] org-player and switch to lexical binding in org.el

2016-01-17 Thread Michael Brand
Hi Paul It seems that this is beyond of my knowledge and I would like to ask you as the author of org-player for help. On Sun, Jan 17, 2016 at 9:40 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Michael Brand <michael.ch.br...@gmail.com> writes: > >&

[O] org-player and switch to lexical binding in org.el

2016-01-17 Thread Michael Brand
Hi all release_8.3.3-426-g1f49e9f introduces a regression. The link [[file:/dir/audio.mp3::0:12:34]] results in Debugger entered--Lisp error: (void-variable search) (org-player-play-file file search) [...] org-open-file("/dir/audio.mp3" nil nil "0:12:34") [...]

Re: [O] org-player and switch to lexical binding in org.el

2016-01-17 Thread Michael Brand
Hi Paul It seems that this is beyond of my knowledge and I would like to ask you as the author of org-player for help. On Sun, Jan 17, 2016 at 9:40 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Michael Brand <michael.ch.br...@gmail.com> writes: > >&

Re: [O] Org campture recursively expands %-escapes

2016-01-12 Thread Michael Brand
Hi Nicolas On Tue, Jan 12, 2016 at 9:42 AM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > > Michael Brand <michael.ch.br...@gmail.com> writes: > > > I don't understand because the org-time-stamp-formats you mention is > > already used and does not cover ina

Re: [O] Org campture recursively expands %-escapes

2016-01-11 Thread Michael Brand
Hi Nicolas On Tue, Jan 12, 2016 at 12:05 AM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > > Michael Brand <michael.ch.br...@gmail.com> writes: > >> (ert-deftest test-org-capture/fill-template () >> - "Test `org-capture-fill-template' specifications.&q

Re: [O] Org campture recursively expands %-escapes

2016-01-10 Thread Michael Brand
Hi Nicolas On Sat, Jan 9, 2016 at 6:54 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > > Michael Brand <michael.ch.br...@gmail.com> writes: > > > My current ERT for test-org-feed.el > > > >(equal > > "5 % Less (See\n Item

Re: [O] Org campture recursively expands %-escapes

2016-01-09 Thread Michael Brand
Hi Nicolas On Sat, Jan 9, 2016 at 5:05 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > > Michael Brand <michael.ch.br...@gmail.com> writes: > > > On the other hand commit release_8.3.3-415-ge2fbaee breaks the ERT > > that I suggested in this

  1   2   3   4   5   6   7   >