diff --git a/init.el b/init.el index a41f4c5..b90ac98 100644 --- a/init.el +++ b/init.el @@ -59,7 +59,7 @@ ;; Custom functions and commands (load "gpolonkai/utilities") (load "gpolonkai/windows") -(load "gpolonkai/org-utils") +(load "gpolonkai/gp-org-utils") (load "gpolonkai/text-utils") (load "gpolonkai/nav-utils") (load "gpolonkai/file-utils") diff --git a/lisp/gpolonkai/org-utils.el b/lisp/gpolonkai/gp-org-utils.el similarity index 98% rename from lisp/gpolonkai/org-utils.el rename to lisp/gpolonkai/gp-org-utils.el index 7a6c296..611e47a 100644 --- a/lisp/gpolonkai/org-utils.el +++ b/lisp/gpolonkai/gp-org-utils.el @@ -1,4 +1,4 @@ -;;; gpolonkai/org-utils.el --- Org-mode related functions +;;; gpolonkai/gp-org-utils.el --- Org-mode related functions ;;; ;;; SPDX-License-Identifier: GPL-3.0-or-later ;;; Copyright © 2025 Gergely Polonkai @@ -170,6 +170,6 @@ F is the file the capture is coming from." (func-name (which-function))) (ha/org-capture-fileref-snippet f "src" org-src-mode func-name)))) -(provide 'gpolonkai/org-utils) +(provide 'gpolonkai/gp-org-utils) ;;; org-utils.el ends here