To Think About . . .

It’s not whether you win or lose, it’s how you place the blame. Oscar Wilde

 

 

 

My Latest Book

Product Details

Also available on Amazon.com, Amazon.fr, and other Amazons and bookshops worldwide! 

Search This Site
Log-in
Latest Comments
My Other Books

Product Details

Product Details

Product Details

The Pathway to Awesomeness

Click to order other recommended books.

Find Us on Facebook Badge

Discussion Forum > Emacs

Hi all! I'm a student studying programming, so for long i was eager to implement Autofocus in digital. So this is were i'm currently at.

First of all: you may not care about this all, if you do not rely on a computer much, or not an Emacs text editor user!

I'm using a text editor called Emacs, which is powerful all-in-one tool, but a bit hard to learn. Though it is very helpful when you've learned all keystrokes and tricky stuff, it may not be helpful for those, who do not rely on computer much. The text editor itself is not enough, so there is a "mode" (plugin, addon) for it called Planner. Now i'll start describing how to make all this work on your computer.

Let's say you use GNU/Linux, you've installed Emacs and Planner using either a package manager or manually. Create a file called .emacs in your home directory and enter the following:

(setq planner-project "autofocus")
(setq muse-project-alist
'(("autofocus"
("~/autofocus" ;the folder, where you store Autofocus related files
:default "index" ;default file
:major-mode planner-mode
:visit-link planner-visit-link))))
(require 'planner)
; Extra keystrokes for deleting, postponing etc. tasks
(planner-install-extra-task-keybindings)
; Autofocus does not use date and time, so turn off using day pages
(setq planner-use-day-pages nil)
; Autofocus adds tasks at the end, so do we
(setq planner-add-task-at-end-flag t)
; This pops up planner whenever we start Emacs
(plan)

Now in Emacs what you do is you doing M-x (which is pressing Alt, holding it, and pressing 'x'), and then entering "plan" without quotes. Now you see "*Tasks *Notes" or something like that. To add tasks enter C-c C-t C-t (which is pressing 'c', while holding Ctrl and so on). To mark the task done enter C-c C-x. Now do exactly what it is in your favourite Autofocus system. Besides that Planner can do deadlines, regular tasks, notes, links to webpages, wiki-like information manager and much more, but this is beyond the scope of Autofocus. You can read more by entering 'M-x info' and then in info-mode 'm planner', or by reading http://www.emacswiki.org/emacs/PlannerMode

This method is not complete, because i didn't found how to re-enter the same task, or how to break task list into blocks/pages of exact amount of tasks. I will work on that. Ask, if something is not clear

By the way, you can install Emacs on Windows and Mac too.

Somebody called Charles already mentioned using Emacs with org-mode in two threads:
http://www.markforster.net/forum/post/735044
http://www.markforster.net/forum/post/687996
November 27, 2010 at 19:11 | Registered Commentersindikat
Have you considered using Org in Outline mode? It also picks up where the remember package left off. Off the bat, the shortcuts are far more stripped down.
October 3, 2011 at 18:50 | Registered CommenterJames Levine