[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/breadcrumb cda39e32f0 08/18: Use longhand symbol forms
From: |
ELPA Syncer |
Subject: |
[elpa] externals/breadcrumb cda39e32f0 08/18: Use longhand symbol forms for autoloaded functions |
Date: |
Tue, 5 Sep 2023 06:57:42 -0400 (EDT) |
branch: externals/breadcrumb
commit cda39e32f0d61de3ee471ecc5b1b1aa91214ab52
Author: João Távora <joaotavora@gmail.com>
Commit: João Távora <joaotavora@gmail.com>
Use longhand symbol forms for autoloaded functions
* breadcrumb.el (breadcrumb-imenu-crumbs)
(breadcrumb-project-crumbs)
(breadcrumb-local-mode)
(breadcrumb-mode)
(breadcrumb-jump): Use longhand.
---
breadcrumb.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/breadcrumb.el b/breadcrumb.el
index 9e308a27da..6ed6e810b3 100644
--- a/breadcrumb.el
+++ b/breadcrumb.el
@@ -222,7 +222,7 @@ These structures don't have a `breadcrumb-region' property
on."
"Separator for `breadcrumb-project-crumbs'." :type 'string)
;;;###autoload
-(defun bc-imenu-crumbs ()
+(defun breadcrumb-imenu-crumbs ()
"Describe point inside the Imenu tree of current file."
(when-let ((alist (bc--ipath-alist)))
(bc--summarize
@@ -247,7 +247,7 @@ These structures don't have a `breadcrumb-region' property
on."
(defvar-local bc--cached-project-crumbs nil)
;;;###autoload
-(cl-defun bc-project-crumbs ()
+(cl-defun breadcrumb-project-crumbs ()
"Describing the current file inside project."
(or bc--cached-project-crumbs
(setq bc--cached-project-crumbs
@@ -270,7 +270,7 @@ These structures don't have a `breadcrumb-region' property
on."
(mapconcat #'identity x " : ")))
;;;###autoload
-(define-minor-mode bc-local-mode
+(define-minor-mode breadcrumb-local-mode
"Header lines with breadcrumbs."
:init-value nil
(if bc-local-mode (add-to-list 'header-line-format '(:eval (bc--header-line)))
@@ -283,11 +283,11 @@ These structures don't have a `breadcrumb-region'
property on."
(bc-local-mode 1)))
;;;###autoload
-(define-globalized-minor-mode bc-mode bc-local-mode
+(define-globalized-minor-mode breadcrumb-mode bc-local-mode
bc--turn-on-local-mode-on-behalf-of-global-mode)
;;;###autoload
-(defun bc-jump ()
+(defun breadcrumb-jump ()
"Like \\[execute-extended-command] `imenu', but breadcrumb-powered."
(interactive)
(let (cands choice)
- [elpa] externals/breadcrumb 07b8e96ed4 09/18: Fix #7: Select window before jumping around with breadcrumbs, (continued)
- [elpa] externals/breadcrumb 07b8e96ed4 09/18: Fix #7: Select window before jumping around with breadcrumbs, ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb 2369e5b609 03/18: * breadcrumb.el: Fix todos add another one, ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb df9e2c3678 10/18: Fix case when bc--ipath-alist results in something useless, ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb 1cb229b87e 14/18: Clean up before ELPA submission, ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb 9205ef62c8 15/18: Fix indentation in two places, ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb 20bfa7407b 16/18: * breadcrumb.el (bc--format-ipath-node): Fix bug, ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb a44bb5ced2 17/18: Compute length of breadcrumbs dynamically by default, ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb e9358a641a 13/18: Work some more in the mode-line/header-line mouse interaction, ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb 995e1638d2 18/18: * .elpaignore: Add a basic file (#15), ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb 64ae52c534 01/18: Initial commit, ELPA Syncer, 2023/09/05
- [elpa] externals/breadcrumb cda39e32f0 08/18: Use longhand symbol forms for autoloaded functions,
ELPA Syncer <=
- [elpa] externals/breadcrumb 4dd49220fd 12/18: Fancy it up with some faces, ELPA Syncer, 2023/09/05