From 899481b730c37d959d466846299cc99f5f7c37fb Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Tue, 1 Nov 2005 23:21:39 +0000 Subject: [PATCH] (menu-bar-options-menu): Show "Shift Movement (CUA)" item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil. --- lisp/menu-bar.el | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index f32088d1b88..902b48e0a50 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -1003,7 +1003,16 @@ mail status in mode line")) (define-key menu-bar-options-menu [cua-mode] (menu-bar-make-mm-toggle cua-mode "C-x/C-c/C-v Cut and Paste (CUA)" - "Use C-z/C-x/C-c/C-v keys for undo/cut/copy/paste")) + "Use C-z/C-x/C-c/C-v keys for undo/cut/copy/paste" + (:visible (or (not (boundp 'cua-enable-cua-keys)) + cua-enable-cua-keys)))) + +(define-key menu-bar-options-menu [cua-emulation-mode] + (menu-bar-make-mm-toggle cua-mode + "Shift movement mark region (CUA)" + "Use shifted movement keys to set and extend the region." + (:visible (and (boundp 'cua-enable-cua-keys) + (not cua-enable-cua-keys))))) (define-key menu-bar-options-menu [case-fold-search] (menu-bar-make-toggle toggle-case-fold-search case-fold-search -- 2.39.2