192 |
- |
1 |
###############################################################################
|
|
|
2 |
# BRLTTY - A background process providing access to the console screen (when in
|
|
|
3 |
# text mode) for a blind person using a refreshable braille display.
|
|
|
4 |
#
|
|
|
5 |
# Copyright (C) 1995-2018 by The BRLTTY Developers.
|
|
|
6 |
#
|
|
|
7 |
# BRLTTY comes with ABSOLUTELY NO WARRANTY.
|
|
|
8 |
#
|
|
|
9 |
# This is free software, placed under the terms of the
|
|
|
10 |
# GNU Lesser General Public License, as published by the Free Software
|
|
|
11 |
# Foundation; either version 2.1 of the License, or (at your option) any
|
|
|
12 |
# later version. Please see the file LICENSE-LGPL for details.
|
|
|
13 |
#
|
|
|
14 |
# Web Page: http://brltty.com/
|
|
|
15 |
#
|
|
|
16 |
# This software is maintained by Dave Mielke <dave@mielke.cc>.
|
|
|
17 |
###############################################################################
|
|
|
18 |
|
|
|
19 |
title Pegasus
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
####################
|
|
|
23 |
# Default Bindings #
|
|
|
24 |
####################
|
|
|
25 |
|
|
|
26 |
bind !Status1 HELP
|
|
|
27 |
bind !Status2 LEARN
|
|
|
28 |
|
|
|
29 |
bind !RoutingKey ROUTE
|
|
|
30 |
|
|
|
31 |
bind !Left FWINLT
|
|
|
32 |
bind !Right FWINRT
|
|
|
33 |
bind !Up LNUP
|
|
|
34 |
bind !Down LNDN
|
|
|
35 |
|
|
|
36 |
bind !Home TOP_LEFT
|
|
|
37 |
bind !Enter BOT_LEFT
|
|
|
38 |
bind !End RETURN
|
|
|
39 |
bind !Escape CSRTRK
|
|
|
40 |
|
|
|
41 |
bind LeftControl+!Left ATTRUP
|
|
|
42 |
bind LeftControl+!Right ATTRDN
|
|
|
43 |
bind LeftControl+!Up PRDIFLN
|
|
|
44 |
bind LeftControl+!Down NXDIFLN
|
|
|
45 |
|
|
|
46 |
bind LeftControl+!Enter FREEZE
|
|
|
47 |
bind LeftControl+!End PREFMENU
|
|
|
48 |
bind LeftControl+!Escape INFO
|
|
|
49 |
|
|
|
50 |
bind LeftShift+!Left DISPMD
|
|
|
51 |
bind LeftShift+!Right SIXDOTS
|
|
|
52 |
bind LeftShift+!Down CSRJMP_VERT
|
|
|
53 |
|
|
|
54 |
bind LeftShift+!Home PRPROMPT
|
|
|
55 |
bind LeftShift+!Enter NXPROMPT
|
|
|
56 |
bind LeftShift+!End PRPGRPH
|
|
|
57 |
bind LeftShift+!Escape NXPGRPH
|
|
|
58 |
|
|
|
59 |
bind RightShift+!Left CONTEXT+SETLEFT
|
|
|
60 |
bind RightShift+!Right PASTE
|
|
|
61 |
bind RightShift+!Down CONTEXT+DESCCHAR
|
|
|
62 |
|
|
|
63 |
bind RightShift+!Home CONTEXT+CLIP_NEW
|
|
|
64 |
bind RightShift+!Enter CONTEXT+CLIP_ADD
|
|
|
65 |
bind RightShift+!End CONTEXT+COPY_LINE
|
|
|
66 |
bind RightShift+!Escape CONTEXT+COPY_RECT
|
|
|
67 |
|
|
|
68 |
|
|
|
69 |
#################
|
|
|
70 |
# Menu Bindings #
|
|
|
71 |
#################
|
|
|
72 |
|
|
|
73 |
context menu
|
|
|
74 |
|
|
|
75 |
bind Left FWINLT
|
|
|
76 |
bind Right FWINRT
|
|
|
77 |
bind Up MENU_PREV_ITEM
|
|
|
78 |
bind Down MENU_NEXT_ITEM
|
|
|
79 |
|
|
|
80 |
bind Home MENU_FIRST_ITEM
|
|
|
81 |
bind Enter MENU_LAST_ITEM
|
|
|
82 |
bind End MENU_PREV_SETTING
|
|
|
83 |
bind Escape MENU_NEXT_SETTING
|
|
|
84 |
|
|
|
85 |
|
|
|
86 |
############################
|
|
|
87 |
# Routing Key Alternatives #
|
|
|
88 |
############################
|
|
|
89 |
|
|
|
90 |
context CLIP_NEW
|
|
|
91 |
bind !RoutingKey CLIP_NEW
|
|
|
92 |
|
|
|
93 |
context CLIP_ADD
|
|
|
94 |
bind !RoutingKey CLIP_ADD
|
|
|
95 |
|
|
|
96 |
context COPY_LINE
|
|
|
97 |
bind !RoutingKey COPY_LINE
|
|
|
98 |
|
|
|
99 |
context COPY_RECT
|
|
|
100 |
bind !RoutingKey COPY_RECT
|
|
|
101 |
|
|
|
102 |
context SETLEFT
|
|
|
103 |
bind !RoutingKey SETLEFT
|
|
|
104 |
|
|
|
105 |
context DESCCHAR
|
|
|
106 |
bind !RoutingKey DESCCHAR
|
|
|
107 |
|