Re: [O] Hiding "blocked" TODO items

2015-04-07 Thread Samuel Loury
Dear Nikolaus, Nikolaus Rath writes: > Is there a way to have TODO items "blocking" each other? > > For example, if I have this document: > > * TODO Pay water > :PROPERTIES: >:blocked-on: checks > :END: > * TODO Pay electricity > :PROPERTIES: >:blocked-on: checks > :END: > * TODO

Re: [O] hiding the PROPERTIES drawer

2015-03-28 Thread Xavier Maillard
Nicolas Goaziou writes: > Hello, > > Leo Ufimtsev writes: > >> I think he meant completely hiding the property drawer, so it wouldn't >> even be a one-liner. > > This is not possible. Even with an overlay ? > Completely hiding data in a document sounds very wrong, anyway. Sounds odd at least

Re: [O] hiding the PROPERTIES drawer

2015-03-27 Thread Nicolas Goaziou
Hello, Leo Ufimtsev writes: > I think he meant completely hiding the property drawer, so it wouldn't > even be a one-liner. This is not possible. Completely hiding data in a document sounds very wrong, anyway. Regards, -- Nicolas Goaziou

Re: [O] hiding the PROPERTIES drawer

2015-03-27 Thread Leo Ufimtsev
arch 25, 2015 10:18:32 AM Subject: Re: [O] hiding the PROPERTIES drawer Hi Randomcoder, Randomcoder writes: > Is there an easier solution to hiding the :PROPERTIES: drawer by default ? I'm not sure that a solution is needed. In my setup (Org master branch, Emacs 23), the PROPERTIES d

Re: [O] hiding the PROPERTIES drawer

2015-03-25 Thread Richard Lawrence
Hi Randomcoder, Randomcoder writes: > Is there an easier solution to hiding the :PROPERTIES: drawer by default ? I'm not sure that a solution is needed. In my setup (Org master branch, Emacs 23), the PROPERTIES drawer is always folded by default. I've never done anything to make this happen;

Re: [O] hiding intrusive target-markups-brackets ++ Re: org-special-keyword face not showing in sublevels anymore since commit 69700e1

2014-08-04 Thread Gaston Tridoulos
Bastien gnu.org> writes: > > Hi, > > mc aiguphonie.com> writes: > > > Please allow me to shortly direct your attention to an open, > > still uncommented 'feature request’ addressing an optional > > ‘fontification' or ‘hiding' of the some kind of intrusive target-markups-brackets ( << >> ),

Re: [O] hiding intrusive target-markups-brackets ++ Re: org-special-keyword face not showing in sublevels anymore since commit 69700e1

2014-07-29 Thread Bastien
Hi, mc writes: > Please allow me to shortly direct your attention to an open, > still uncommented 'feature request’ addressing an optional > ‘fontification' or ‘hiding' of the some kind of intrusive > target-markups-brackets ( << >> ), > just like this is done with the org-link brackets ( [[

Re: [O] Hiding checked items in a checkbox list (FR?)

2014-06-01 Thread Alexis
Sergio Pokrovskij writes: > Yes (actually I have about 80 items in my Springpad list; if the full > list consists of mere 10 items, it fits the screen of my smartphone, > and there is no real need to hide the checked items). *nod* Fair enough; i was just making up some numbers in order to be con

Re: [O] Hiding checked items in a checkbox list (FR?)

2014-06-01 Thread Sergio Pokrovskij
> "Al" == Alexis wrote: Al> Sergio Pokrovskij writes: >> The next problem is that MobileOrg should respect the preliminary >> hiding done before the visit to the shop. I do not request that it >> hide the checked (= bought) items as well (actually I'd prefer it to >> leave them ch

Re: [O] Hiding checked items in a checkbox list (FR?)

2014-05-31 Thread Alexis
Sergio Pokrovskij writes: > The next problem is that MobileOrg should respect the preliminary > hiding done before the visit to the shop. I do not request that it > hide the checked (= bought) items as well (actually I'd prefer it to > leave them checked and visible; but also its hiding-on-the-f

Re: [O] Hiding cells in org table

2013-07-18 Thread J. David Boyd
John Rakestraw writes: > Hi, David -- > > On 17.07.2013 14:02, da...@adboyd.com wrote: >> I've scanned through the manuals, and see no way to do this, but. >> >> Is there anyway to block out the contents of a result field in a >> table, until >> I export it into an html file? >> >> I'm keeping tr

Re: [O] Hiding cells in org table

2013-07-17 Thread John Rakestraw
Hi, David -- On 17.07.2013 14:02, da...@adboyd.com wrote: I've scanned through the manuals, and see no way to do this, but. Is there anyway to block out the contents of a result field in a table, until I export it into an html file? I'm keeping track of my hours worked, with the dollar amoun

Re: [O] hiding footnotes

2013-02-26 Thread 42 147
Oops, wrong thread. 2013/2/26 42 147 > Set it to 20, thanks. > > Hopefully I never need to hit the 26 limit. > > > 2012/11/29 Nick Dokos > >> 42 147 wrote: >> >> > Very nice. >> > >> > However, I'd like to write a function that toggles the color value >> (without >> > recourse to the customize

Re: [O] hiding footnotes

2013-02-26 Thread 42 147
Set it to 20, thanks. Hopefully I never need to hit the 26 limit. 2012/11/29 Nick Dokos > 42 147 wrote: > > > Very nice. > > > > However, I'd like to write a function that toggles the color value > (without > > recourse to the customize menu), since it would be useful to highlight > the > > fo

Re: [O] hiding footnotes

2012-11-28 Thread 42 147
I added this to my .emacs: (defun t-face () "to pass org-footnote automatically to toggle-face" (interactive) (toggle-face 'org-footnote)) (defun toggle-face (&optional face-from) (interactive (list (read-face-name "Face" (face-at-point (let ((f (assq face-from face-remapping-alist))

Re: [O] hiding footnotes

2012-11-28 Thread Jambunathan K
Jambunathan K writes: > Install the following defun, put the cursor on fontified text and do M-x > toggle-face. > > (defun toggle-face (&optional face-from) > (interactive (list (read-face-name "Face" (face-at-point > (let ((f (assq face-from face-remapping-alist)) >

Re: [O] hiding footnotes

2012-11-28 Thread Jambunathan K
Nick Dokos writes: > 42 147 wrote: > >> Very nice. >> >> However, I'd like to write a function that toggles the color value (without >> recourse to the customize menu), since it would be useful to highlight the >> footnotes from time to time. >> > > Anything that can be done interactively can

Re: [O] hiding footnotes

2012-11-28 Thread Nick Dokos
42 147 wrote: > Very nice. > > However, I'd like to write a function that toggles the color value (without > recourse to the customize menu), since it would be useful to highlight the > footnotes from time to time. > Anything that can be done interactively can also be done programatically. You

Re: [O] hiding footnotes

2012-11-28 Thread Alan L Tyree
On 29/11/12 14:35, 42 147 wrote: I should add that Tyree's idea is what I was looking for originally (changing the face to the text font at least fixed readability). Ideally, instead of jumping to the footnote section, it would be collapsible / expandable, much like headings. Right now having a

Re: [O] hiding footnotes

2012-11-28 Thread 42 147
I should add that Tyree's idea is what I was looking for originally (changing the face to the text font at least fixed readability). Ideally, instead of jumping to the footnote section, it would be collapsible / expandable, much like headings. Right now having a dedicated footnote section is bett

Re: [O] hiding footnotes

2012-11-28 Thread 42 147
Very nice. However, I'd like to write a function that toggles the color value (without recourse to the customize menu), since it would be useful to highlight the footnotes from time to time. After some tests, it is clear I also disliked the underlining. On Wed, Nov 28, 2012 at 12:26 PM, Jambunat

Re: [O] hiding footnotes

2012-11-28 Thread Alan L Tyree
Hiding footnotes would be a great enhancement as far as I am concerned. I mean "hiding" in the same way that entities can be hidden in Auctec. Auctec allows a "fold mode" that replaces various entities with user defined symbols. For example, \label{xxx} becomes [l]; \footnote{} becomes

Re: [O] hiding footnotes

2012-11-28 Thread Jambunathan K
> Reading an org-file. I should note, it is the highlighting that is the > problem, not the footnote itself. If I could somehow toggle it to the > color of the text, that would solve my problem. Put your cursor on the footnote. Then do C-u C-x = In the resulting buffer, toward the end, you

Re: [O] hiding footnotes

2012-11-28 Thread 42 147
Reading an org-file. I should note, it is the highlighting that is the problem, not the footnote itself. If I could somehow toggle it to the color of the text, that would solve my problem. For example, the [16] here is a distraction: * Chomsky ** Books *** Deterring Democracy Chapter 1. Cold

Re: [O] hiding footnotes

2012-11-28 Thread John Hendy
On Wed, Nov 28, 2012 at 7:03 AM, 42 147 wrote: > Self-explanatory. I like how org-mode handles footnotes, but I want an > option to hide them while reading (for they are distracting). Reading what? The org file or resultant PDF? If you're talking about the org file, I don't think there's going

Re: [O] hiding billing information from generated pdf

2012-09-07 Thread Nick Dokos
Mehul Sanghvi wrote: > On Fri, Sep 7, 2012 at 10:10 PM, Nick Dokos wrote: > > > > Tag the 2012 headline :noexport: > > > > Nick > > > Nick, John, > > Thanks for that pointer. If I put a :noexport: tag on that > headline, will I at some later point be able to > export just that hea

Re: [O] hiding billing information from generated pdf

2012-09-07 Thread Charles Philip Chan
Mehul Sanghvi writes: Hello Mehul: > Thanks for that pointer. If I put a :noexport: tag on that headline, > will I at some later point be able to export just that headline to PDF > ? How ? Get rid of the "noexport" tag. Select the subtree with "C-c @" and then use an export command. Cheers,

Re: [O] hiding billing information from generated pdf

2012-09-07 Thread Mehul Sanghvi
On Fri, Sep 7, 2012 at 10:10 PM, Nick Dokos wrote: > > Tag the 2012 headline :noexport: > > Nick Nick, John, Thanks for that pointer. If I put a :noexport: tag on that headline, will I at some later point be able to export just that headline to PDF ? How ? cheers, mehul

Re: [O] hiding billing information from generated pdf

2012-09-07 Thread Nick Dokos
Mehul Sanghvi wrote: > I have an org file in which I will be keeping tracking of time spent > on that particular document. > This will help me with billing the client. What I do not want to do > is to have that time tracking > information be a part of the generated PDF file. How do I do > somet

Re: [O] Hiding specific TODO-keywords in Shift-Tab-expansion in org-mode buffer

2012-08-19 Thread Bastien
Hi Arthur, Arthur Andersen writes: > I have a TODO keyword called `SOMEDAY`.  > When I use Shift-Tab, is there an easy way to add one level, to have > a rotation like OVERVIEW, CONTENTS without SOMEDAY tasks, CONTENS, > VIEW ALL? No, there is no such thing. -- Bastien

Re: [O] Hiding the braces when org-pretty-entities is enabled

2012-05-05 Thread Bastien
Hi Mark, "Mark E. Shoulson" writes: > It's a very tiny patch, but one that probably should have happened > before. Yes. Surprised nobody reported this already. I applied the patch, but I had to add a ChangeLog myself. Please provide it next time. Thanks! -- Bastien

Re: [O] Hiding

2011-11-10 Thread Neilen Marais
Hi Carsten, Carsten Dominik gmail.com> writes: > > > Hi Neilen, > > this was a pretty good attempt for someone who says he is new to org! Why thanks :) Been a while since I've been able to play with my Org, but thanks for the info. > Scheduling normally has the purpose to make an item sh

Re: [O] Hiding "future" tasks in tags-todo agenda view

2011-10-15 Thread Carsten Dominik
On 14.10.2011, at 22:09, Neilen Marais wrote: > Hi, > > I've recently switched from using tracks (http://getontracks.org/) to > org mode for GTD task management. One neat tracks feature that I am > struggling to reproduce is the "show task from date". If you add a > task with no date set, they s

Re: [O] Hiding "future" tasks in tags-todo agenda view

2011-10-15 Thread Matthew Sauer
Neilen, One of my favorite agenda custom commands is the following: ---snipstart--snip-- (("s" "Startup View" ((agenda "" ((org-agenda-ndays 3) (org-deadline-warning-days 1))) (agenda ""((org-agenda-time-grid nil) (org-deadline-warning-days 365) (org-agenda-ent

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread Nick Dokos
John Tarbotton wrote: > John Tarbotton gmail.com> writes: > > > > Check the value of the following variable (with C-h v > > > org-export-with-drawers ): > > > > Thanks for the reply that would seem to be what I need. In fact it got me > > half way there. I set it nil using the menu. The LOGF

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread Nick Dokos
John Tarbotton wrote: > Nick Dokos hp.com> writes: > > > John Tarbotton gmail.com> wrote: > > > > > Is there a way to prevent the Property and Logfile Drawers from > > > being exported? > > > > Check the value of the following variable (with C-h v > > org-export-with-drawers ): > > > >

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread John Tarbotton
John Tarbotton gmail.com> writes: > > Check the value of the following variable (with C-h v > > org-export-with-drawers ): > > Thanks for the reply that would seem to be what I need. In fact it got me > half way there. I set it nil using the menu. The LOGFILE drawers are gone > but the proper

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread John Tarbotton
Nick Dokos hp.com> writes: > John Tarbotton gmail.com> wrote: > > > Is there a way to prevent the Property and Logfile Drawers from > > being exported? > > Check the value of the following variable (with C-h v > org-export-with-drawers ): > > Nick > Thanks for the reply that would seem

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread Nick Dokos
John Tarbotton wrote: > I have some headings with notes following. I would like to use the settings. > '(org-agenda-add-entry-text-maxlines 5) > '(org-agenda-entry-text-maxlines 5) > The issue I have is that I get all the property drawers cluttering up the > file. > Is there a way to prevent

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread Nick Dokos
John Tarbotton wrote: > I have some headings with notes following. I would like to use the settings. > '(org-agenda-add-entry-text-maxlines 5) > '(org-agenda-entry-text-maxlines 5) > The issue I have is that I get all the property drawers cluttering up the > file. > Is there a way to prevent