emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Migrating to org-mode - question on lists
@ 2017-05-11 22:52 Vladimir Panteleev
  2017-05-14 19:14 ` John Kitchin
  0 siblings, 1 reply; 3+ messages in thread
From: Vladimir Panteleev @ 2017-05-11 22:52 UTC (permalink / raw)
  To: emacs-orgmode

Hello!

A lot of thanks to all org-mode developers for their work.

I've started using Emacs and org-mode last year, and have been steadily 
trying to migrate all of my notes from plain text to org-mode.

I have run into some difficulties with porting over my project notes and 
to-do lists. For example, my to-do lists generally look something like this:

- top-level task
   - something I haven't done yet
   + something I've already done
     - a minor improvement that I haven't done yet
   x something I decided isn't worth doing
   ? something that needs further clarification

My software design notes look similar:

- name of the component
   - one idea of how to implement it
   x an idea that turned out impractical/impossible/etc.
     - rationale
   + the idea I went with
     - rationale

Real example (notes for a serialization library): 
https://dump.thecybershadow.net/ec9518b75f1001467972fb7deee058e9/notes.txt

Although this mostly corresponds to using org-mode lists with 
checkboxes, the biggest obstacle I encountered is that there is no 
equivalent for the 'x' bullet. I've tried to simply mark off those items 
as checked checkboxes (and indicate the information some other way), 
however I've invariably found this as a regression in legibility.

So, my questions are:

- I've looked through the documentation (and source code, a bit), and 
though it doesn't seem like it, have I missed some org-mode 
functionality that would help this use case?

- Would it make sense to teach org-mode to recognize another checkbox 
state (e.g. [!])?

- Perhaps it's more practical to instead get org-mode to work with the 
syntax I already use. This would mean:
   1. Being able to customize which characters org-mode considers as 
list bullets
   2. Preserve each list item's individual bullet when reformatting lists
   3. Optionally, allow recognizing certain list bullet characters as 
counting towards statistic cookies (as either completed or not).

- Would the above changes be something I could perform myself with a 
reasonable amount of effort? And, would any of them make sense for 
inclusion into org-mode as additional options? (IMHO, a customizable 
alist for recognized list bullets and their effect or statistic cookies 
would be very nice!)

Thanks for reading this far!

-- 
Best regards,
  Vladimir

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Migrating to org-mode - question on lists
  2017-05-11 22:52 Migrating to org-mode - question on lists Vladimir Panteleev
@ 2017-05-14 19:14 ` John Kitchin
  2017-05-15  3:58   ` Puneeth Chaganti
  0 siblings, 1 reply; 3+ messages in thread
From: John Kitchin @ 2017-05-14 19:14 UTC (permalink / raw)
  To: Vladimir Panteleev; +Cc: emacs-orgmode@gnu.org

[-- Attachment #1: Type: text/plain, Size: 3222 bytes --]

This sounds like what TODO keywords are for. For example:

You can easily change the TODO state with shift-left/right on each heading.

#+TODO: TODO CLARIFY | CANCELLED DONE

* top-level task
** TODO something I haven't done yet
*** DONE something I've already done
    CLOSED: [2017-05-14 Sun 15:12]
**** TODO a minor improvement that I haven't done yet
* CANCELLED something I decided isn't worth doing
  CLOSED: [2017-05-14 Sun 15:13]
* CLARIFY something that needs further clarification

John

-----------------------------------
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu


On Thu, May 11, 2017 at 6:52 PM, Vladimir Panteleev <
thecybershadow@gmail.com> wrote:

> Hello!
>
> A lot of thanks to all org-mode developers for their work.
>
> I've started using Emacs and org-mode last year, and have been steadily
> trying to migrate all of my notes from plain text to org-mode.
>
> I have run into some difficulties with porting over my project notes and
> to-do lists. For example, my to-do lists generally look something like this:
>
> - top-level task
>   - something I haven't done yet
>   + something I've already done
>     - a minor improvement that I haven't done yet
>   x something I decided isn't worth doing
>   ? something that needs further clarification
>
> My software design notes look similar:
>
> - name of the component
>   - one idea of how to implement it
>   x an idea that turned out impractical/impossible/etc.
>     - rationale
>   + the idea I went with
>     - rationale
>
> Real example (notes for a serialization library):
> https://dump.thecybershadow.net/ec9518b75f1001467972fb7deee058e9/notes.txt
>
> Although this mostly corresponds to using org-mode lists with checkboxes,
> the biggest obstacle I encountered is that there is no equivalent for the
> 'x' bullet. I've tried to simply mark off those items as checked checkboxes
> (and indicate the information some other way), however I've invariably
> found this as a regression in legibility.
>
> So, my questions are:
>
> - I've looked through the documentation (and source code, a bit), and
> though it doesn't seem like it, have I missed some org-mode functionality
> that would help this use case?
>
> - Would it make sense to teach org-mode to recognize another checkbox
> state (e.g. [!])?
>
> - Perhaps it's more practical to instead get org-mode to work with the
> syntax I already use. This would mean:
>   1. Being able to customize which characters org-mode considers as list
> bullets
>   2. Preserve each list item's individual bullet when reformatting lists
>   3. Optionally, allow recognizing certain list bullet characters as
> counting towards statistic cookies (as either completed or not).
>
> - Would the above changes be something I could perform myself with a
> reasonable amount of effort? And, would any of them make sense for
> inclusion into org-mode as additional options? (IMHO, a customizable alist
> for recognized list bullets and their effect or statistic cookies would be
> very nice!)
>
> Thanks for reading this far!
>
> --
> Best regards,
>  Vladimir
>
>

[-- Attachment #2: Type: text/html, Size: 4351 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Migrating to org-mode - question on lists
  2017-05-14 19:14 ` John Kitchin
@ 2017-05-15  3:58   ` Puneeth Chaganti
  0 siblings, 0 replies; 3+ messages in thread
From: Puneeth Chaganti @ 2017-05-15  3:58 UTC (permalink / raw)
  To: John Kitchin; +Cc: Vladimir Panteleev, emacs-orgmode@gnu.org

On Mon, May 15, 2017 at 12:44 AM, John Kitchin <jkitchin@andrew.cmu.edu> wrote:
> This sounds like what TODO keywords are for. For example:
>
> You can easily change the TODO state with shift-left/right on each heading.
>
> #+TODO: TODO CLARIFY | CANCELLED DONE

To make it *look* more similar to your previous workflow, you could
use Unicode symbols as TODO states.
http://www.draketo.de/english/emacs/todo-letters

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-05-15  3:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-11 22:52 Migrating to org-mode - question on lists Vladimir Panteleev
2017-05-14 19:14 ` John Kitchin
2017-05-15  3:58   ` Puneeth Chaganti

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).