[O] Using checkboxes

2014-02-12 Thread jone...@teksavvy.com
Hello,

  I'm using org-8.2.5h that I have unpacked
in /usr/share/emacs/site-lisp and then ran make and make install.  I
have a test .org file which is made of:

- [ ] test1
 - [ ] test2

Positionning the curosr on the first line and doing C-c C-c reports
that C-c C-c is undefined.  Also, the sides of the boxes are in the
same font as the rest of the text.

What coudl be worng ?  This seems a very basic feature.

Thanks.



Re: [O] Using checkboxes (UPDATE)

2014-02-12 Thread jone...@teksavvy.com
Le mercredi, 12 février 2014 09:30:11 -0500,
"jone...@teksavvy.com"  a écrit :

> Positionning the curosr on the first line and doing C-c C-c reports
> that C-c C-c is undefined.  Also, the sides of the boxes are in the
> same font as the rest of the text.

OK, got it.  Reading the README that points to the Installation web
page.  Added:

(add-to-list 'load-path "/usr/share/emacs/site-lisp/org-8.2.5h/lisp")
(add-to-list 'load-path
"/usr/share/emacs/site-lisp/org-8.2.5h/contrib/lisp" t)

And now it works fine !




[O] Using checkboxes: nested lists

2014-02-12 Thread jone...@teksavvy.com
Hello again,

  Is there a way to have nested lists.  The example below would have
maintest to be all marked only when all test4 items would be checked.
This is not the case now as maintest is checked 2/2 as if test4 was a
different item not at the same identation level below maintest.  

- [2/2] maintest
  - [X] test2
  - [X] test3
  - [1/2] test4
- [X] test4a
- [ ] test4b

Thanks.




Re: [O] Using checkboxes: nested lists

2014-02-13 Thread jone...@teksavvy.com
On Thu, 13 Feb 2014 11:31:56 -0500,
Charles Millar  wrote :

> This may be a solution for your purposes
> 
> - [2/3] maintest
>- [X] test2
>- [X] test3
>- [ ] test4 [1/2]
>  - [X] test4a
>  - [  ] test4b

This works nicely - thanks.



[O] Selected expansion

2014-03-01 Thread jone...@teksavvy.com
Hello,

  Each of the ** bullets below have quite a few lines of text.

* Topics
** topic1
** topic2
** topic3
* Notices
** notice1
** notice2
** notice3
* Results
** result1
** result2
** result3

From the following display, is it possible to fully expand only the
Notices in one command ?  I am using Shift-TAB but it expands all
sections at once. TAB by itself will not exapnd all under Notices (when
the cursor is positionned at Notices).  TAB will work for expanding
each individual notice[n] one after the other moving the cursor around,
but I'm looking for expanding all of them using only one command.

* Topics
* Notices
* Results

Thanks.