[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#69097: [PATCH] Add 'kill-region-or-word' command
From: |
Robert Pluim |
Subject: |
bug#69097: [PATCH] Add 'kill-region-or-word' command |
Date: |
Tue, 03 Sep 2024 16:55:29 +0200 |
>>>>> On Tue, 03 Sep 2024 17:27:59 +0300, Eli Zaretskii <eliz@gnu.org> said:
>> >> + "Behaviour when `kill-region' is invoked without an active region.
>> >> +If set to nil (default), then an error occurs and nothing is killed.
If
>> >> +set to `emacs-word', then kill a the last word as defined by the
current
>> >> +major mode. If set to `unix-word', then kill the last word in the
style
>> >> +of a shell like Bash, disregarding the major mode."
>> >> + :type '(choice (const :tag "Kill a word like `backward-kill-word'"
emacs-word)
>> >> + (const :tag "Kill a word like Bash would" unix-word)
>> >> + (const :tag "Do not kill anything" nil))
>> >> + :group 'killing)
>>
Eli> :version tag is missing.
>>
>> Is it worth allowing a user-specified function?
Eli> I don't understand what you are asking, sorry. Allow a function where
Eli> and to do what?
The current proposal offers three fixed behaviours. Iʼm wondering if
it makes sense for the user option to be allowed to be a user-defined
function, in case someone wants a different behaviour, ie
+(defcustom kill-word-if-no-region nil
+ "Behaviour when `kill-region' is invoked without an active region.
+If set to nil (default), then an error occurs and nothing is killed. If
+set to `emacs-word', then kill a the last word as defined by the current
+major mode. If set to `unix-word', then kill the last word in the style
+of a shell like Bash, disregarding the major mode. If set to a
+function, call that function."
+ :type '(choice (const :tag "Kill a word like `backward-kill-word'"
emacs-word)
+ (const :tag "Kill a word like Bash would" unix-word)
+ (const :tag "Do not kill anything" nil)
+ (symbol :tag "User function")
+ :group 'killing)
Robert
--
- bug#69097: [PATCH] Add 'kill-region-or-word' command, (continued)
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Stefan Kangas, 2024/09/02
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Philip Kaludercic, 2024/09/02
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Sean Whitton, 2024/09/02
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Philip Kaludercic, 2024/09/02
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Sean Whitton, 2024/09/02
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Philip Kaludercic, 2024/09/02
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Eli Zaretskii, 2024/09/03
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Robert Pluim, 2024/09/03
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Eli Zaretskii, 2024/09/03
- bug#69097: [PATCH] Add 'kill-region-or-word' command,
Robert Pluim <=
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Eli Zaretskii, 2024/09/03
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Philip Kaludercic, 2024/09/03
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Robert Pluim, 2024/09/03
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Eli Zaretskii, 2024/09/04
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Sean Whitton, 2024/09/04
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Eli Zaretskii, 2024/09/04
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Philip Kaludercic, 2024/09/05
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Eli Zaretskii, 2024/09/05
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Philip Kaludercic, 2024/09/05
- bug#69097: [PATCH] Add 'kill-region-or-word' command, Eli Zaretskii, 2024/09/05