From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Logan Lee <10464307@uts.edu.au> Newsgroups: gmane.emacs.help Subject: Todo-mode HOWTO v0.1 Date: Tue, 02 Jan 2007 20:03:51 +1100 Message-ID: <87hcv9yf48.fsf@laptop.at.pyenos> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1167731169 3200 80.91.229.12 (2 Jan 2007 09:46:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 2 Jan 2007 09:46:09 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jan 02 10:46:06 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1H1gDe-0005Vx-A4 for geh-help-gnu-emacs@m.gmane.org; Tue, 02 Jan 2007 10:46:06 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H1gDd-0008Vt-KT for geh-help-gnu-emacs@m.gmane.org; Tue, 02 Jan 2007 04:46:05 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!headwall.stanford.edu!newsfeed.news2me.com!nx02.iad01.newshosting.com!newshosting.com!novia!news1.optus.net.au!optus!newsfeeder.syd.optusnet.com.au!news.optusnet.com.au!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.4 (gnu/linux) Cancel-Lock: sha1:xM/6b2kWsV04IZ7UzQBXdPKG+OI= Original-Lines: 43 Original-NNTP-Posting-Host: 211.30.187.144 Original-X-Trace: 1167728629 5744 211.30.187.144 Original-Xref: shelby.stanford.edu gnu.emacs.help:144494 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:40098 Archived-At: Todo-mode HOWTO v0.1 Logan Lee 10464307@uts.edu.au _____________________________ (1) To enter todo major mode, M-x todo-mode. (2) Let's jump to the default Todo category. Press 'j' then select 'Todo'. (3) Let's insert a dummy task. Press 'i' then enter description then category that it belongs to. In this case, there is only one category (ie. Todo) so enter 'Todo' as its category. (4) Let's insert another dummy task in order to demonstrate raising or lowering priority of a task or filing a task once it's done. Do this by pressing 'i' again and following the rest of step 3. (5) Now, try pressing 'r' to move the task at cursor up by one line or 'l' to lower it by one line. The line position of a task represents its respective priority. (6) Now, try pressing 'f' at a task to file it. Filing a task means you add it to a file called '.todo-done' located at your home directory. You will see on your screen that the filed task has disappeared from view. (7) Lastly, let's try adding a new category. 'M-x todo-add-category'. First, you will be directed to the source of '.todo-do' file. Don't panic because of unknown syntax shown to your screen. Proceed to step 8 to learn more about the syntax of .todo-do file. (8) The format of .todo-do file: ;; This specifies that "Todo" and "New Category That You Have Added" are ;;+categories of todo-mode. -*- mode: todo; todo-categories: ("Todo","New Category That You Have Added"); -*- */* --------------------------------------------------------------------------- ;; Lists tasks under Todo */* --- Todo */* 2007-01-02 19:12 Dummy Task2 ;; These are dummy tasks from steps 3,4. */* 2007-01-02 19 11 Dummy Task1 ;;+Task2 is higher priority than Task1. --- End ;; Lists tasks under New Category That You Have Added */* --- New Category That You Have Added ;; As you can see there are no tasks belonging to "New Category That You Have Added" ;) --- End (9) There are other commands and associated abbreviations which can be found in Todo item at menu bar. Hopefully, this has been helpful for some people ;)