[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/cus-abbrev 1fe96883a9 17/17: Make sure to use the right
From: |
ELPA Syncer |
Subject: |
[elpa] externals/cus-abbrev 1fe96883a9 17/17: Make sure to use the right keymap in editable widgets |
Date: |
Thu, 6 Mar 2025 15:58:03 -0500 (EST) |
branch: externals/cus-abbrev
commit 1fe96883a9cfd3c2cc6381049d95e6330907f140
Author: Mauro Aranda <maurooaranda@gmail.com>
Commit: Mauro Aranda <maurooaranda@gmail.com>
Make sure to use the right keymap in editable widgets
* cus-abbrev.el (customize-all-abbrevs, customize-abbrevs): Evaluate
the keymap property.
---
cus-abbrev.el | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/cus-abbrev.el b/cus-abbrev.el
index abe2e9c766..4e7a51b5fc 100644
--- a/cus-abbrev.el
+++ b/cus-abbrev.el
@@ -271,20 +271,20 @@ this session."
:tag (symbol-name table-name)
:sample-face 'highlight
:custom-abbrev-table table-name
- '(list :tag "Abbrev"
+ `(list :tag "Abbrev"
(string :tag "Abbreviation"
- :keymap custom-abbrev-field-map)
+ :keymap ,custom-abbrev-field-map)
(string :tag "Expansion"
- :keymap custom-abbrev-field-map)
+ :keymap ,custom-abbrev-field-map)
(choice
:tag "Hook"
(const :tag "None" nil)
- (function :keymap custom-abbrev-field-map))
+ (function :keymap ,custom-abbrev-field-map))
(choice
:tag "Enable function"
(const :tag "None" nil)
(function :value always
- :keymap custom-abbrev-field-map))
+ :keymap ,custom-abbrev-field-map))
(boolean :tag "Case fixed"))))
(push abbrev-widget custom-abbrev-widgets)
(widget-put visibility :widget abbrev-widget)))
@@ -335,20 +335,20 @@ the abbrev table to customize. If nil, it defaults to
`global-abbrev-table'."
(list
(widget-create 'custom-abbrev :value abbrevs
:custom-abbrev-table table-name
- '(list :tag "Abbrev"
+ `(list :tag "Abbrev"
(string :tag "Abbreviation"
- :keymap custom-abbrev-field-map)
+ :keymap ,custom-abbrev-field-map)
(string :tag "Expansion"
- :keymap custom-abbrev-field-map)
+ :keymap ,custom-abbrev-field-map)
(choice
:tag "Hook"
(const :tag "None" nil)
- (function :keymap custom-abbrev-field-map))
+ (function :keymap ,custom-abbrev-field-map))
(choice
:tag "Enable function"
(const :tag "None" nil)
(function :value always
- :keymap custom-abbrev-field-map))
+ :keymap ,custom-abbrev-field-map))
(boolean :tag "Case fixed"))))))
(custom-abbrev--prepare-buffer-2))
- [elpa] externals/cus-abbrev 5295ae411c 12/17: Improvements to menu-bar and tool-bar support, (continued)
- [elpa] externals/cus-abbrev 5295ae411c 12/17: Improvements to menu-bar and tool-bar support, ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev f85a7fd48e 14/17: ; Docstring fixes and Package-Requires fixes, ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev f62901f11c 08/17: ; Add missing docstring to custom-abbrev-toggle-hide-abbrev-table, ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev 0a71a63f26 10/17: ; Add comments and move stuff around., ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev 33c0f6e09e 15/17: Make cus-abbrev commands work in fields too, ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev ee54af6ec8 04/17: Improve link in Customize Abbrevs buffer, ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev 89cd064b54 03/17: Improve prompt in customize-abbrevs, ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev e0553e3580 05/17: ; Add some comments to customize-abbrevs, ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev 0bb19071e0 06/17: ; Improve widget tags in customize-all-abbrevs, ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev c75b581e3f 16/17: Prepare the package for GNU ELPA, ELPA Syncer, 2025/03/06
- [elpa] externals/cus-abbrev 1fe96883a9 17/17: Make sure to use the right keymap in editable widgets,
ELPA Syncer <=
- [elpa] externals/cus-abbrev d598728a1d 09/17: Add missing widget-setup call, ELPA Syncer, 2025/03/06