Where I am in terms of Emacs

Posted: - Modified: | emacs

Now that I have more control over the tools I use, I use Emacs for more of my planning. I’m back to using Org Mode to manage my task list (hooray!), and it has grown by leaps and bounds. I’m looking forward to getting even deeper into it.

Here’s where I am in terms of Emacs

I’m still on Microsoft Windows 7 because I like some of the drawing programs that I can’t get to run on Linux, so my Emacs experience is less than ideal but still okay. It’s one of the first applications I start after a reboot, and I keep Emacs open almost all the time. I’ve pinned Emacs to my task bar (right-click on the icon and pin it) and moved it to the first slot, so Win+1 gets me back to Emacs.

When I’m at my client site, I use the laptop they provided to do work, and I use a wiki page to manage and publish my task list. I use Emacs during the early morning, the evening, weekends, and personal days.

I use org-capture to quickly capture tasks and notes. Here are some of the templates I use:

(setq org-capture-templates
      '(("t" "Tasks" entry
         (file+headline "~/personal/organizer.org" "Tasks")
         "* TODO %?
SCHEDULED: %^t")
        ("q" "Quick task" entry
         (file+headline "~/personal/organizer.org" "Tasks")
         "* TODO %^{Task}
SCHEDULED: %^t"
         :immediate-finish t)
        ;; other entries go here
        ("r" "Notes" entry
         (file+datetree "~/personal/organizer.org" "Inbox")
         "* %?\n\n%i\n"
         :clock-in :clock-resume)))

The Org agenda helps me check what I need to do. I have it set up to display the time grid so that I get a relative sense of where things are. I use a 2-day view so that tomorrow is in my peripheral vision.

Here are some things I want to explore:

  • Improve the integration of Org and my self-tracking system at quantifiedawesome.com
  • Use Org for blog posts with images (I don’t quite trust it yet, although I’ve used it before)
  • Take notes in Org Contacts instead of stuffing notes into BBDB
  • Read the Org Mode mailing list and Planet Emacsen more often to get inspiration, maybe contribute patches
  • Get MobileOrg working for me smoothly on my Android – need to get the hang of the workflow
  • Use Org’s literate programming support to annotate my Emacs configuration
You can view 7 comments or e-mail me at sacha@sachachua.com.

7 comments

I start Emacs using runemacs.exe to get rid of the command window that also opens up. But then I cannot pin it properly. Or, I can pin it, but when I start Emacs again with the pinned icon, I get a new icon to the right. How do you do it?

This workaround got it sorted out for me:

Double click runemacs.exe in the explorer, pin it to the taskbar, then right click on the icon, change the target from emacs.exe to runemacs.exe, click the icon, everything work fine.


http://lists.gnu.org/archive/html/bug-gnu-emacs/2011-04/msg00029.html

Ah, of course :) Thanks!

However when I right click the icon in the taskbar there is no alternative to change the target. Strange...

Sorry. Got it now. I had to right click the smaller emacs icon that appear on the little menu when I right click the larger icon in the task bar. There I can select Properties.

Thanks again :)

Roger Mateer

2013-05-31T06:59:31Z

FYI: There is a port of Emacs to Android (search in the Google Play Store). But it requires you to use Hacker's Keyboard, which doesn't work too well with small touch screen devices. So, if you have a big enough Android device, you can use full blown org on it, and won't have to worry about MobileOrg...

That's interesting! =) Thanks!