forked from jedthehumanoid/taskpaper.el
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
081afc9
commit ab5998c
Showing
1 changed file
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
Taskpaper major mode for emacs. | ||
Simple Taskpaper major mode for emacs. | ||
|
||
Put taskpaper.el file somewhere (for instance in ~/emacs.d/taskpaper.el) | ||
In .emacs, add: | ||
(load-file "~/taskpaper.el/taskpaper.el") | ||
(require 'taskpaper-mode) | ||
Load taskpaper-mode when you are in a buffer editing a taskpaper textfile | ||
Put taskpaper.el file somewhere (for instance in ~/emacs.d/taskpaper.el) | ||
In .emacs, add: | ||
(load-file "~/taskpaper.el/taskpaper.el") | ||
(require 'taskpaper-mode) | ||
|
||
M-x taskpaper-mode to activate, or in .emacs: | ||
(add-to-list 'auto-mode-alist '("\\.taskpaper\\'" . taskpaper-mode)) | ||
for files with .taskpaper extension | ||
|
||
Keyboard shortcuts: | ||
|
||
S-return Focus project under cursor | ||
S-backspace Back to all projects | ||
C-c l Chose project from list | ||
C-c d Toggle done state |