[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/bluetooth 42a9487 35/57: moves `hl-line-mode' to end of
From: |
Stefan Monnier |
Subject: |
[elpa] externals/bluetooth 42a9487 35/57: moves `hl-line-mode' to end of init so hl is shown at startup |
Date: |
Thu, 7 Nov 2019 23:28:55 -0500 (EST) |
branch: externals/bluetooth
commit 42a9487640dd4f1268295a0647cb6e39f64f9c3c
Author: Raffael Stocker <address@hidden>
Commit: Raffael Stocker <address@hidden>
moves `hl-line-mode' to end of init so hl is shown at startup
---
bluetooth.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/bluetooth.el b/bluetooth.el
index 650582f..0a0baae 100644
--- a/bluetooth.el
+++ b/bluetooth.el
@@ -222,7 +222,6 @@ devices, as well as setting properties."
(setq tabulated-list-format bluetooth--list-format
tabulated-list-entries #'bluetooth--list-entries
tabulated-list-padding 1)
- (hl-line-mode)
(bluetooth--make-commands)
(define-key bluetooth-mode-map [?i] #'bluetooth-show-device-info)
(tabulated-list-init-header))
@@ -409,8 +408,9 @@ This function only uses the first adapter reported by
Bluez."
(add-hook 'kill-buffer-hook #'bluetooth--cleanup nil t)
(make-local-variable 'mode-line-misc-info)
(cl-pushnew bluetooth--mode-info mode-line-misc-info)
- (setq imenu-create-index-function #'bluetooth--create-imenu-index))
- (tabulated-list-print t)))
+ (setq imenu-create-index-function #'bluetooth--create-imenu-index)
+ (tabulated-list-print t)
+ (hl-line-mode))))
;;; Bluetooth pairing agent code
- [elpa] externals/bluetooth 58dd9f9 12/57: adds 'Maintainer' header and cleans up 'Package-Requires', (continued)
- [elpa] externals/bluetooth 58dd9f9 12/57: adds 'Maintainer' header and cleans up 'Package-Requires', Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 2560749 15/57: adds Imenu integration, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth cc33d79 14/57: corrects project name in LICENSE, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 3743458 17/57: corrects list redisplay when mode is restarted, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 8cac69d 26/57: checks list-id for nil to avoid errors at actions w/o list item, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 4a40ee6 24/57: adds GATT UUIDs and a rudimentary display function, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth f33cb12 02/57: Add LICENSE, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth ee4e582 30/57: fixes compiler warnings about unused parameters, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 3365413 33/57: corrects the major mode check in `list-bluetooth-devices', Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth b47bddc 36/57: switches device-info buffer to special mode, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 42a9487 35/57: moves `hl-line-mode' to end of init so hl is shown at startup,
Stefan Monnier <=
- [elpa] externals/bluetooth 325febd 16/57: adds Imenu integration to Readme feature list, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth f0e5047 18/57: removes unnecessary quotes before lambdas and corrects indentation, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 738347b 19/57: adds TAGS to .gitignore, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 28e9eb2 21/57: wraps @body in progn in bluetooth--maybe-cancel-reject, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 4133a10 13/57: makes mode idempotent, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 3c25a8c 23/57: adds basic service class UUID parsing, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 5219f05 31/57: fixes a compile error and adds customization, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 0108cbd 32/57: uses `read-from-minibuffer' instead of `read-passwd', Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 1ec2997 22/57: uses the correct bus (:system) for the callback methods, Stefan Monnier, 2019/11/07
- [elpa] externals/bluetooth 83344c8 20/57: cleans up display code, Stefan Monnier, 2019/11/07