aboutsummaryrefslogtreecommitdiff
path: root/generic/proof-config.el
diff options
context:
space:
mode:
authorDavid Aspinall2005-08-10 12:55:50 +0000
committerDavid Aspinall2005-08-10 12:55:50 +0000
commit2fea2ae9d2b79bda4df1046211a57dc1f2fb42d5 (patch)
treebf78e9e272fdb46d24b615bc30c1c1b8c6a753b1 /generic/proof-config.el
parentca5256e22030b5575ae5b04bcc4598670b4d27f1 (diff)
Move some keybindings from script mode to universal keys
Diffstat (limited to 'generic/proof-config.el')
-rw-r--r--generic/proof-config.el23
1 files changed, 14 insertions, 9 deletions
diff --git a/generic/proof-config.el b/generic/proof-config.el
index fe53f61a..01f72cc3 100644
--- a/generic/proof-config.el
+++ b/generic/proof-config.el
@@ -2620,15 +2620,20 @@ If this table is empty or needs adjusting, please make changes using
(if proof-running-on-XEmacs
'([(control c) \`] . proof-next-error)
'("`" . proof-next-error))
- '(([(control c) (control c)] . proof-interrupt-process)
- ([(control c) (control n)] . proof-assert-next-command-interactive)
- ([(control c) (control u)] . proof-undo-last-successful-command)
- ([(control c) (control p)] . proof-prf)
- ([(control c) (control l)] . proof-layout-windows)
- ([(control c) (control x)] . proof-shell-exit)
- ([(control c) (control s)] . proof-shell-start)
- ([(control c) (control v)] . proof-minibuffer-cmd)
- ([(control c) (control w)] . pg-response-clear-displays)))
+ '(([(control c) (control c)] . proof-interrupt-process)
+ ([(control c) (control n)] . proof-assert-next-command-interactive)
+ ([(control c) (control u)] . proof-undo-last-successful-command)
+ ([(control c) (control p)] . proof-prf)
+ ([(control c) (control l)] . proof-layout-windows)
+ ([(control c) (control x)] . proof-shell-exit)
+ ([(control c) (control s)] . proof-shell-start)
+ ([(control c) (control v)] . proof-minibuffer-cmd)
+ ([(control c) (control w)] . pg-response-clear-displays)
+ ;; PG 3.6: Some more key bindings moved here from script mode,
+ ;; users suggest they ought to work in other PG buffers too.
+ ([(control c) (control ?.)] . proof-goto-end-of-locked)
+ ([(control c) (control f)] . proof-find-theorems)
+ ([(control c) (control o)] . proof-display-some-buffers)))
"List of key-bindings made for the script, goals and response buffer.
Elements of the list are tuples `(k . f)'
where `k' is a key-binding (vector) and `f' the designated function."