alphapapa / org-now

Conveniently show current Org tasks in a sidebar window
60 stars 3 forks source link

Cannot open load file: org-now #1

Closed squiter closed 5 years ago

squiter commented 5 years ago

I'm trying to test your package, but when I run org-now-refile-to-now I got the error: command-execute: Cannot open load file: No such file or directory, org-now.

This is my configuration:

(use-package org-now
  :bind
  ("<f9> a n" . org-now-refile-to-now)
  ("<f9> a b" . org-now-refile-to-previous-location))

I'm using Emacs 26.1 and Org mode 9.1.13.

alphapapa commented 5 years ago

I think that's happening because you didn't put org-now.el in a directory in your load-path.

a13 commented 5 years ago

@squiter

You can try quelpa-use-package instead! It allows you to install packages from any source.

(use-package org-now
  :ensure t
  :quelpa
  (org-now :repo "alphapapa/org-now" :fetcher github))

P.S. don't forget to install quelpa stuff itself

(use-package quelpa)
(use-package quelpa-use-package)
alphapapa commented 5 years ago

Feel free to ask if you need anything else.