myuhe / org-gcal.el

Org sync with Google Calendar
450 stars 113 forks source link

no org-gcal methods available after installation #92

Closed swk-bsf closed 7 years ago

swk-bsf commented 7 years ago

I installed and configured org-gcal through use-package, which was successful. Here's my setup for org related stuff:


 (use-package org
  :config
  (setq org-directory "~/Dropbox/org")
  (setq org-mobile-inbox-for-pull "~/Dropbox/org/inbox.org")
  (setq org-mobile-directory "~/Dropbox/Apps/MobileOrg")
  (setq org-mobile-files '("~/Dropbox/org"))
  (setq org-default-notes-file (concat org-directory "/notes.org"))
  (setq org-log-done t)
  (setq org-agenda-files (list "~/Dropbox/org/"))
  (setq org-tag-alist '(// etc...))
  (setq org-agenda-inhibit-startup nil)
  (setq org-export-backends '(md))
  :bind
  (("C-c l" . org-store-link)
   ("C-c a" . org-agenda)
   ("C-c c" . org-capture)
   ))

;; (use-package org-gcal
;;   :ensure t
;;   :config
;;   (setq org-gcal-client-id "<CLIENT ID>"
;;         org-gcal-client-secret "<CLIENT SECRET"
;;         org-gcal-file-alist '(("<MY EMAIL>" .  "~/Dropbox/org/schedule.org"))
;;         )))

;; (use-package calfw
;;   :ensure t
;;   :init
;;   (require 'calfw-org))

This all worked wonderfully - but on starting up emacs this morning, it complained that org-gcal-fetch was not a command. I've removed the configuration above, deleted the elpa directory and reinstalled manually via package-list-packages - but still no org-gcal-* commands. Am I missing something in the configuration?

swk-bsf commented 7 years ago

I think the error was caused by some erroneous keybinding elsewhere in my config