summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Hoch <julian.hoch@hoch-software.ch>2024-09-28 12:07:35 +0200
committerYoumu <condy0919@gmail.com>2024-10-22 08:58:12 +0800
commit01d791dd63c723c82d5d076570c015e77d3b5680 (patch)
treeadaad0766498ceea4251840674a1beecaf4d07bd
parent625249aa6d46d5277f7abb8fa019d3291a2ed9b3 (diff)
fixed declarations
-rw-r--r--modes/org/evil-collection-org.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/modes/org/evil-collection-org.el b/modes/org/evil-collection-org.el
index c549782..5973bb2 100644
--- a/modes/org/evil-collection-org.el
+++ b/modes/org/evil-collection-org.el
@@ -24,12 +24,14 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
-;; Evil basic bindings for org-mode. It's NOT intended to supersede
+;; Evil basic bindings for org-mode. It's NOT intended to supersede
;; `evil-org-mode'.
;;
;;; Code:
(require 'evil-collection)
+(require 'org nil t)
+
(defconst evil-collection-org-maps '(org-mode-map
org-capture-mode-map
@@ -52,6 +54,7 @@
(declare-function org-calendar-backward-month "org")
(declare-function org-calendar-forward-year "org")
(declare-function org-calendar-backward-year "org")
+(declare-function org-defkey "org")
;;;###autoload
(defun evil-collection-org-setup ()