/usr/share/jed/doc/txt/xjed.txt is in jed-common 1:0.99.19-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | These are some notes about using xjed, the X Window version of JED. It also
mentions information about how to setup the EDT emulation under Linux.
xjed recognizes the following resources:
Display [d] Display to run on
Name Instance name
Geometry Initial geometry specifications
font Default font to use
background [bg] Background color
foreground [fg] Foreground color
Title name to be displayed on the title bar
fgStatus [sfg] foreground color of the xjed buffer status line
bgStatus [sbg] background color of the xjed buffer status line
fgRegion [rfg] foreground color of a region as defined by point and mark
bgRegion [rbg] background color of a region as defined by point and mark
fgCursor [cfg] text cursor foreground color
bgCursor [cbg] text cursor background color
fgMouse [mfg] mouse cursor foreground color
bgMouse [mbg] mouse cursor background color
fgMenu [fgm] Foreground color for menu bar
bgMenu [bgm] Foreground color for menu bar
fgMessage [fgms] Foreground color for messages
bgMessage [bgms] Background color for messages
fgError [fger] Foreground color for error messages
bgError [bger] Background color for messages
These resources specify color syntax highlighting options:
fgOperator [fgop] foreground color for operators (+, -, etc...)
bgOperator [bgop] background color for operators
fgNumber [fgnm] foreground color for numbers
bgNumber [bgnm] background color for numbers
fgString [fgst] foreground color for strings
bgString [bgst] background color for strings
fgComments [fgco] foreground color for comments
bgComments [bgco] background color for comments
fgKeyword [fgkw] foreground color for keywords
bgKeyword [bgkw] background color for keywords
fgKeyword1 [fgkw1] foreground color for keywords1
bgKeyword1 [bgkw1] background color for keywords1
fgKeyword2 [fgkw2] foreground color for keywords2
bgKeyword2 [bgkw2] background color for keywords2
fgDelimiter [fgde] foreground color for delimiters
bgDelimiter [bgde] background color for delimeters
fgPreprocess [fgpr] foreground color for preprocessor lines
bgPreprocess [bgpr] background color for preprocessor lines
Any of the above items may be specified on the xjed command line. Quantities
enclosed in square brackets may be used as a short form of their longer
counterparts.
For example,
xjed -d space:0.0 -font 9x15 -bg blue -fg white
will start xjed using the server on amy using a white on blue 9x15 font.
Once the X Window resource specifications have been parsed, any remaining
command line arguments are parsed as normal JED command line arguments.
The easiest way to specify the resources is to make use of a `.Xdefaults'
in your $HOME directory. Here is an example entry for Xjed:
xjed*Geometry: 80x36+100+100
xjed*font: 10x20
xjed*background: white
xjed*foreground: black
xjed*fgNumber: blue
The first line specifies that the initial window size is 80 columns by 36
rows and that the top left corner of the window is to be positioned at (100,
100). The second line specifies a fixed 10x20 font. The other two lines
specify the foreground and background colors of the window.
When running in UTF-8 mode, "UXjed" may be used for the resource
prefix, e.g.,
UXjed*font: -Misc-Fixed-Medium-R-Normal--20-200-75-75-C-100-ISO10646-1
---------------------------------------------------------------------------
Delete Key:
Once every month or two, someone sends me a patch for ``fixing''
the delete key. The patch usually involves changing the escape
sequence associated with the DELETE keysym (0xFFFF) from "^?" to
"\e[3~". The reason for the patch is to get the key labeled DELETE to
delete the character at the cursor and not the previous one. However,
this solution creates as many problems as it solves because on many
systems, the BACKSPACE key also sends the DELETE keysym and the patch
would create havoc on such systems. This is another manifestation of
the backspace vs delete debate.
If you are sure that your X Windows server distinguishes between
the backspace key and the delete key, then you can get your delete key
to delete the character under the cursor by putting:
x_set_keysym (0xFFFF, 0, "\e[3~");
setkey ("delete_char_cmd", "\e[3~");
in your .jedrc file.
------------------------------------------------------------------------
Mouse Usage:
Xjed S-Lang specific functions:
x_set_window_name : Set the name of the window (for title bar)
x_warp_pointer : Move mouse position to cursor position
x_insert_cutbuffer : insert contents of system cut buffer in current
buffer
x_copy_region_to_cutbuffer
: insert a region in system cutbuffer
x_set_keysym : define an equivalence string to be returned
when a function key is pressed.
also, set_color() may be used to set colors of mouse, cursor, normal,
region, and status line as well as the colors used by the syntax
highlighting routines. For example,
set_color ("mouse", "red", "blue");
gives the mouse cursor a red foreground with a blue background. The color
values must be recognizable by the X server.
In addition to the usual keybindings, the X version binds:
Control-UP : goto top of buffer
Control-DOWN : goto end of buffer
Shift-UP : move to top of window
Shift-DOWN : move to bottom of window
Control-RIGHT : Pan the window to the right
Control-LEFT : Pan the window to the left
Shift-RIGHT : skip to next word
Shift-LEFT : skip to previous word
Miscellaneous:
Suspending xjed is not allowed. If ^Z is pressed, the window is raised
if it is obscured, or lowered if it is totally visible.
EDT emulation under Linux.
Angelo Pagan (pagan@astrpd.pd.astro.it) suggests putting
keycode 22 = Delete
keycode 77 = KP_F1
keycode 112 = KP_F2
keycode 63 = KP_F3
keycode 82 = KP_F4
keycode 86 = KP_Separator
in the .xmodmap file to enable EDT keypad emulation.
Send comments and suggestions to jed@jedsoft.org.
|