Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add evil-mode note in README #51

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- [[#why][Why I wrote this package]]
- [[#installation][Installation]]
- [[#usage][Usage]]
- [[#note-for-evil-mode-users][Note for evil-mode users]]
- [[#customization][Customization]]
- [[#todos][TODOs]]
- [[#donations][Donations]]
Expand Down Expand Up @@ -160,6 +161,14 @@ If you want to add a new task, press ~+~ (M-x org-timeblock-new-task).
Almost all commands with the same bindings are available in
~org-timeblock-list~.

** Note for evil-mode users
If you have evil mode enabled, org-timeblock keybinds don't work in the timeblock and timeblock-list buffers. Put this in your init.el to disable evil for these buffers:

#+begin_src elisp
(add-hook 'org-timeblock-mode-hook 'turn-off-evil-mode)
(add-hook 'org-timeblock-list-mode-hook 'turn-off-evil-mode)
#+end_src

* Customization
:PROPERTIES:
:CUSTOM_ID: customization
Expand Down