home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / jove-4.16-bin.lha / lib / jove / cmds.doc next >
Text File  |  1996-10-12  |  104KB  |  2,170 lines

  1.  
  2. :entry "abort-char" "Variable"
  3. This variable defines JOVE'S'S abort character.  When JOVE reads this
  4. character from the keyboard, it stops what it is doing (unless the
  5. character is quoted in some way).  Unfortunately, JOVE won't notice
  6. the character until it reads from the keyboard.  The default value is
  7. ^G.  See also "interrupt-character".
  8.  
  9. :entry "add-lisp-special" "Command"
  10. This command is to tell JOVE what identifiers require special
  11. indentation in lisp mode.  Lisp functions like "defun" and "let" are
  12. two of the default functions that get treated specially.  This is just
  13. a kludge to define some of your own.  It prompts for the function
  14. name.
  15.  
  16. :entry "allow-^S-and-^Q" "Variable"
  17. This variable, when set, tells JOVE that your terminal will not need
  18. to use the characters ^S and ^Q for flow control, in which case JOVE
  19. will instruct the system's tty driver to pass them through as normal
  20. characters.  Otherwise, if the tty driver was already using these
  21. characters for flow control, it will continue to do so.  Certain
  22. terminals and communications systems require that this variable be set
  23. "off"; in other circumstances it is better set "on".
  24.  
  25. :entry "allow-bad-characters-in-filenames" "Variable"
  26. If set, this variable permits the creation of filenames which contain
  27. "bad" characters such as those from the set *&%!"`[]{}.  These files
  28. are harder to deal with, because the characters mean something to the
  29. shell.  The default value is "off".
  30.  
  31. :entry "allow-bad-filenames" "Variable"
  32. This is the obsolete name for "allow-bad-characters-in-filenames".
  33.  
  34. :entry "append-region" "Command"
  35. This appends the region to a specified file.  If the file does not
  36. already exist it is created.
  37.  
  38. :entry "apropos" "Command"
  39. This types out each command, variable and macro with the specified
  40. string in its name ("?" matches every name).  For each command and
  41. macro that contains the string, the key sequence that can be used to
  42. execute the command or macro is printed; with variables, the current
  43. value is printed.  So, to find all the commands that are related to
  44. windows, you type
  45.  
  46.      : apropos window<Return> .
  47.  
  48.  
  49. :entry "auto-case-abbrev" "Variable"
  50. When this variable is "on" (the default), word abbreviations are
  51. adjusted for case automatically.  If the abbreviation is typed with no
  52. uppercase letter, the expansion is not changed; if it is typed with
  53. one or more uppercase letters, the first character in the expansion is
  54. capitalized; additionally, if the abbreviation is typed with more than
  55. one uppercase letter, each letter in the expansion immediately
  56. preceded by whitespace or - is capitalized.  For example, if "jove"
  57. were the abbreviation for "jonathan's own version of EMACS", the
  58. following table shows how the abbreviation would be expanded.
  59.  
  60.      jove   jonathan's own version of EMACS
  61.      Jove   Jonathan's own version of EMACS
  62.      JOVE   Jonathan's Own Version Of EMACS
  63.      JoVe   Jonathan's Own Version Of EMACS
  64.  
  65. When this variable is "off", upper and lower case are distinguished
  66. when looking for the abbreviation, i.e., in the example above, "JOVE"
  67. and "Jove" would not be expanded unless they were defined separately.
  68. See also the "word-abbrev-mode" command.
  69.  
  70. :entry "auto-execute-command" "Command"
  71. This tells JOVE to execute a command automatically when a file whose
  72. name matches a specified pattern is read.  The first argument is the
  73. command you wish to have executed.  The second argument is the
  74. pattern, a regular expression that is matched against the start of the
  75. file name.  If you wish to match a suffix, start the pattern with
  76. ".*"; to match every file, use that as the whole pattern.  Any numeric
  77. argument will be passed on to the command when it is executed (this is
  78. useful when combined with commands that adjust a minor mode).  For
  79. example, if you want to be in "show-match-mode" when you edit C source
  80. files (that is, files that end with ".c" or ".h") you can type
  81.  
  82.      : auto-execute-command show-match-mode .*\.[ch]$
  83.  
  84. Actually, this command toggles the Show Match minor mode, but since it
  85. is initially off, it will have the desired effect.  For more certain
  86. control, give the "auto-execute-command" a non-zero numeric argument:
  87. this will be passed on to the "show-match-mode".
  88.  
  89. :entry "auto-execute-macro" "Command"
  90. This is like "auto-execute-command" except you use it to execute
  91. macros automatically instead of built-in commands.
  92.  
  93. :entry "auto-fill-mode" "Command"
  94. This turns on or off the Auto Fill minor mode in the selected buffer.
  95. Without a numeric argument, the command toggles the mode; with a zero
  96. argument, the mode is turned off; with a non-zero argument, the mode
  97. is turned on.  When JOVE is in Auto Fill mode it automatically breaks
  98. lines for you when you reach the right margin so you don't have to
  99. remember to hit Return.  JOVE uses 78 as the right margin but you can
  100. change that by setting the variable "right-margin" to another value.
  101.  
  102. :entry "auto-indent-mode" "Command"
  103. This turns on or off Auto Indent minor mode in the selected buffer.
  104. Without a numeric argument, the command toggles the mode; with a zero
  105. argument, the mode is turned off; with a non-zero argument, the mode
  106. is turned on.  When JOVE is in Auto Indent mode, the "newline" command
  107. (which is normally bound to Return) acts identically to "newline-and-
  108. indent": the new line is indented to the same position as the line you
  109. were just on.  This is useful for lining up C code (or any other
  110. language (but what else is there besides C?)).  Furthermore, if a line
  111. is broken because of Auto Fill mode, and Auto Indent mode is on, the
  112. new line will be indented as the old line was.
  113.  
  114. :entry "backward-character" "Command"
  115. This moves point backward over a single character or line-separator.
  116. Thus if point is at the beginning of the line it moves to the end of
  117. the previous line.
  118.  
  119. :entry "backward-list" "Command"
  120. This moves point backward over a list, which is any text between
  121. properly matching (...), [...] or {...}.  It first searches backward
  122. for a ")" and then moves to the matching "(".  This is useful when you
  123. are trying to find unmatched parentheses in a program.  Arguments are
  124. accepted, and negative arguments search forwards.  See also "backward-
  125. s-expression".
  126.  
  127. :entry "backward-paragraph" "Command"
  128. This moves point backward to the beginning of the current or previous
  129. paragraph.  Paragraphs are bounded by lines that match "paragraph-
  130. delimiter-pattern" (by default, those that are empty or look like
  131. troff or TeX commands).  A change in indentation may also signal a
  132. break between paragraphs, except that JOVE allows the first line of a
  133. paragraph to be indented differently from the other lines.  Arguments
  134. are accepted, and negative arguments search forwards.
  135.  
  136. :entry "backward-s-expression" "Command"
  137. This moves point backward over an s-expression, that is over a Lisp
  138. atom or a C identifier (depending on the major mode) ignoring
  139. punctuation and whitespace; or, if the nearest preceding significant
  140. character is one of ")]}", over a list as in "backward-list".
  141. Arguments are accepted, and negative arguments search forwards.
  142.  
  143. :entry "backward-sentence" "Command"
  144. This moves point backward to the beginning of the current or previous
  145. sentence.  JOVE considers the end of a sentence to be the characters
  146. ".", "!" or "?" followed by a Return or by one or more spaces.
  147. Arguments are accepted, and negative arguments search forwards.
  148.  
  149. :entry "backward-up-list" "Command"
  150. This is similar to "backward-list" except it backs up and OUT of the
  151. enclosing list.  In other words, it moves backward to whichever of
  152. "([{" would match one of ")]}" if you were to type it right then.
  153. Arguments are accepted, and negative arguments search forwards as in
  154. "down-list".
  155.  
  156. :entry "backward-word" "Command"
  157. This moves point backward to the beginning of the current or previous
  158. word.  Arguments are accepted, and negative arguments search forwards.
  159.  
  160. :entry "bad-filename-extensions" "Variable"
  161. This contains a list of words separated by spaces which are to be
  162. considered bad filename extensions, and so will not be included in
  163. filename completion.  The default contains, amongst much else, ".o" so
  164. if you have "jove.c" and "jove.o" in the same directory, the filename
  165. completion will not complain of an ambiguity because it will ignore
  166. "jove.o".
  167.  
  168. :entry "begin-kbd-macro" "Command"
  169. This starts defining the keyboard macro by remembering all your key
  170. strokes until you execute "end-kbd-macro", by typing "^X )".  Because
  171. of a bug in JOVE you shouldn't terminate the macro by typing "ESC X
  172. end-kbd-macro"; "end-kbd-macro" must be bound to "^X )" in order to
  173. make things work correctly.  The "execute-kbd-macro" command will
  174. execute the remembered key strokes.  Sometimes you may want a macro to
  175. accept different input each time it runs.  To see how to do this, see
  176. the "make-macro-interactive" command.
  177.  
  178. :entry "beginning-of-file" "Command"
  179. This moves point backward to the beginning of the buffer.  This
  180. sometimes prints the "[Point pushed]" message to indicate that JOVE
  181. has set the mark so you can go back to where you were if you want.
  182. See also the variable "mark-threshold".
  183.  
  184. :entry "beginning-of-line" "Command"
  185. This moves point to the beginning of the current line.
  186.  
  187. :entry "beginning-of-window" "Command"
  188. This moves point to the beginning of the active window.  If there is a
  189. numeric argument, point moves that many lines below the top line.
  190. With the default bindings, the sequence "ESC ," is the same as "ESC <"
  191. ("beginning-of-file") but without the shift key on the "<", and can
  192. thus easily be remembered.
  193.  
  194. :entry "bind-keymap-to-key" "Command"
  195. This is like "bind-to-key" except that you use it to attach a key
  196. sequence to a named keymap.  The only reasonable use is to bind some
  197. extra key to "ESC-map" for keyboards that make typing ESC painful.
  198.  
  199. :entry "bind-macro-to-key" "Command"
  200. This is like "bind-to-key" except you use it to attach a key sequence
  201. to a named macro.
  202.  
  203. :entry "bind-macro-to-word-abbrev" "Command"
  204. This command allows you to bind a macro to a previously defined word
  205. abbreviation.  Whenever you type the abbreviation, it will first be
  206. expanded as an abbreviation (which could be empty, of course), and
  207. then the macro will be executed.  Note that if the macro moves point
  208. around, you should first "set-mark" and then "exchange-point-and-
  209. mark".
  210.  
  211. :entry "bind-to-key" "Command"
  212. This attaches a key sequence to an internal JOVE command so that
  213. future hits on that key sequence invoke that command.  This is called
  214. a global binding, as compared to local bindings and process bindings.
  215. Any previous global binding of this key sequence is discarded.  For
  216. example, to make "^W" erase the previous word, you type
  217.  
  218.      : bind-to-key kill-previous-word ^W .
  219.  
  220. It isn't possible to have two globally bound key sequences where one
  221. is a prefix of the other: JOVE wouldn't know whether to obey the
  222. shorter sequence or wait for the longer sequence.  Normally, when the
  223. "bind-to-key" command is issued interactively, the key sequence is
  224. taken to end one keystroke after the longest sequence matching any
  225. proper prefix of another binding (thus no new prefix can be created).
  226. If the command is given a numeric argument, the key sequence is taken
  227. up to the next Return keystroke (kludge!); bindings to any prefix of
  228. the sequence are discarded.  When the command is issued from a
  229. "source"d file, the key sequence is taken up to the end of the line
  230. (it is also processed so that control characters can and should be
  231. entered using the ^A notation).
  232.  
  233. Note that neither process nor local bindings are changed by this
  234. command, although they can be eclipsed.  Given a choice between
  235. bindings, the shortest is executed; if there is still a choice, a
  236. process binding is preferred to a local binding, and a local binding
  237. is preferred to a global binding.
  238.  
  239. :entry "buffer-position" "Command"
  240. This displays the current file name, current line number, total number
  241. of lines, current character number, total number of characters,
  242. percentage of the way through the file, and the position of the cursor
  243. in the current line.
  244.  
  245. :entry "c-argument-indentation" "Variable"
  246. This variable describes how to indent lines which are part of nested
  247. expressions in C.  The default is -1, which means to indent a
  248. continued line by lining it up with the first argument of the current
  249. expression.  Otherwise, the line will be indented by "c-argument-
  250. indentation" characters past the indent of the first line of the
  251. expression.  For example, the default value produces:
  252.  
  253.        Typeout(fmt, itoa(bcount++), line_cnt(b, nbuf),
  254.                TypeNames[b->b_type],
  255.                IsModified(b) ? "*" : b->b_ntbf ? "+" : NullStr,
  256.                buf_width, b->b_name, filename(b));
  257.  
  258. :entry "c-indentation-increment" "Variable"
  259. This defines a set of tabstops independent of the value of "tab-
  260. width".  This value will be used in C mode, and JOVE will insert the
  261. correct number of Spaces and Tabs to get the right behavior.  For
  262. programmers that like to indent with 4 spaces, set this value to 4.
  263. Some people prefer to set this to 4 and leave tab-width set to 8.
  264. This will create files whose indentation steps in 4-space increments,
  265. and which look the same anywhere that tabs are expanded to 8 spaces
  266. (i.e. in most settings).  Others prefer to have one tab character per
  267. indentation level, then fiddle the tab expansion width to get the
  268. appearance they like.  They should set both "c-indentation-increment"
  269. and "tab-width" to 4.  Whenever using a non-standard tab width ("tab-
  270. width") you should only use tabs for indentation, and use spaces for
  271. all columnar alignment later in the lines.
  272.  
  273. :entry "c-mode" "Command"
  274. This turns on the C major mode in the currently selected buffer.  When
  275. in C or Lisp mode, Tab, "}", and ")" behave a little differently from
  276. usual: They are indented to the "right" place for C (or Lisp)
  277. programs.  In JOVE, the "right" place is simply the way the author
  278. likes it (but I've got good taste).
  279.  
  280. :entry "case-character-capitalize" "Command"
  281. This capitalizes the character after point, i.e., the character under
  282. the cursor.  If a negative argument is supplied that many characters
  283. before point are upper cased.
  284.  
  285. :entry "case-ignore-search" "Variable"
  286. This variable, when "on", tells JOVE to treat upper and lower case the
  287. same when searching.  Thus "jove" would match "JOVE", and "JoVe" would
  288. match either.  The default value of this variable is "off".
  289.  
  290. :entry "case-region-lower" "Command"
  291. This changes all the upper case letters in the region to their lower
  292. case equivalents.
  293.  
  294. :entry "case-region-upper" "Command"
  295. This changes all the lower case letters in the region to their upper
  296. case equivalents.
  297.  
  298. :entry "case-word-capitalize" "Command"
  299. This capitalizes the current word by making the current letter upper
  300. case and making the rest of the word lower case.  Point is moved to
  301. the end of the word.  If point is not positioned on a word it is first
  302. moved forward to the beginning of the next word.  If a negative
  303. argument is supplied that many words before point are capitalized.
  304. This is useful for correcting the word just typed without having to
  305. move point to the beginning of the word yourself.
  306.  
  307. :entry "case-word-lower" "Command"
  308. This lower-cases the current word and leaves point at the end of it.
  309. If point is in the middle of a word the rest of the word is converted.
  310. If point is not in a word it is first moved forward to the beginning
  311. of the next word.  If a negative argument is supplied that many words
  312. before point are converted to lower case.  This is useful for
  313. correcting the word just typed without having to move point to the
  314. beginning of the word yourself.
  315.  
  316. :entry "case-word-upper" "Command"
  317. This upper-cases the current word and leaves point at the end of it.
  318. If point is in the middle of a word the rest of the word is converted.
  319. If point is not in a word it is first moved forward to the beginning
  320. of the next word.  If a negative argument is supplied that many words
  321. before point are converted to upper case.  This is useful for
  322. correcting the word just typed without having to move point to the
  323. beginning of the word yourself.
  324.  
  325. :entry "cd" "Command"
  326. This changes the current directory.
  327.  
  328. :entry "character-to-octal-insert" "Command"
  329. This inserts a Back-slash followed by the ascii value of the next
  330. character typed.  For example, "^G" inserts the string "\007".
  331.  
  332. :entry "clear-and-redraw" "Command"
  333. This clears the entire screen and redraws all the windows.  Use this
  334. when JOVE gets confused about what's on the screen, or when the screen
  335. gets filled with garbage characters or output from another program.
  336.  
  337. :entry "comment-format" "Variable"
  338. This variable tells JOVE how to format your comments when you run the
  339. command "fill-comment".  Its format is this:
  340.  
  341.      <open pattern>%!<line header>%c<line trailer>%!<close pattern>
  342.  
  343. The %!, %c, and %! must appear in the format; everything else is
  344. optional.  A newline (represented by %n) may appear in the open or
  345. close patterns.  %% is the representation for %.  The default comment
  346. format is for C comments.  See "fill-comment" for more details.
  347.  
  348. :entry "compile-it" "Command"
  349. This compiles your program by running the UNIX command "make" into a
  350. buffer, and automatically parsing the error messages that are created
  351. (if any).  See the "parse-errors" command.  If "compile-it" is given a
  352. numeric argument, it will prompt for a command to run in place of the
  353. plain make and the command you enter will become the new default.  See
  354. also "error-format-string" which makes it possible to parse errors of
  355. a different format and see also the variable "error-window-size".
  356.  
  357. :entry "continue-process" "Command"
  358. This sends the signal SIGCONT to the interactive process in the
  359. current buffer, IF the process is currently stopped.
  360.  
  361. :entry "copy-region" "Command"
  362. This takes all the text in the region and copies it onto the kill ring
  363. buffer.  This is just like running "kill-region" followed by the
  364. "yank" command.  See the "kill-region" and "yank" commands.
  365.  
  366. :entry "current-error" "Command"
  367. This moves to the current error in the list of parsed errors.  See the
  368. "next-error" and "previous-error" commands for more detailed
  369. information.
  370.  
  371. :entry "date" "Command"
  372. This prints the date on the message line.
  373.  
  374. :entry "dbx-format-string" "Variable"
  375. This is the default regular-expression search string used by JOVE to
  376. parse output from "dbx" running in a shell process (see the "process-
  377. dbx-output" command).  You shouldn't have to change this unless you
  378. are using "gdb" or some other symbolic debugger.
  379.  
  380. :entry "define-global-word-abbrev" "Command"
  381. This defines a global abbreviation.  See the "word-abbrev-mode"
  382. command.
  383.  
  384. :entry "define-macro" "Command"
  385. This provides a different mechanism for defining keyboard macros.
  386. Instead of gathering keystrokes and storing them into the "keyboard-
  387. macro" (which is how "begin-kbd-macro" works), "define-macro" prompts
  388. for a macro name (terminated with Space, or Newline) and then for the
  389. actual macro body.  If you wish to specify control characters in the
  390. macro, you may simply insert them (using the "quoted-insert" command)
  391. or by inserting the character '^' followed by the appropriate letter
  392. for that character (e.g., ^A would be the two characters '^' followed
  393. by 'A').  You may use Back-slash to prevent the '^' from being
  394. interpreted as part of a control character when you really wish to
  395. insert one (e.g., a macro body "\^foo" would insert the string "^foo"
  396. into the buffer, whereas the body "^foo" would be the same as typing
  397. ^F and then inserting the string "oo").  See "write-macros-to-file" to
  398. see how to save macros.
  399.  
  400. :entry "define-mode-word-abbrev" "Command"
  401. This defines a mode-specific abbreviation.  See the "word-abbrev-mode"
  402. command.
  403.  
  404. :entry "delete-blank-lines" "Command"
  405. This deletes all the blank lines around point.  This is useful when
  406. you previously opened many lines with the "newline-and-backup" command
  407. and now wish to delete the unused ones.
  408.  
  409. :entry "delete-buffer" "Command"
  410. This deletes a buffer and frees up all the memory associated with it.
  411. Be careful(!) - once a buffer has been deleted it is gone forever.
  412. JOVE will ask you to confirm if you try to delete a buffer that needs
  413. saving.  This command is useful for when JOVE runs out of space to
  414. store new buffers.  See also the "erase-buffer" command and the "kill-
  415. some-buffers" command.
  416.  
  417. :entry "delete-current-window" "Command"
  418. This deletes the active window and moves point into one of the
  419. remaining ones.  It is an error to try to delete the only remaining
  420. window.
  421.  
  422. :entry "delete-next-character" "Command"
  423. This deletes the character that's just after point (that is, the
  424. character under the cursor).  If point is at the end of a line, the
  425. line-separator is deleted and the next line is joined with the current
  426. one.  If an argument is given, that many characters are deleted and
  427. placed on the kill ring.  If the argument is negative the deletion is
  428. forwards.
  429.  
  430. :entry "delete-other-windows" "Command"
  431. This deletes all the other windows except the current one.  This can
  432. be thought of as going back into One Window mode.
  433.  
  434. :entry "delete-previous-character" "Command"
  435. This deletes the character that's just before point (that is, the
  436. character before the cursor).  If point is at the beginning of the
  437. line, the line separator is deleted and that line is joined with the
  438. previous one.  If an argument is given, that many characters are
  439. deleted and placed on the kill ring.  If the argument is negative the
  440. deletion is backwards.
  441.  
  442. :entry "delete-white-space" "Command"
  443. This deletes all the Tabs and Spaces around point.
  444.  
  445. :entry "describe-bindings" "Command"
  446. This types out a list containing each bound key and the command that
  447. gets invoked every time that key is typed.  To make a wall chart of
  448. JOVE commands, set "send-typeout-to-buffer" to "on" and JOVE will
  449. store the key bindings in a buffer which you can save to a file and
  450. then print.
  451.  
  452. :entry "describe-command" "Command"
  453. This waits for you to type a command and then prints an explanation of
  454. that command, together with its current bindings.
  455.  
  456. :entry "describe-key" "Command"
  457. This waits for you to type a key and then tells the name of the
  458. command that gets invoked every time that key is hit.  Once you have
  459. the name of the command you can use the "describe-command" command to
  460. find out exactly what it does.
  461.  
  462. :entry "describe-variable" "Command"
  463. This prints an explanation of a specified variable.
  464.  
  465. :entry "digit" "Command"
  466. Starts or continues the entry of a numeric argument with the digit
  467. typed.  It continues reading digits until you type some other command.
  468. Then that command is executed with the numeric argument you specified.
  469.  
  470. :entry "digit-0" "Command"
  471. Starts or continues the entry of a numeric argument with the digit 0.
  472. It continues reading digits until you type some other command.  Then
  473. that command is executed with the numeric argument you specified.
  474. Sometimes it is handy to bind this to the 0 key on the numeric keypad.
  475.  
  476. :entry "digit-1" "Command"
  477. Starts or continues the entry of a numeric argument with the digit 1.
  478. It continues reading digits until you type some other command.  Then
  479. that command is executed with the numeric argument you specified.
  480. Sometimes it is handy to bind this to the 1 key on the numeric keypad.
  481.  
  482. :entry "digit-2" "Command"
  483. Starts or continues the entry of a numeric argument with the digit 2.
  484. It continues reading digits until you type some other command.  Then
  485. that command is executed with the numeric argument you specified.
  486. Sometimes it is handy to bind this to the 2 key on the numeric keypad.
  487.  
  488. :entry "digit-3" "Command"
  489. Starts or continues the entry of a numeric argument with the digit 3.
  490. It continues reading digits until you type some other command.  Then
  491. that command is executed with the numeric argument you specified.
  492. Sometimes it is handy to bind this to the 3 key on the numeric keypad.
  493.  
  494. :entry "digit-4" "Command"
  495. Starts or continues the entry of a numeric argument with the digit 4.
  496. It continues reading digits until you type some other command.  Then
  497. that command is executed with the numeric argument you specified.
  498. Sometimes it is handy to bind this to the 4 key on the numeric keypad.
  499.  
  500. :entry "digit-5" "Command"
  501. Starts or continues the entry of a numeric argument with the digit 5.
  502. It continues reading digits until you type some other command.  Then
  503. that command is executed with the numeric argument you specified.
  504. Sometimes it is handy to bind this to the 5 key on the numeric keypad.
  505.  
  506. :entry "digit-6" "Command"
  507. Starts or continues the entry of a numeric argument with the digit 6.
  508. It continues reading digits until you type some other command.  Then
  509. that command is executed with the numeric argument you specified.
  510. Sometimes it is handy to bind this to the 6 key on the numeric keypad.
  511.  
  512. :entry "digit-7" "Command"
  513. Starts or continues the entry of a numeric argument with the digit 7.
  514. It continues reading digits until you type some other command.  Then
  515. that command is executed with the numeric argument you specified.
  516. Sometimes it is handy to bind this to the 7 key on the numeric keypad.
  517.  
  518. :entry "digit-8" "Command"
  519. Starts or continues the entry of a numeric argument with the digit 8.
  520. It continues reading digits until you type some other command.  Then
  521. that command is executed with the numeric argument you specified.
  522. Sometimes it is handy to bind this to the 8 key on the numeric keypad.
  523.  
  524. :entry "digit-9" "Command"
  525. Starts or continues the entry of a numeric argument with the digit 9.
  526. It continues reading digits until you type some other command.  Then
  527. that command is executed with the numeric argument you specified.
  528. Sometimes it is handy to bind this to the 9 key on the numeric keypad.
  529.  
  530. :entry "digit-minus" "Command"
  531. Starts the entry of a numeric argument with a minus sign.  It
  532. continues reading digits until you type some other command.  Then that
  533. command is executed with the numeric argument you specified.
  534. Sometimes it is handy to bind this to the - key on a numeric keypad.
  535. In the absence of further digits and unless otherwise stated (e.g.
  536. "next-page"), the argument -1 is assumed.
  537.  
  538. :entry "dirs" "Command"
  539. This prints out the directory stack.  See the "cd", "pushd",
  540. "pushlibd" and "popd" commands for more information.
  541.  
  542. :entry "disable-biff" "Variable"
  543. When this is set, JOVE disables biff when you're editing and enables
  544. it again when you get out of JOVE, or when you pause to the parent
  545. shell or push to a new shell.  (This means arrival of new mail will
  546. not be immediately apparent but will not cause indiscriminate writing
  547. on the display).  The default is "off", although it is always safe to
  548. set it "on", even on systems that do not provide the biff facility.
  549. Note that the variable "mode-line" can be set up to announce the
  550. arrival of new mail during a JOVE session.
  551.  
  552. :entry "display-bad-filenames" "Variable"
  553. This is the obsolete name for "display-filenames-with-bad-extensions".
  554.  
  555. :entry "display-filenames-with-bad-extensions" "Variable"
  556. This variable affects only filename completion, in particular, what
  557. happens when "?" is typed while prompting for a file.  When this
  558. variable is "on", any files that end with one of the extensions
  559. defined by the variable "bad-filename-extensions" will be displayed
  560. with an "!" in front of their names.  When "display-filenames-with-
  561. bad-extensions" is "off" the files will not be displayed at all.  The
  562. default value is "on".
  563.  
  564. :entry "down-list" "Command"
  565. This is the opposite of "backward-up-list".  It enters the next list.
  566. In other words, it moves forward to whichever of "([{" it first
  567. encounters.  Arguments are accepted, and negative arguments search
  568. backwards as in "backward-up-list".
  569.  
  570. :entry "dstop-process" "Command"
  571. Send the signal SIGTSTP to the interactive process in the selected
  572. buffer when next it tries to read input.  This is equivalent to
  573. sending the "dsusp" character (which most people have set to ^Y) to
  574. the process.  This only works if you are in a buffer bound to an
  575. interactive process.
  576.  
  577. :entry "edit-word-abbrevs" "Command"
  578. This creates (if necessary) a buffer with a list of each abbreviation
  579. and the phrase it expands into, and enters a recursive edit to let you
  580. change the abbreviations or add some more.  The format of this list is
  581. "abbreviation:phrase" so if you add some more you should follow that
  582. format.  It's probably simplest just to copy some already existing
  583. abbreviations and edit them.  Use the "exit-jove" command to exit the
  584. recursive edit.
  585.  
  586. :entry "end-kbd-macro" "Command"
  587. This stops the definition of the keyboard macro.  Because of a bug in
  588. JOVE, this must be bound to "^X )", or some key sequence which is one
  589. or two characters long.  Anything else will not work properly.  See
  590. "begin-kbd-macro" for more details.
  591.  
  592. :entry "end-of-file" "Command"
  593. This moves point forward to the end of the buffer.  This sometimes
  594. prints the "[Point pushed]" message to indicate that JOVE has set the
  595. mark so you can go back to where you were if you want.  See also the
  596. variable "mark-threshold".
  597.  
  598. :entry "end-of-line" "Command"
  599. This moves point to the end of the current line.  If the line is too
  600. long to fit on the screen, it will be scrolled horizontally.  This is
  601. described with the variables "scroll-width" and "scroll-all-lines".
  602.  
  603. :entry "end-of-window" "Command"
  604. This moves point to the last character in the active window.  If there
  605. is a numeric argument, the point moves that many lines above the
  606. bottom line.  With the default bindings, the sequence "ESC ." is the
  607. same as "ESC >" ("beginning-of-file") but without the shift key on the
  608. ">", and can thus easily be remembered.
  609.  
  610. :entry "enhanced-keyboard" "Variable"
  611. (IBM PC version only) This is a boolean variable which can be set to
  612. enable the enhanced AT-style keyboard.  The enhanced keyboard contains
  613. function keys and key combinations that are not supported on the
  614. original IBM PCs and XTs.  The default value is determined by a bit in
  615. the BIOS data area, but this method apparently does not work with a
  616. few BIOS implementations.  WARNING: setting enhanced-keyboard "on" on
  617. systems without an enhanced keyboard will lock up your system and
  618. require you to reboot.
  619.  
  620. :entry "eof-process" "Command"
  621. Sends EOF to the current interactive process.  This only works on
  622. versions of JOVE running under versions of UNIX with pty's.
  623.  
  624. :entry "erase-buffer" "Command"
  625. This erases the contents of the specified buffer.  This is like
  626. "delete-buffer" except it only erases the contents of the buffer, not
  627. the buffer itself.  If you try to erase a buffer that needs saving you
  628. will be asked to confirm it.
  629.  
  630. :entry "error-format-string" "Variable"
  631. This is the error format string that is used by "parse-errors" to find
  632. the error messages in a buffer.  The way it works is by using this
  633. string as a JOVE regular expression search string, where the \(...\)
  634. regular expression feature is used to pick out the file name and line
  635. number from the line containing an error message.  For instance, a
  636. typical error message might look like this:
  637.  
  638.        "file.c", line 540: missing semi-colon
  639.  
  640. For strings of this format, an appropriate value for "error-format-
  641. string" would be something like this:
  642.  
  643.        ^"\([^"]*\)", line \([0-9]*\):
  644.  
  645. What this means is, to find an error message, search for a line
  646. beginning with a double-quote.  Then it says that all the following
  647. characters up to another double-quote should be remembered as one
  648. unit, namely the filename that the error is in (that is why the first
  649. set of parentheses is surrounding it).  Then it says that after the
  650. filename there will be the string ", line " followed by a line number,
  651. which should be remembered as a single unit (which is why the second
  652. set of parentheses is around that).  The only constraint on the error
  653. messages is that the file name and line number appear on the same
  654. line.  Most compilers seem to do this anyway, so this is not an
  655. unreasonable restriction.
  656.  
  657. If you do not know how to use regular expressions then this variable
  658. will be hard for you to use.  Also note that you can look at the
  659. default value of this variable by printing it out, but it is a really
  660. complicated string because it is trying to accommodate the outputs of
  661. more than one compiler.
  662.  
  663. :entry "error-window-size" "Variable"
  664. This is the percentage of the screen to use for the error-window on
  665. the screen.  When you execute "compile-it" or "spell-buffer", "error-
  666. window-size" percent of the screen will go to the error window.  If
  667. the window already exists and is a different size, it is made to be
  668. this size.  The default value is 20%.
  669.  
  670. :entry "exchange-point-and-mark" "Command"
  671. This moves point to mark and makes mark the old point.  This is for
  672. quickly moving from one end of the region to the other.
  673.  
  674. :entry "execute-kbd-macro" "Command"
  675. This executes the keyboard macro.  If you supply a numeric argument
  676. the macro is executed that many times.  See the "begin-kbd-macro"
  677. command for more details.
  678.  
  679. :entry "execute-macro" "Command"
  680. This executes a specified macro.  If you supply a numeric argument the
  681. macro is executed that many times.
  682.  
  683. :entry "execute-named-command" "Command"
  684. This is the way to execute a command that isn't bound to any key.
  685. When you are prompted with ": " you can type the name of the command.
  686. You don't have to type the entire name.  After typing a few
  687. characters, Tab will fill in as many more as it can (as will Space,
  688. but that will also obey the command if it is now unambiguous).  If you
  689. are not sure of the name of the command, type "?" and JOVE will print
  690. a list of all the commands that you could possibly match given what
  691. you've already typed.  Once the command is unambiguous, typing Return
  692. will cause it to be obeyed.
  693.  
  694. If you don't have any idea what the command's name is but you know it
  695. has something to do with windows (for example), you can do "ESC X
  696. apropos window" and JOVE will print a list of all the commands that
  697. are related to windows.  If you find yourself constantly executing the
  698. same commands this way you probably want to bind them to keys so that
  699. you can execute them more quickly.  See the "bind-to-key" command.
  700.  
  701. :entry "exit-jove" "Command"
  702. This exits JOVE.  If any buffers need saving JOVE will print a warning
  703. message and ask for confirmation.  If you leave without saving your
  704. buffers all your work will be lost.  If you made a mistake and really
  705. do want to exit then you can.  If there are any interactive processes
  706. running, JOVE will also ask whether they should be terminated.
  707.  
  708. If you are in a recursive editing level "exit-jove" will return you
  709. from that.  The selected buffer will be set back to the buffer that
  710. was current when the recursive edit was entered.  Normally, point will
  711. be returned to its position at the time of entry, but if the "exit-
  712. jove" command is given a numeric argument, point is left at its most
  713. recent position within that buffer.
  714.  
  715. :entry "expand-environment-variables" "Variable"
  716. When this variable is "on" JOVE will try to expand any strings of the
  717. form "$var" into the value of the environment variable "var" when
  718. asking for a filename.  For example, if you type "$HOME/.joverc",
  719. "$HOME" will be replaced with your home directory.  The default value
  720. is "on".
  721.  
  722. :entry "file-creation-mode" "Variable"
  723. This variable has an octal value.  It contains the mode (see
  724. "chmod"(1)) with which files should be created.  This mode gets
  725. modified by your current umask setting (see "umask"(1)).  The default
  726. value is usually 0666 or 0644.
  727.  
  728. :entry "files-should-end-with-newline" "Variable"
  729. This variable indicates that all files should always have a newline at
  730. the end.  This is often necessary for line printers and the like.
  731. When set, if JOVE is writing a file whose last character is not a
  732. newline, it will add one automatically.  The default value is "on".
  733.  
  734. :entry "fill-comment" "Command"
  735. This command fills in your C comments to make them pretty and
  736. readable.  This filling is done according the variable "comment-
  737. format".
  738.  
  739.      /*
  740.       * the default format makes comments like this.
  741.       */
  742.  
  743. This can be changed by changing the "format-comment" variable.  Other
  744. languages may be supported by changing the format variable
  745. appropriately.  The formatter looks backwards from point for an open
  746. comment symbol.  If found, all indentation is done relative to the
  747. position of the first character of the open symbol.  If there is a
  748. matching close symbol, the entire comment is formatted.  If not, the
  749. region between the open symbol and point is reformatted.  The original
  750. text is saved in the kill ring; a "yank-pop" command will undo the
  751. formatting.
  752.  
  753. :entry "fill-paragraph" "Command"
  754. This rearranges words between lines so that all the lines in the
  755. current paragraph extend as close to the right margin as possible,
  756. ensuring that none of the lines will be greater than the right margin.
  757. The default value for "right-margin" is 78, but can be changed with
  758. the "set" and "right-margin-here" commands.
  759.  
  760. The rearrangement may cause an end of line to be replaced by
  761. whitespace.  Normally, this whitespace is a single space character.
  762. If the variable "space-sentence-2" is "on", and the end of the line
  763. was apparently the end of a sentence or the line ended with a colon,
  764. two spaces will be used.  However, a sentence or colon followed by a
  765. single space already within a line will not be altered.
  766.  
  767. JOVE has a complicated algorithm for determining the beginning and end
  768. of the paragraph.  In the normal case JOVE will give all the lines the
  769. same indent as they currently have, but if you wish to force a new
  770. indent you can supply a numeric argument to "fill-paragraph" and JOVE
  771. will indent each line to the column specified by the "left-margin"
  772. variable.  See also the "left-margin" variable and "left-margin-here"
  773. command.
  774.  
  775. :entry "fill-region" "Command"
  776. This is like "fill-paragraph", except it operates on a region instead
  777. of just a paragraph.
  778.  
  779. :entry "filter-region" "Command"
  780. This sends the text in the region to a UNIX command, and replaces the
  781. region with the output from that command.  For example, if you are
  782. lazy and don't like to take the time to write properly indented C
  783. code, you can put the region around your C file and "filter-region" it
  784. through "cb", the UNIX C beautifier.  If you have a file that contains
  785. a bunch of lines that need to be sorted you can do that from inside
  786. JOVE too, by filtering the region through the UNIX "sort" command.
  787. Before output from the command replaces the region JOVE stores the old
  788. text in the kill ring.  If you are unhappy with the results a "yank-
  789. pop" command will get back the old text.
  790.  
  791. :entry "find-file" "Command"
  792. This reads a specified file into its own buffer and then selects that
  793. buffer.  If you've already read this file into a buffer, that buffer
  794. is simply selected.  If the file doesn't yet exist, JOVE will print
  795. "(New file)" so that you know.  If possible, the buffer is named after
  796. the filename (ignoring any directory part).
  797.  
  798. :entry "find-tag" "Command"
  799. This finds the file that contains the specified tag.  JOVE looks up
  800. tags by default in the "tags" file in the current directory, as
  801. created by the UNIX command "ctags(1)".  You can change the default
  802. tag name by setting the "tag-file" variable to another name.  If you
  803. specify a numeric argument to this command, you will be prompted for a
  804. tag file.  This is a good way to specify another tag file without
  805. changing the default.
  806.  
  807. :entry "find-tag-at-point" "Command"
  808. This finds the file that contains the tag that point is currently in.
  809. See "find-tag".
  810.  
  811. :entry "first-non-blank" "Command"
  812. This moves point (backwards or forwards) to the indent of the current
  813. line.
  814.  
  815. :entry "forward-character" "Command"
  816. This moves point forward over a single character or line-separator.
  817. Thus if point is at the end of the line it moves to the beginning of
  818. the next one.
  819.  
  820. :entry "forward-list" "Command"
  821. This moves point forward over a list, which is any text between
  822. properly matching (...), [...] or {...}.  It first searches forward
  823. for a "(" and then moves to the matching ")".  This is useful when you
  824. are trying to find unmatched parentheses in a program.  Arguments are
  825. accepted, and negative arguments search backwards.  See also "forward-
  826. s-expression".
  827.  
  828. :entry "forward-paragraph" "Command"
  829. This moves point forward to the end of the current or next paragraph.
  830. Paragraphs are bounded by lines that match "paragraph-delimiter-
  831. pattern" (by default, those that are empty or look like troff or TeX
  832. commands).  A change in indentation may also signal a break between
  833. paragraphs, except that JOVE allows the first line of a paragraph to
  834. be indented differently from the other lines.  Arguments are accepted,
  835. and negative arguments search backwards.
  836.  
  837. :entry "forward-s-expression" "Command"
  838. This moves point forward over an s-expression, that is over a Lisp
  839. atom or a C identifier (depending on the major mode) ignoring
  840. punctuation and whitespace; or, if the nearest succeeding significant
  841. character is one of "([{", over a list as in "forward-list".
  842. Arguments are accepted, and negative arguments search backwards.
  843.  
  844. :entry "forward-sentence" "Command"
  845. This moves point forward to the end of the current or next sentence.
  846. JOVE considers the end of a sentence to be the characters ".", "!" or
  847. "?", followed possibly by "'", "''", or """, followed by a Return or
  848. whitespace.  Arguments are accepted, and negative arguments search
  849. backwards.
  850.  
  851. :entry "forward-word" "Command"
  852. This moves point forward to the end of the current or next word.
  853.  
  854. :entry "fundamental-mode" "Command"
  855. This sets the major mode to Fundamental.  Fundamental mode is the mode
  856. of the Minibuf, and hence of anything typed in the message line.
  857.  
  858. :entry "gather-numeric-argument" "Command"
  859. This command is one of two ways to specify a numeric argument to a
  860. command.  Typing this command once means, Do the next command 4 times.
  861. Typing it twice will do the next command 16 times, and so on.  If at
  862. any point you type a number, then that number will be used instead of
  863. 4.  For instance, ^U 3 5 means do the next command 35 times (assuming
  864. "gather-numeric-argument" is bound to ^U).
  865.  
  866. :entry "goto-line" "Command"
  867. If a positive numeric argument is supplied, point moves to the
  868. beginning of that line.  If the argument is negative, it indicates how
  869. many lines from the end of the buffer to move point to.  If no
  870. argument is supplied one is prompted for.
  871.  
  872. :entry "goto-window-with-buffer" "Command"
  873. This command prompts for a buffer name and then selects that buffer.
  874. If the buffer is currently being displayed in one of the windows, that
  875. window is selected instead.
  876.  
  877. :entry "grind-s-expr" "Command"
  878. When point is positioned on a "(", this re-indents that LISP
  879. expression.
  880.  
  881. :entry "grow-window" "Command"
  882. This makes the active window one line bigger.  This only works when
  883. there is more than one window and provided there is room to change the
  884. size.  See also "shrink-window".
  885.  
  886. :entry "handle-tab" "Command"
  887. This handles indenting to the "right" place in C and Lisp mode, and
  888. just inserts itself in Text mode.
  889.  
  890. :entry "highlight-attribute" "Variable"
  891. (IBM PC version only) This specifies how the attribute (color) of a
  892. character is to be changed when it is highlighted.  Highlighting is
  893. indicated by exclusive oring this value with the normal attribute for
  894. the character.  The default is 16.
  895.  
  896. :entry "highlight-mark" "Variable"
  897. When this is on, jove will highlight the mark if currently visible.
  898. The mark is highlighted with an underscore.
  899.  
  900. :entry "i-search-forward" "Command"
  901. Incremental search.  Like search-forward except that instead of
  902. prompting for a string and searching for that string all at once, it
  903. accepts the string one character at a time.  After each character you
  904. type as part of the search string, it searches for the entire string
  905. so far.  When you like what it found, type Return to finish the
  906. search.  You can take back a character with DEL and the search will
  907. back up to the position before that character was typed.  ^G aborts
  908. the search.
  909.  
  910. :entry "i-search-reverse" "Command"
  911. Incremental search.  Like search-reverse except that instead of
  912. prompting for a string and searching for that string all at once, it
  913. accepts the string one character at a time.  After each character you
  914. type as part of the search string, it searches for the entire string
  915. so far.  When you like what it found, type Return to finish the
  916. search.  You can take back a character with DEL and the search will
  917. back up to the position before that character was typed.  ^G aborts
  918. the search.
  919.  
  920. :entry "i-shell-command" "Command"
  921. This is like "shell-command" except that it launches an interactive
  922. process and so lets you continue with your editing while the command
  923. is running.  This is really useful for long running commands with
  924. sporadic output.  See also the variable "wrap-process-lines".
  925.  
  926. :entry "insert-file" "Command"
  927. This inserts a specified file into the selected buffer at point.
  928. Point is positioned at the beginning of the inserted file.
  929.  
  930. :entry "internal-tabstop" "Variable"
  931. This is the obsolete name for "tab-width".
  932.  
  933. :entry "interrupt-character" "Variable"
  934. This specifies what character should be used as the operating system's
  935. tty driver interrupt character.  When this character is typed, the tty
  936. driver generates SIGINT signal.  This will interrupt a non-interactive
  937. process.  If no such process is running, JOVE'S will offer you the
  938. option of continuing, or crashing JOVE'S (trying to save your work).
  939. This is a crude and desperate way to stop JOVE'S.  Unfortunately there
  940. is no way to turn off the interrupt character.  The default is ^].
  941. See also "abort-char".
  942.  
  943. :entry "interrupt-process" "Command"
  944. This sends the signal SIGINT to the interactive process in the
  945. selected buffer.  This only works if you are inside a buffer bound to
  946. an interactive process.
  947.  
  948. :entry "kill-next-word" "Command"
  949. This kills the text from point to the end of the current or next word.
  950. The killed text is sent to the kill ring.
  951.  
  952. :entry "kill-previous-word" "Command"
  953. This kills the text from point to the beginning of the current or
  954. previous word.  The killed text is sent to the kill ring.
  955.  
  956. :entry "kill-process" "Command"
  957. This command prompts for a buffer name or buffer number (just as
  958. "select-buffer" does) and then sends the process in that buffer the
  959. signal SIGKILL.
  960.  
  961. :entry "kill-region" "Command"
  962. This deletes the text in the region and saves it on the kill ring.
  963. Commands that delete text but save it on the kill ring all have the
  964. word "kill" in their names.  Use the "yank" command to get back the
  965. most recent kill.
  966.  
  967. :entry "kill-s-expression" "Command"
  968. This kills the text from point to the end of the current or next s-
  969. expression.  The killed text is sent to the kill ring.
  970.  
  971. :entry "kill-some-buffers" "Command"
  972. This goes through all the existing buffers and asks whether or not to
  973. delete each one.  If you decide to delete a buffer, and it turns out
  974. that the buffer is modified, JOVE will offer to save it first.  This
  975. is useful for when JOVE runs out of memory to store lines (this only
  976. happens on PDP-11's) and you have lots of buffers that you are no
  977. longer using.  See also the "delete-buffer" command.
  978.  
  979. :entry "kill-to-beginning-of-sentence" "Command"
  980. This kills from point to the beginning of the current or previous
  981. sentence.  If a negative numeric argument is supplied it kills from
  982. point to the end of the current or next sentence.  The killed text is
  983. sent to the kill ring.
  984.  
  985. :entry "kill-to-end-of-line" "Command"
  986. This kills from point to the end of the current line.  When point is
  987. at the end of the line (discounting any white space) the line-
  988. separator is also deleted and the next line is joined with current
  989. one.  If a numeric argument is supplied that many lines are killed; if
  990. the argument is negative that many lines before point are killed; if
  991. the argument is zero the text from point to the beginning of the line
  992. is killed.  The killed text is sent to the kill ring.
  993.  
  994. :entry "kill-to-end-of-sentence" "Command"
  995. This kills from point to the end of the current or next sentence.  If
  996. a negative numeric argument is supplied it kills from point to the
  997. beginning of the current or previous sentence.  The killed text is
  998. sent to the kill ring.
  999.  
  1000. :entry "lc-ctype" "Variable"
  1001. This string variable determines how non-ASCII characters are
  1002. displayed, and which characters are to be considered as upper-case,
  1003. lower-case, printable, etc.  The default is the implementation-defined
  1004. native environment; under POSIX, it is determined by whichever of the
  1005. environment variables LC_ALL, LC_CTYPE or LANG is first found to be
  1006. set, and is otherwise "C".  Some useful values of "lc-ctype" might be:
  1007.  
  1008.      ""             Default: the native environment.
  1009.      "C"            Strict ASCII.  All other characters greater than \177
  1010.                     rendered in octal.
  1011.      "iso_8859_1"   Latin-1 alphabet.
  1012.  
  1013.  
  1014. :entry "left-margin" "Variable"
  1015. This is how far lines should be indented when Auto Indent mode is on,
  1016. or when the "newline-and-indent" command is run (usually by typing
  1017. Linefeed).  It is also used by "fill-paragraph" and Auto Fill mode.
  1018. If the value is zero (the default) then the left margin is determined
  1019. from the surrounding lines.
  1020.  
  1021. :entry "left-margin-here" "Command"
  1022. This sets the "left-margin" variable to the current position of point.
  1023. This is an easy way to say, "Make the left margin begin here," without
  1024. having to count the number of spaces over it actually is.
  1025.  
  1026. :entry "lisp-mode" "Command"
  1027. This turns on the Lisp major mode.  In Lisp mode, the characters Tab
  1028. and ")" are treated specially, similar to the way they are treated in
  1029. C mode.  Also, Auto Indent mode is affected, and handled specially.
  1030. See also the "c-mode" command.
  1031.  
  1032. :entry "list-buffers" "Command"
  1033. This types out a list containing various information about each
  1034. buffer.  The list looks like this:
  1035.  
  1036.       (* means the buffer needs saving)
  1037.       NO  Lines Type        Name           File
  1038.       --  ----- ----        ----           ----
  1039.       1   1     File        Main           [No file]
  1040.       2   1     Scratch   * Minibuf        [No file]
  1041.       3   519   File      * commands.doc   commands.doc
  1042.  
  1043. The first column lists the buffer's number.  When JOVE prompts for a
  1044. buffer name you can either type in the full name, or you can simply
  1045. type the buffer's number.  The second column is the number of lines in
  1046. the buffer.  The third says what type of buffer.  There are four
  1047. types: File, Scratch, Process and I-Process.  "File" is simply a
  1048. buffer that holds a file; "Scratch" is for buffers that JOVE uses
  1049. internally; "Process" is one that holds the output from a UNIX
  1050. command; "I-Process" is one that has an interactive process attached
  1051. to it.  The next column contains the name of the buffer.  And the last
  1052. column is the name of the file that's attached to the buffer.  In this
  1053. case, both Minibuf and commands.doc have been changed but not yet
  1054. saved.  In fact Minibuf won't be saved since it's a Scratch buffer.
  1055.  
  1056. :entry "list-processes" "Command"
  1057. This makes a list somewhat like "list-buffers" does, except its list
  1058. consists of the current interactive processes.  The list looks like
  1059. this:
  1060.  
  1061.       Buffer           Status           Pid       Command
  1062.       ------           ------           ---       -------
  1063.       *shell*          Running          18415     shell
  1064.       fgrep            Done             18512     fgrep -n Buffer *.c
  1065.  
  1066. The first column has the name of the buffer to which the process is
  1067. attached.  The second has the status of the process; if a process has
  1068. exited normally the status is "Done" as in fgrep; if the process
  1069. exited with an error the status is "Exit N" where N is the value of
  1070. the exit code; if the process was killed by some signal the status is
  1071. the name of the signal that was used; otherwise the process is
  1072. running.  The last column is the name of the command that is being
  1073. run.
  1074.  
  1075. :entry "local-bind-keymap-to-key" "Command"
  1076. This is like "local-bind-to-key" except that you use it to attach a
  1077. key sequence to a named keymap.  The only reasonable use is to bind
  1078. some extra key to "ESC-map" for keyboards that make typing ESC
  1079. painful.
  1080.  
  1081. :entry "local-bind-macro-to-key" "Command"
  1082. This is like "local-bind-to-key" except you use it to attach a key
  1083. sequence to a named macro.
  1084.  
  1085. :entry "local-bind-to-key" "Command"
  1086. This is like "bind-to-key", except that the binding is only enabled
  1087. when the selected buffer is the buffer that was current when the
  1088. command was executed.  In other words, the binding only applies to the
  1089. selected buffer.
  1090.  
  1091. :entry "macify" "Variable"
  1092. (Mac version only) When this variable is on, JOVE will use the
  1093. standard Macintosh file-selector dialog in place of the traditional
  1094. JOVE Minibuffer.
  1095.  
  1096. :entry "mail-check-frequency" "Variable"
  1097. This is how often (in seconds) JOVE should check your mailbox for
  1098. incoming mail.  If you set this to zero JOVE won't check for new mail.
  1099. See also the "mode-line", "mailbox" and "disable-biff" variables.  The
  1100. default is 60.
  1101.  
  1102. :entry "mailbox" "Variable"
  1103. Set this to the full pathname of your mailbox.  JOVE will look here to
  1104. decide whether or not you have any unread mail.  This defaults to
  1105. "/usr/spool/mail/$USER", where "$USER" is set to your login name.
  1106.  
  1107. :entry "make-backup-files" "Variable"
  1108. If this variable is set, then whenever JOVE writes out a file, it will
  1109. move the previous version of the file (if there was one) to
  1110. "#filename~".  This is often convenient if you save a file by
  1111. accident.  The default value of this variable is "off".
  1112.  
  1113. :entry "make-buffer-unmodified" "Command"
  1114. This makes JOVE think the selected buffer hasn't been changed even if
  1115. it has.  Use this when you accidentally change the buffer but don't
  1116. want it considered changed.  Watch the mode line to see the *
  1117. disappear when you use this command.
  1118.  
  1119. :entry "make-macro-interactive" "Command"
  1120. This command is meaningful only while you are defining a keyboard
  1121. macro, and when you are expecting input in the message line.
  1122. Ordinarily, when a command in a macro definition requires a trailing
  1123. text argument (file name, search string, etc.), the argument you
  1124. supply becomes part of the macro definition.  If you want to be able
  1125. to supply a different argument each time the macro is used, then while
  1126. you are defining it, you should give the "make-macro-interactive"
  1127. command just before typing the argument which will be used during the
  1128. definition process.  Note: you must bind this command to a key in
  1129. order to use it; you can't say "ESC X make-macro-interactive".
  1130.  
  1131. :entry "mark-threshold" "Variable"
  1132. This variable contains the number of lines point may move by before
  1133. the mark is set.  If, in a search or some other command that may move
  1134. point, point moves by more than this many lines, the mark is set so
  1135. that you may return easily.  The default value of this variable is 22
  1136. (one screenful, on most terminals).  See also the commands "search-
  1137. forward", "search-reverse", "beginning-of-file" and "end-of-file".
  1138.  
  1139. :entry "match-regular-expressions" "Variable"
  1140. When set, JOVE will match regular expressions in search patterns.
  1141. This makes special the characters ., *, [ and ].  See the JOVE Manual
  1142. for a full discussion of regular-expressions.
  1143.  
  1144. :entry "meta-key" "Variable"
  1145. You should set this variable to "on" if your terminal has a real Meta
  1146. key which forces the 8th bit of each character.  If your terminal has
  1147. such a key, then a key sequence like ESC Y can be entered by holding
  1148. down Meta and typing Y.  On the IBM PC, this variable affects how ALT
  1149. is interpreted.  On the Macintosh, it affects how Option is
  1150. interpreted.  NOTE: In some older UNIX systems, JOVE must switch the
  1151. tty to raw mode to accept the 8-bit characters generated by a meta
  1152. key.  Unfortunately, the "interrupt-character" does not generate an
  1153. interrupt in raw mode.
  1154.  
  1155. :entry "mode-line" "Variable"
  1156. The format of the mode line can be determined by setting this
  1157. variable.  The items in the line are specified using a format similar
  1158. to that used by "printf(3)", with the special things being marked as
  1159. "%x".  Digits may be used between the '%' and the 'x' to mean repeat
  1160. that many times.  'x' may be:
  1161.  
  1162.           C    checks for new mail, and displays "[New mail]" if there is any
  1163.                (see also the "mail-check-frequency" and "mailbox" variables)
  1164.           F    the current file name, with leading path stripped
  1165.           M    the current list of major and minor modes
  1166.           b    the selected buffer name
  1167.           c    the fill character (-)
  1168.           d    the current directory
  1169.           e    extra space in mode line is distributed evenly
  1170.                among the places %e is used (used for justifying,
  1171.                separating, or centering parts of the mode line)
  1172.           f    the current file name
  1173.           ixy  x, when the buffer's file has been changed behind JOVE's back,
  1174.                y, when not
  1175.           mxy  x, when the buffer is modified or y, when not
  1176.           n    the selected buffer number
  1177.           p    interactive process status for process windows
  1178.           s    space, but only if previous character is not a space
  1179.           t    the current time (updated automatically)
  1180.           w    a '>' for windows which are scrolled left
  1181.           [ ]  the square brackets printed when in a recursive edit
  1182.           ( )  items enclosed in %( ... %) will only be printed on
  1183.                the bottom mode line, rather than copied when the
  1184.                window is split
  1185.  
  1186. In addition, any other character is simply copied into the mode line.
  1187. Characters may be escaped with a backslash.  To get a feel for all
  1188. this, try typing "ESC X print mode-line" and compare the result with
  1189. your current mode line.
  1190.  
  1191. :entry "mode-line-attribute" "Variable"
  1192. (IBM PC version only) This specifies the screen attribute (color) for
  1193. characters in the mode line.  The default is 112 (black on white).
  1194.  
  1195. :entry "mode-line-should-standout" "Variable"
  1196. If set, the mode line will be printed in reverse video, if your
  1197. terminal supports it.  The default for this variable is "on".
  1198.  
  1199. :entry "name-kbd-macro" "Command"
  1200. This copies the keyboard macro and gives it a name freeing up the
  1201. keyboard macro so you can define some more.  Keyboard macros with
  1202. their own names can be bound to keys just like built in commands can.
  1203. See the "define-macro", "source" and "write-macros-to-file" commands.
  1204.  
  1205. :entry "newline" "Command"
  1206. This divides the current line at point moving all the text to the
  1207. right of point down onto the newly created line.  Point moves down to
  1208. the beginning of the new line.  In Auto Indent mode, the new line will
  1209. be indented to match the old line.
  1210.  
  1211. :entry "newline-and-backup" "Command"
  1212. This divides the current line at point moving all the text to the
  1213. right of point down onto the newly created line.  The difference
  1214. between this and "newline" is that point does not move down to the
  1215. beginning of the new line.
  1216.  
  1217. :entry "newline-and-indent" "Command"
  1218. This behaves in any mode the same way as "newline" does in Auto Indent
  1219. mode.
  1220.  
  1221. :entry "next-error" "Command"
  1222. This moves to the next error in the list of errors that were parsed
  1223. with "parse-errors".  In one window the list of errors is shown with
  1224. the current one always at the top.  If the file that contains the
  1225. error is not already in a buffer, it is read in.  Its buffer is
  1226. displayed in another window and point is positioned in this window on
  1227. the line where the error occurred.
  1228.  
  1229. :entry "next-line" "Command"
  1230. This moves point down to the corresponding position on the next line
  1231. (or the end of that line if it does not extend so far).
  1232.  
  1233. :entry "next-page" "Command"
  1234. This displays the next page of the selected buffer by taking the
  1235. bottom line of the window and redrawing the window with it at the top.
  1236. If there isn't another page in the buffer JOVE rings the bell.  If a
  1237. numeric argument of only - (with no digits) is supplied, the previous
  1238. page is displayed.  Otherwise, if a numeric argument is supplied the
  1239. screen is scrolled up that many lines, exactly as in the "scroll-up"
  1240. command; if the argument is negative the screen is scrolled down.
  1241.  
  1242. :entry "next-window" "Command"
  1243. This moves into the next window.  Windows live in a circular list so
  1244. when you're in the bottom window and you try to move to the next one
  1245. you are moved to the top window.  It is an error to use this command
  1246. with only one window.
  1247.  
  1248. :entry "number-lines-in-window" "Command"
  1249. This displays the line numbers for each line in the buffer being
  1250. displayed.  The number isn't actually part of the text; it's just
  1251. printed before the actual buffer line is.  To turn this off you run
  1252. the command again; it toggles.
  1253.  
  1254. :entry "one-key-confirmation" "Variable"
  1255. If this variable is set, a single keystroke of y or n is expected in
  1256. answer to yes/no questions.  Normally, a yes/no question must be
  1257. answered with any non-empty prefix of yes or no, followed by a Return
  1258.  
  1259. :entry "over-write-mode" "Command"
  1260. This turns Over Write minor mode on in the selected buffer.  Without a
  1261. numeric argument, the command toggles the mode; with a zero argument,
  1262. the mode is turned off; with a non-zero argument, the mode is turned
  1263. on.  When on, this mode changes the way the self-inserting characters
  1264. work.  Instead of inserting themselves and pushing the rest of the
  1265. line over to the right, they replace or over-write the existing
  1266. character.  Also, DEL replaces the character before point with a space
  1267. instead of deleting it.  When Over Write mode is on "OvrWt" is
  1268. displayed in the mode line.
  1269.  
  1270. :entry "page-next-window" "Command"
  1271. This displays the next page in the next window.  It switches to the
  1272. next window, performs a "next-page" command (with any numeric
  1273. argument), and switches back to the original window.  Note that an
  1274. argument of just "-" will thus display the previous page.
  1275.  
  1276. :entry "paren-flash" "Command"
  1277. This command causes the characters bound to it to be inserted, and
  1278. then to partake in C mode curly brace indentation, Lisp mode
  1279. parenthesis indentation, and the Show Match mode paren/curly-
  1280. brace/square-bracket flashing.
  1281.  
  1282. :entry "paragraph-delimiter-pattern" "Variable"
  1283. When JOVE is searching for a paragraph boundary, if this pattern (a
  1284. regular expression) matches the start of a line, that line is treated
  1285. as a paragraph delimiter.  The default pattern recognizes blank lines,
  1286. troff control lines, and lines starting with a TeX control sequence.
  1287.  
  1288. There is a special provision for TeX: if a line is matched by the
  1289. pattern, and the match is of exactly an initial \, that line is only
  1290. treated as a delimiter if the next line also starts with \.
  1291.  
  1292. :entry "paren-flash-delay" "Variable"
  1293. How long, in tenths of a second, JOVE should pause on a matching
  1294. parenthesis in Show Match mode.  The default is 5.
  1295.  
  1296. :entry "parse-errors" "Command"
  1297. This takes the list of C compilation errors (or the output from
  1298. another program in an acceptable format) in the selected buffer and
  1299. parses them for use with the "next-error", "previous-error" and
  1300. "current-error" commands.  This is a very useful tool and helps with
  1301. compiling C programs or, when used in conjunction with the UNIX "grep"
  1302. command, with making changes to a bunch of files.  JOVE finds each
  1303. file that has an error and remembers each line that contains an error.
  1304. It doesn't matter if later you insert or delete some lines in the
  1305. buffers containing errors; JOVE remembers where they are regardless.
  1306. "current-error" is automatically executed after one of the parse
  1307. commands, so you end up at the first error.  The variable "error-
  1308. format-string" specifies, by means of regular-expressions, the format
  1309. of errors to be recognized.  Its default value can handle messages
  1310. from "cc", "cpp", "lint" and "grep -n".
  1311.  
  1312. :entry "parse-spelling-errors-in-buffer" "Command"
  1313. This parses a list of words in the selected buffer and looks them up
  1314. in another buffer that you specify.  It is invoked automatically by
  1315. the "spell-buffer" command.
  1316.  
  1317. :entry "pause-jove" "Command"
  1318. This stops JOVE and returns control to the parent shell.  This only
  1319. works on systems that have the job control facility.  To return to
  1320. JOVE you type "fg" to the shell.
  1321.  
  1322. :entry "pop-mark" "Command"
  1323. JOVE remembers the last eight marks and you use "pop-mark" to go
  1324. backward through the ring of marks.  If you execute "pop-mark" enough
  1325. times you will eventually get back to where you started.  This command
  1326. is also executed when you run "set-mark" with a numeric argument.
  1327.  
  1328. :entry "popd" "Command"
  1329. This pops one entry off the directory stack.  Entries are pushed with
  1330. the "pushd" or "pushlibd" commands.  The names were stolen from the C-
  1331. shell and the behavior is the same.
  1332.  
  1333. :entry "previous-error" "Command"
  1334. This is the same as "next-error" except it goes to the previous error.
  1335. See "next-error" for documentation.
  1336.  
  1337. :entry "previous-line" "Command"
  1338. This moves point up to the corresponding position on the previous line
  1339. (or the end of that line if it does not extend so far).
  1340.  
  1341. :entry "previous-page" "Command"
  1342. This displays the previous page of the selected buffer by taking the
  1343. top line and redrawing the window with it at the bottom.  If a numeric
  1344. argument of only - (with no digits) is supplied, the next page is
  1345. displayed.  Otherwise, if a numeric argument is supplied the screen is
  1346. scrolled down that many lines, exactly as in the "scroll-down"
  1347. command; if the argument is negative the screen is scrolled up.
  1348.  
  1349. :entry "previous-window" "Command"
  1350. This moves into the previous window.  Windows live in a circular list
  1351. so when you're in the top window and you try to move to the previous
  1352. one you are moved to the bottom window.  It is an error to use this
  1353. command with only one window.
  1354.  
  1355. :entry "print" "Command"
  1356. This displays the value of a JOVE variable in the message line.
  1357.  
  1358. :entry "process-bind-keymap-to-key" "Command"
  1359. This is like "process-bind-to-key" except that you use it to attach a
  1360. key sequence to named keymap.  The only reasonable use is to bind some
  1361. extra key to "ESC-map" for keyboards that make typing ESC painful.
  1362.  
  1363. :entry "process-bind-macro-to-key" "Command"
  1364. This is like "process-bind-to-key" except you use it to attach a key
  1365. sequence to a named macro.
  1366.  
  1367. :entry "process-bind-to-key" "Command"
  1368. This command is identical to "bind-to-key", except that it only
  1369. affects your bindings when you are in a buffer attached to an
  1370. interactive process.  When you enter the process buffer, any keys
  1371. bound with this command will automatically take their new values.
  1372. When you switch to a non-process buffer, the old bindings for those
  1373. keys will be restored.  For example, you might want to execute
  1374.  
  1375.      process-bind-to-key stop-process ^C ^Z
  1376.      process-bind-to-key interrupt-process ^C ^C
  1377.  
  1378. Then, when you start up an interactive process and switch into that
  1379. buffer, ^C ^Z will execute "stop-process" and ^C ^C will execute
  1380. "interrupt-process".  Bindings effective only in process windows are
  1381. shown with a "Proc:" prefix in this manual and by the "apropos" and
  1382. "describe-bindings" commands.
  1383.  
  1384. :entry "process-dbx-output" "Command"
  1385. This command only makes sense in a buffer running an interactive shell
  1386. process.  If you are running "dbx" in a window, JOVE will
  1387. automatically find the file you are currently stepping through and
  1388. display it in another window whenever you type "where" or while you're
  1389. stepping through a program, or when you reach a breakpoint.  The
  1390. string DBX will appear in the mode line along with the process status
  1391. when this feature is enabled.  See also the variable "dbx-format-
  1392. string".
  1393.  
  1394. :entry "process-newline" "Command"
  1395. This command is normally bound to Return as if by a "process-bind-to-
  1396. key" so that it will only be bound in a process window.  JOVE does two
  1397. different things depending on where you are when you hit Return.  When
  1398. you're in the last line of the interactive process buffer, point moves
  1399. to the end of the line, the line is terminated, and the line is made
  1400. available as input to the process.  When point is positioned in some
  1401. other line, that line is copied to the end of the buffer (with the
  1402. prompt stripped) and point is moved there with it, so you can then
  1403. edit that line before sending it to the process.  This command must be
  1404. bound to the key you usually use to enter shell commands (Return), or
  1405. else you won't be able to enter any.  See the variable "process-
  1406. prompt".
  1407.  
  1408. :entry "process-prompt" "Variable"
  1409. What a prompt looks like from the "shell" and "i-shell-command"
  1410. processes.  The default is "% ", the default C-shell prompt.  This is
  1411. actually a regular expression search string.  So you can set it to be
  1412. more than one thing at once using the \| operator.  For instance, for
  1413. LISP hackers, the prompt can be
  1414.  
  1415.      "% \|-> \|<[0-9]>: ".
  1416.  
  1417.  
  1418. :entry "process-send-data-no-return" "Command"
  1419. This is like "process-newline" except it sends everything to the
  1420. process without the newline.  Normally, when you type return in a
  1421. process buffer it sends everything you typed including the Return.
  1422. This command just provides a way to send data to the process without
  1423. having to send a newline as well.
  1424.  
  1425. :entry "push-shell" "Command"
  1426. This spawns a child shell and relinquishes control to it.  Within this
  1427. shell, $1 can be used to refer to the filename (if any) of the
  1428. selected buffer.  This works on any version of UNIX, but this isn't as
  1429. good as "pause-jove" because it takes time to start up the new shell
  1430. and you get a brand new environment every time.  To return to JOVE,
  1431. simply exit the shell.
  1432.  
  1433. :entry "pushd" "Command"
  1434. This pushes a directory onto the directory stack and cd's into it.  It
  1435. asks for the directory name but if you don't specify one it switches
  1436. the top two entries on the stack.  It purposely behaves the same as C-
  1437. shell's "pushd".
  1438.  
  1439. :entry "pushlibd" "Command"
  1440. Performs same function as "pushd" except that it pushes the Jove
  1441. sharable library directory.  This directory holds the system-wide
  1442. "jove.rc" and the text used by the "describe-command" and "describe-
  1443. variable" commands.  It is mainly intended for use with the "jove.rc"
  1444. file.
  1445.  
  1446. :entry "pwd" "Command"
  1447. This prints the pathname of the working directory, as in the UNIX
  1448. "pwd" command.
  1449.  
  1450. :entry "query-replace-string" "Command"
  1451. This replaces strings matching a specified regular-expression with a
  1452. specified replacement string.  When a match is found, point is moved
  1453. to it and then JOVE asks what to do.  The options are:
  1454.  
  1455.      Space or Y or y     to replace this match and go on to the next one.
  1456.      Period              to replace this match and then stop.
  1457.      DEL, BS, or N or n  to skip this match and go on to the next one.
  1458.      ^R or R or r        to enter a recursive edit.  This lets you temporarily
  1459.                          suspend the replace, do some editing, and then return
  1460.                          to continue where you left off.  To continue with the
  1461.                          "query-replace-string", use the "exit-jove" command.
  1462.      ^W                  to delete the match and then enter a recursive edit.
  1463.      ^U or U or u        to undo all changes to the last modified line and
  1464.                          continue the search from the start of that line.
  1465.      ! or P or p         to go ahead and replace the remaining matches without
  1466.                          asking, as in "replace-string".
  1467.      Return or Q or q    to stop the "query-replace-string".
  1468.      ^L                  to redraw the screen
  1469.  
  1470. It is often useful to include a piece of the matched string in the
  1471. replacement, especially if the piece was not matched by literal text.
  1472. To select which part of the matched string is to be used, the
  1473. corresponding part of the pattern is bracketed with \( and \).  More
  1474. than one set of brackets may be used, as long as they are properly
  1475. nested.  The matching substring is selected in the replacement string
  1476. using \ followed by a digit: \1 for the first, \2 for the second, and
  1477. so on.  Conveniently, \0 always stands for the complete matched
  1478. string, as if the whole regular expression were bracketed.  For
  1479. example, the following command will reverse pairs of comma-separated
  1480. numbers:
  1481.  
  1482.      : query-replace-string \([0-9]*\),\([0-9]*\) with \2,\1
  1483.  
  1484. The search for a match starts at point and goes to the end of the
  1485. buffer, so to replace in the entire buffer you must first go to the
  1486. beginning.  Each subsequent search starts at the position after the
  1487. previous match; if the previous match was an empty string, the search
  1488. is first advanced one character to prevent unbounded repetition.
  1489.  
  1490. :entry "quit-process" "Command"
  1491. Send the signal SIGQUIT to the interactive process in the selected
  1492. buffer.  This is equivalent to sending the "quit" character (which
  1493. most people have bound to ^\) to the process.  This only works if you
  1494. are in a buffer bound to an interactive process.
  1495.  
  1496. :entry "quoted-insert" "Command"
  1497. This lets you insert characters that normally would be executed as
  1498. other JOVE commands.  For example, to insert "^F" you type "^Q ^F"
  1499. (assuming "quoted-insert" is bound to ^Q).  NUL cannot be represented
  1500. in the buffer, so "quoted-insert" will insert "^@" in its stead.  On
  1501. the IBM PC under DOS, non-ASCII keystrokes are seen by JOVE as a hex
  1502. FF character followed by another character; "quoted-insert" will quote
  1503. both characters.
  1504.  
  1505. :entry "read-only-mode" "Command"
  1506. This turns on or off the Read-only minor mode.  Without a numeric
  1507. argument, the command toggles the mode; with a zero argument, the mode
  1508. is turned off; with a non-zero argument, the mode is turned on.  When
  1509. a buffer is in Read-only mode, any attempt to modify the buffer will
  1510. fail.  When a file is found, and it's not got write permission, JOVE
  1511. automatically puts the buffer in read-only mode.  This is very helpful
  1512. when you are in environments which use source control programs like
  1513. RCS and SCCS.  It prevents accidents like making a bunch of changes
  1514. and only THEN discovering that you haven't checked the file out for
  1515. making changes.
  1516.  
  1517. :entry "read-word-abbrev-file" "Command"
  1518. This reads a specified file that contains a bunch of abbreviation
  1519. definitions, and makes those abbreviations available.  See the "word-
  1520. abbrev-mode" command.
  1521.  
  1522. :entry "recursive-edit" "Command"
  1523. This enters a recursive editing level.  This isn't really very useful.
  1524. I don't know why it's available for public use.  I think I'll delete
  1525. it some day.
  1526.  
  1527. :entry "redraw-display" "Command"
  1528. This vertically centers the line containing point within the window.
  1529. If that line is already in place, the screen is first cleared and then
  1530. redrawn.  If a numeric argument is supplied, the line is positioned at
  1531. that offset from the top of the window.  For example, "ESC 0 ^L"
  1532. positions the line containing point at the top of the window (assuming
  1533. "redraw-display" is bound to ^L).
  1534.  
  1535. :entry "rename-buffer" "Command"
  1536. This lets you rename the selected buffer.
  1537.  
  1538. :entry "replace-in-region" "Command"
  1539. This is the same as "replace-string" except that it is restricted to
  1540. occurrences between point and the mark.
  1541.  
  1542. :entry "replace-string" "Command"
  1543. This replaces all occurrences of a specified string with a specified
  1544. replacement string.  This is just like "query-replace-string" except
  1545. that it replaces without asking.
  1546.  
  1547. :entry "right-margin" "Variable"
  1548. Where the right margin is for Auto Fill mode and the "fill-paragraph"
  1549. and "fill-region" commands.  The default is 78.
  1550.  
  1551. :entry "right-margin-here" "Command"
  1552. This sets the "right-margin" variable to the current position of
  1553. point.  This is an easy way to say, "Make the right margin begin
  1554. here," without having to count the number of spaces over it actually
  1555. is.
  1556.  
  1557. :entry "save-file" "Command"
  1558. This saves the selected buffer to the associated file.  This makes
  1559. your changes permanent so you should be sure you really want to do it.
  1560. If the buffer has not been modified "save-file" refuses to do the
  1561. save.  If you really do want to write the file you must use "write-
  1562. file".
  1563.  
  1564. :entry "scroll-all-lines" "Variable"
  1565. When this is "off", (the default) horizontal scrolling will only
  1566. affect the line containing point.  When it is "on", horizontal
  1567. scrolling will affect the whole window.  See also the "scroll-width"
  1568. variable.
  1569.  
  1570. :entry "scroll-bar" "Variable"
  1571. When this is turned "on", a section of the mode line at the foot of
  1572. each window is left in not-reverse-video, to show the position of the
  1573. window relative to the whole of the file represented by that buffer
  1574. (however, if the whole of the buffer is within the window, the whole
  1575. mode line remains inverted).
  1576.  
  1577. :entry "scroll-down" "Command"
  1578. This scrolls the screen one line down.  If the line containing point
  1579. moves past the bottom of the window, point is moved up to the top of
  1580. the window.  If a numeric argument is supplied that many lines are
  1581. scrolled; if the argument is negative the screen is scrolled up
  1582. instead.  See the "previous-page" command.
  1583.  
  1584. :entry "scroll-left" "Command"
  1585. This scrolls the text in the active window to the left.  If a numeric
  1586. argument is specified then the text is scrolled that number of
  1587. columns.  Otherwise, the text is scrolled by the number of columns
  1588. specified by the variable "scroll-width".  If the variable "scroll-
  1589. all-lines" is ON then "scroll-left" may actually do nothing if the
  1590. scrolling would cause point not to be visible.  A negative argument
  1591. scrolls right.  If the "mode-line" variable is suitably set, an
  1592. indication that the text is scrolled will be given in the mode line.
  1593.  
  1594. :entry "scroll-right" "Command"
  1595. This scrolls the text in the active window to the right.  If a numeric
  1596. argument is specified then the text is scrolled that number of
  1597. columns.  Otherwise, the text is scrolled by the number of columns
  1598. specified by the variable "scroll-width".  If the variable "scroll-
  1599. all-lines" is ON then "scroll-right" may actually do nothing if the
  1600. scrolling would cause point not to be visible.  A negative argument
  1601. scrolls left.
  1602.  
  1603. :entry "scroll-step" "Variable"
  1604. How many lines should be scrolled if the "previous-line" or "next-
  1605. line" commands move you off the top or bottom of the screen.  You may
  1606. wish to decrease this variable if you are on a slow terminal.  The
  1607. default value is 0, which means to center the current line in the
  1608. window.  If the value is negative, the behavior is slightly different.
  1609. If you move off the top of the window, and "scroll-step" is, say, -5
  1610. then the new line will be displayed 5 lines from the bottom of the
  1611. window.  If you move off the bottom of the window, the new line will
  1612. be positioned 5 lines from the top of the window.
  1613.  
  1614. :entry "scroll-up" "Command"
  1615. This scrolls the screen one line up.  If the line containing point
  1616. moves past the top of the window, point is moved down to the top of
  1617. the window.  If a numeric argument is supplied that many lines are
  1618. scrolled; if the argument is negative the screen is scrolled down
  1619. instead.  See also the "next-page" command.
  1620.  
  1621. :entry "scroll-width" "Variable"
  1622. Just as a buffer may be too long to be completely displayed in a
  1623. window, a line may be too wide.  JOVE handles wide lines through
  1624. horizontal scrolling, displaying only a portion of the line.  This
  1625. variable affects horizontal scrolling.  If point is outside the
  1626. displayed portion of its line, but is within the specified number of
  1627. columns beyond either side, the line is scrolled that much.
  1628. Otherwise, the line will be scrolled to center point.  The default
  1629. value is 10.  If the variable is 0, centering will always be used.
  1630. See also the "scroll-all-lines" variable.
  1631.  
  1632. :entry "search-exit-char" "Variable"
  1633. Set this to the character you want to use to exit incremental search.
  1634. The default is Newline, which makes "i-search" commands compatible
  1635. with normal string search.
  1636.  
  1637. :entry "search-forward" "Command"
  1638. This searches forward for a specified search string and positions
  1639. point at the end of the string if it's found.  If the string is not
  1640. found point remains unchanged.  This searches from point to the end of
  1641. the buffer, so any matches before point will be missed.  If point is
  1642. moved by more than the variable "mark-threshold", the old point will
  1643. be pushed.
  1644.  
  1645. :entry "search-forward-nd" "Command"
  1646. This is just like "search-forward" except that it doesn't assume a
  1647. default search string, and it doesn't set the default search string.
  1648. This is useful for defining macros, when you want to search for
  1649. something, but you don't want it to affect the current default search
  1650. string.
  1651.  
  1652. :entry "search-reverse" "Command"
  1653. This searches backward for a specified search string and positions
  1654. point at the beginning if the string if it's found.  If the string is
  1655. not found point remains unchanged.  This searches from point to the
  1656. beginning of the buffer, so any matches after point will be missed.
  1657. If point is moved by more than the variable "mark-threshold", the old
  1658. point will be pushed.
  1659.  
  1660. :entry "search-reverse-nd" "Command"
  1661. This is just like "search-reverse" except that it doesn't assume a
  1662. default search string, and it doesn't set the default search string.
  1663. This is useful for defining macros, when you want to search for
  1664. something, but you don't want it to affect the current default search
  1665. string.
  1666.  
  1667. :entry "select-buffer" "Command"
  1668. This selects a new or already existing buffer making it the current
  1669. one.  You can type either the buffer name or number.  If you type in
  1670. the name you need only type the name until it is unambiguous, at which
  1671. point typing Tab or Space will complete it for you.  If you want to
  1672. create a new buffer you can type Return instead of Space, and a new
  1673. empty buffer will be created.
  1674.  
  1675. :entry "select-buffer-1" "Command"
  1676. This selects buffer number 1, if it exists.
  1677.  
  1678. :entry "select-buffer-10" "Command"
  1679. This selects buffer number 10, if it exists.
  1680.  
  1681. :entry "select-buffer-2" "Command"
  1682. This selects buffer number 2, if it exists.
  1683.  
  1684. :entry "select-buffer-3" "Command"
  1685. This selects buffer number 3, if it exists.
  1686.  
  1687. :entry "select-buffer-4" "Command"
  1688. This selects buffer number 4, if it exists.
  1689.  
  1690. :entry "select-buffer-5" "Command"
  1691. This selects buffer number 5, if it exists.
  1692.  
  1693. :entry "select-buffer-6" "Command"
  1694. This selects buffer number 6, if it exists.
  1695.  
  1696. :entry "select-buffer-7" "Command"
  1697. This selects buffer number 7, if it exists.
  1698.  
  1699. :entry "select-buffer-8" "Command"
  1700. This selects buffer number 8, if it exists.
  1701.  
  1702. :entry "select-buffer-9" "Command"
  1703. This selects buffer number 9, if it exists.
  1704.  
  1705. :entry "self-insert" "Command"
  1706. This inserts the character that invoked it into the buffer at point.
  1707. Initially all but a few of the printing characters are bound to "self-
  1708. insert".  See also "paren-flash".
  1709.  
  1710. :entry "send-typeout-to-buffer" "Variable"
  1711. When this is "on" JOVE will send output that normally overwrites the
  1712. screen (temporarily) to a buffer instead.  This affects commands like
  1713. "list-buffers", "list-processes", "shell-command-with-typeout", and
  1714. commands that use completion.  The default value is "off".
  1715.  
  1716. :entry "set" "Command"
  1717. This sets a specified variable to a new value.
  1718.  
  1719. :entry "set-mark" "Command"
  1720. This sets the mark at the current position in the buffer.  It prints
  1721. the message "[Point pushed]" on the message line.  It says that
  1722. instead of "[Mark set]" because when you set the mark the previous
  1723. mark is still remembered on a ring of eight marks.  So "[Point
  1724. pushed]" means point is pushed onto the ring of marks and becomes the
  1725. value of "the mark".  To go through the ring of marks, use the "pop-
  1726. mark" command.  If you type this enough times you will get back to
  1727. where you started.  If a "set-mark" command is given a numeric
  1728. argument, it acts like a "pop-mark" command.
  1729.  
  1730. :entry "shell" "Variable"
  1731. The shell to be used with all the shell-* commands command.  If your
  1732. SHELL environment variable is set, it is used as the default value of
  1733. "shell"; otherwise "/bin/csh" is the default.  See also the
  1734. description of the "shell-flags" variable to see how to change the
  1735. flags passed to this shell.
  1736.  
  1737. :entry "shell" "Command"
  1738. This starts up an interactive shell in a window; if there is already
  1739. an interactive shell, it just selects that buffer.  JOVE uses "*shell-
  1740. n*" (where "n" is the argument of the command) as the name of the
  1741. buffer in which the interacting takes place.  Thus different argument
  1742. values refer to different interactive shells.  See the JOVE manual for
  1743. information on how to use interactive processes.  See also the
  1744. variable "wrap-process-lines".
  1745.  
  1746. :entry "shell-command" "Command"
  1747. This runs a UNIX command and places the output from that command in a
  1748. buffer.  Within the command, $1 can be used to refer the the filename
  1749. (if any) of the selected buffer.  JOVE creates a buffer that matches
  1750. the name of the command you specify and then attaches that buffer to a
  1751. window.  So, when you have only one window running, this command will
  1752. cause JOVE to split the window and attach the new buffer to that
  1753. window.  Otherwise, JOVE finds the most convenient of the available
  1754. windows and uses that one instead.  If the buffer already exists it is
  1755. first emptied (unless a numeric argument is specified).  If it's
  1756. already holding a file, not some output from a previous command, JOVE
  1757. asks permission before emptying the buffer.  Beware that if you go
  1758. ahead, not only do you lose any unsaved changes that you made to the
  1759. buffer, but the buffer's file name remains set, making it easy to
  1760. later accidentally overwrite the original file.  See also the variable
  1761. "wrap-process-lines".
  1762.  
  1763. :entry "shell-command-no-buffer" "Command"
  1764. This is just like "shell-command" except it just runs the command
  1765. without saving the output to any buffer.  It will report the success
  1766. of the command in the usual way.
  1767.  
  1768. :entry "shell-command-to-buffer" "Command"
  1769. This is just like "shell-command" except it lets you specify the
  1770. buffer to use.
  1771.  
  1772. :entry "shell-command-with-typeout" "Command"
  1773. This is just like "shell-command" except that instead of saving the
  1774. output to a buffer, and displaying it in a window, this just types out
  1775. the output in the same way that "list-buffers" does.  Actually, how
  1776. this behaves depends on the value of the variable "send-typeout-to-
  1777. buffer".  If it is "on" then "shell-command-with-typeout" will behave
  1778. just like "shell-command".  If a numeric argument is given, the
  1779. "completed successfully" message at the end is suppressed.
  1780.  
  1781. :entry "shell-flags" "Variable"
  1782. This specifies a flag argument that directs the shell to take the next
  1783. argument as a command to be executed.  The default is "-c" (suitable
  1784. for all known UNIX shells).  Under MSDOS, the default is "/c"
  1785. (suitable for command.com and similar MSDOS shells).  Other MSDOS
  1786. shells, such as MKS KSH require that this be changed to "-c".  Under
  1787. MSDOS, JOVE puts quotes around the command argument if "shell-flags"
  1788. starts with "-".  See the "shell" variable to change the default
  1789. shell.
  1790.  
  1791. :entry "shift-region-left" "Command"
  1792. This shifts the region left by "c-indentation-increment" OR by the
  1793. numeric argument, if one is supplied.  If a negative argument is
  1794. supplied the region is shifted the other way.
  1795.  
  1796. :entry "shift-region-right" "Command"
  1797. This shifts the region right by "c-indentation-increment" OR by the
  1798. numeric argument, if one is supplied.  If a negative argument is
  1799. supplied the region is shifted the other way.
  1800.  
  1801. :entry "show-match-mode" "Command"
  1802. This turns on or off the Show Match minor mode in the selected buffer.
  1803. Without a numeric argument, the command toggles the mode; with a zero
  1804. argument, the mode is turned off; with a non-zero argument, the mode
  1805. is turned on.  This mode changes "}", ")" and "]" so that when they
  1806. are typed they are inserted as usual, and then the cursor flashes back
  1807. to the matching "{", "(" or "[" (depending on what was typed) for
  1808. about half a second, and then goes back to just after the "}", ")" or
  1809. "]" that invoked the command.  This is useful for typing in
  1810. complicated expressions in a program.  You can change how long the
  1811. cursor sits on the matching parenthesis by setting the "paren-flash-
  1812. delay" variable in tenths of a second.  If the matching "{", "(" or
  1813. "[" isn't visible, the line containing the match is displayed on the
  1814. message line.
  1815.  
  1816. :entry "shrink-window" "Command"
  1817. This makes the active window one line shorter, if possible.  Windows
  1818. must be at least 2 lines high, one for the text and the other for the
  1819. mode line.  See also "grow-window".
  1820.  
  1821. :entry "source" "Command"
  1822. This reads a bunch of JOVE commands from a file.  If a numeric
  1823. argument is supplied to the "source" command, it will quietly do
  1824. nothing if it cannot read the file.
  1825.  
  1826. The format of the file is the same as that in the "jove.rc" file, or
  1827. your private ".joverc" in your home directory.  There should be one
  1828. command per line and it should be as though you were responding to an
  1829. "execute-named-command" command while in JOVE.  A command can be
  1830. optionally preceded by a numeric argument.  Lines commencing with a #
  1831. are treated as comments.  Control characters such as ^R may be
  1832. represented as themselves, or as "^" followed by "R".  ESC should be
  1833. represented by ^[.
  1834.  
  1835. Sometimes it is useful to do different things in different
  1836. circumstances.  To make this possible, there are two conditional
  1837. commands: "if" and "ifenv".  The "if" command takes as an operand a
  1838. shell command, which it runs.  If the command succeeds, the commands
  1839. after the "if", until a line containing "else" or "endif", are
  1840. performed.  Otherwise, these commands are suppressed and the commands
  1841. after any "else", up until an "endif", are executed.  Conditionals
  1842. nest in the normal way.  The "ifenv" command takes as operands the
  1843. name of an environment variable and a pattern.  If the environment
  1844. variable is defined and its value matches the pattern, the "ifenv"
  1845. succeeds.
  1846.  
  1847. For example, here are some lines from the file "jove.rc".
  1848.  
  1849.      bind-to-key pause-jove ^[S
  1850.      bind-to-key pause-jove ^[s
  1851.      set process-prompt ^[^%$#]*[%$#]
  1852.      # source any TERMinal-specific rc file
  1853.      1 source jove.rc.$TERM
  1854.  
  1855. What they do is to provide two alternative key bindings for "pause-
  1856. jove", set the variable "process-prompt", and attempt to call the
  1857. "source" command on the file "jove.rc.$TERM".  Because of the numeric
  1858. argument 1, there will be no complaint if this file cannot be found.
  1859.  
  1860. :entry "space-sentence-2" "Variable"
  1861. If set "on", two spaces are left after each sentence by commands such
  1862. as "fill-paragraph"; otherwise, one space is left.  The default is
  1863. "on".
  1864.  
  1865. :entry "spell-buffer" "Command"
  1866. This runs the selected buffer through the UNIX "spell" program and
  1867. places the output in buffer "Spell".  Then JOVE lets you edit the list
  1868. of words, expecting you to delete the ones that you don't care about,
  1869. i.e., the ones you know are spelled correctly.  Then the "parse-
  1870. spelling-errors-in-buffer" command comes along and finds all the
  1871. misspelled words and sets things up so the error commands "next-
  1872. error", "previous-error" and "current-error" work.  See also the
  1873. variable "error-window-size".
  1874.  
  1875. :entry "split-current-window" "Command"
  1876. This splits the active window into two equal parts (providing the
  1877. resulting windows would be big enough) and displays the selected
  1878. buffer in both windows.  Use "delete-other-windows" to go back to 1
  1879. window mode.  If a numeric argument is supplied, the window is split
  1880. "evenly" that many times (when possible).
  1881.  
  1882. :entry "start-remembering" "Command"
  1883. This is just another name for the "begin-kbd-macro" command.  It is
  1884. included for backward compatibility.
  1885.  
  1886. :entry "stop-process" "Command"
  1887. Send the signal SIGTSTP to the interactive process in the selected
  1888. buffer.  This is equivalent to sending the "stop" character (which
  1889. most people have bound to ^Z) to the process.  This only works if you
  1890. are in a buffer bound to an interactive process.
  1891.  
  1892. :entry "stop-remembering" "Command"
  1893. This is just another name for the "end-kbd-macro" command.  It is
  1894. included for backward compatibility.
  1895.  
  1896. :entry "string-length" "Command"
  1897. This prints the number of characters in the string that point sits in.
  1898. Strings are surrounded by double quotes.  JOVE knows that "\007" is
  1899. considered a single character, namely "^G", and also knows about other
  1900. common ones, like "\r" (Return) and "\n" (Linefeed).  This is mostly
  1901. useful only for C programmers.
  1902.  
  1903. :entry "suspend-jove" "Command"
  1904. This is a synonym for "pause-jove".
  1905.  
  1906. :entry "sync-frequency" "Variable"
  1907. The temporary files used by JOVE are forced out to disk every "sync-
  1908. frequency" modifications.  The default is 50, which really makes good
  1909. sense.  Unless your system is very unstable, you probably shouldn't
  1910. fool with this.
  1911.  
  1912. :entry "tab-width" "Variable"
  1913. When JOVE displays a Tab character, it moves point forward to the next
  1914. multiple of this variable.  If the value is 0, tab is displayed as ^I,
  1915. not whitespace.  The default value is 8.
  1916.  
  1917. :entry "tag-file" "Variable"
  1918. This is the name of the file in which JOVE should look up tag
  1919. definitions.  The default value is "./tags".
  1920.  
  1921. :entry "text-attribute" "Variable"
  1922. (IBM PC version only) This specifies the screen attribute (color) for
  1923. normal text characters.  The default is 7 (white on black).
  1924.  
  1925. :entry "text-mode" "Command"
  1926. This sets the major mode to Text.  This affects what JOVE considers as
  1927. characters that make up words.  For instance, Single-quote is not part
  1928. of a word in Fundamental mode, but is in Text mode.
  1929.  
  1930. :entry "tmp-file-pathname" "Variable"
  1931. This tells JOVE where to put the tmp files, which is where JOVE stores
  1932. buffers internally.  The default is in "/tmp", or as set up when your
  1933. system was compiled, but if you want to store them somewhere else, you
  1934. can set this variable.  If your system crashes a lot it might be a
  1935. good idea to set this variable to somewhere other than "/tmp" because
  1936. the system removes all the files in "/tmp" upon reboot, and so you
  1937. would not be able to recover editor buffers using the "jove -r"
  1938. command.
  1939.  
  1940. NOTE: In order for this to work correctly you must set this variable
  1941. BEFORE JOVE creates the tmp file.  You can set this in your ".joverc"
  1942. (the closer to the beginning the better), or as soon as you start up
  1943. JOVE before you read any files.
  1944.  
  1945. :entry "transpose-characters" "Command"
  1946. This switches the character before point with the one after point, and
  1947. then moves forward one.  This doesn't work at the beginning of the
  1948. line, and at the end of the line it switches the two characters before
  1949. point.  Since point is moved forward, so that the character that was
  1950. before point is still before point, you can use "transpose-characters"
  1951. to drag a character down the length of a line.
  1952.  
  1953. :entry "transpose-lines" "Command"
  1954. This switches the current line with the one above it, and then moves
  1955. down one so that the line that was above point is still above point.
  1956. This, like "transpose-characters", can be used to drag a line down a
  1957. page.
  1958.  
  1959. :entry "unbound" "Command"
  1960. This command acts as if an unbound key sequence were typed.  In fact,
  1961. that is its use: if you wish to unbind a key sequence, simply bind it
  1962. to this command.
  1963.  
  1964. :entry "update-time-frequency" "Variable"
  1965. How often the mode line is updated (and thus the time).  The default
  1966. is 30 seconds.
  1967.  
  1968. :entry "use-i/d-char" "Variable"
  1969. If your terminal has insert/delete character capability you can tell
  1970. JOVE not to use it by setting this to "off".  In my opinion it is only
  1971. worth using insert/delete character at low baud rates.  WARNING: if
  1972. you set this to "on" when your terminal doesn't have insert/delete
  1973. character capability, you will get weird (perhaps fatal) results.
  1974.  
  1975. :entry "version" "Command"
  1976. Displays the version number of this JOVE.
  1977.  
  1978. :entry "visible-bell" "Variable"
  1979. If the terminal has a visible bell, use it instead of beeping.
  1980.  
  1981. :entry "visible-spaces-in-window" "Command"
  1982. This displays an underscore character instead of each Space in the
  1983. window and displays a greater-than followed by spaces for each Tab in
  1984. the window.  The actual text in the buffer is not changed; only the
  1985. screen display is affected.  To turn this off you run the command
  1986. again; it toggles.
  1987.  
  1988. :entry "visit-file" "Command"
  1989. This reads a specified file into the selected buffer replacing the old
  1990. text.  If the buffer needs saving JOVE will offer to save it for you.
  1991. Sometimes you use this to start over, say if you make lots of changes
  1992. and then change your mind.  If that's the case you don't want JOVE to
  1993. save your buffer and you answer "NO" to the question.
  1994.  
  1995. :entry "window-find" "Command"
  1996. This lets you select another buffer in another window three different
  1997. ways.  This waits for another character which can be one of the
  1998. following:
  1999.  
  2000.      T    Finds a tag in the other window.
  2001.      ^T   Finds the tag at point in the other window
  2002.      F    Finds a file in the other window.
  2003.      B    Selects a buffer in the other window.
  2004.  
  2005. This is just a convenient short hand for "split-current-window" (or
  2006. "previous-window" if there are already two windows) followed by the
  2007. appropriate sequence for invoking each command.  With this, though,
  2008. there isn't the extra overhead of having to redisplay.  In addition,
  2009. you don't have to decide whether to use "split-current-window" or
  2010. "previous-window" since "window-find" does the right thing.
  2011.  
  2012. :entry "word-abbrev-mode" "Command"
  2013. This turns on or off Word Abbrev minor mode in the selected buffer.
  2014. Without a numeric argument, the command toggles the mode; with a zero
  2015. argument, the mode is turned off; with a non-zero argument, the mode
  2016. is turned on.  Word Abbrev mode lets you specify a word (an
  2017. abbreviation) and a phrase with which JOVE should substitute the
  2018. abbreviation.  You can use this to define words to expand into long
  2019. phrases, e.g., "jove" can expand into "Jonathan's Own Version of
  2020. Emacs"; another common use is defining words that you often misspell
  2021. in the same way, e.g., "thier" => "their" or "teh" => "the".  See the
  2022. information on the "auto-case-abbrev" variable.
  2023.  
  2024. There are two kinds of abbreviations: mode specific and global.  If
  2025. you define a Mode specific abbreviation in C mode, it will expand only
  2026. in buffers that are in C mode.  This is so you can have the same
  2027. abbreviation expand to different things depending on your context.
  2028. Global abbreviations expand regardless of the major mode of the
  2029. buffer.  The way it works is this: JOVE looks first in the mode
  2030. specific table, and then in the global table.  Whichever it finds it
  2031. in first is the one that's used in the expansion.  If it doesn't find
  2032. the word it is left untouched.  JOVE tries to expand words when you
  2033. type a punctuation character or Space or Return.  If you are in Auto
  2034. Fill mode the expansion will be filled as if you typed it yourself.
  2035.  
  2036. :entry "wrap-process-lines" "Variable"
  2037. If this variable is "on", the process output that is captured in a
  2038. buffer is wrapped just before the line would have as many characters
  2039. as there are columns on the screen.  This introduces extra newlines,
  2040. but it makes the output more readable.  Note that the folding does not
  2041. take into account that some characters (notably tabs) occupy more than
  2042. one column of the display.  The output of the "filter-region" command
  2043. is not processed in this way because the extra newlines are presumed
  2044. to be undesired in this case.
  2045.  
  2046. :entry "wrap-search" "Variable"
  2047. If set, searches will "wrap around" the ends of the buffer instead of
  2048. stopping at the bottom or top.  The default is "off".
  2049.  
  2050. :entry "write-file" "Command"
  2051. This saves the selected buffer to a specified file, and then makes
  2052. that file the default file name for this buffer.  If you specify a
  2053. file that already exists you are asked to confirm over-writing it.
  2054.  
  2055. :entry "write-files-on-make" "Variable"
  2056. When set, all modified files will be written out before calling make
  2057. when the "compile-it" command is executed.  The default is "on".
  2058.  
  2059. :entry "write-macros-to-file" "Command"
  2060. This writes the currently defined macros to a specified file in a
  2061. format appropriate for reading them back in with the "source" command.
  2062. The purpose of this command is to allow you to define macros once and
  2063. use them in other instances of JOVE.  See also the "define-macro"
  2064. command.
  2065.  
  2066. :entry "write-modified-files" "Command"
  2067. This saves all the buffers that need saving.  If you supply a numeric
  2068. argument it asks, for each buffer, whether you really want to save it.
  2069.  
  2070. :entry "write-region" "Command"
  2071. This writes the text in the region to a specified file.  If the file
  2072. already exists you are asked to confirm over-writing it.
  2073.  
  2074. :entry "write-word-abbrev-file" "Command"
  2075. This writes the currently defined abbreviations to a specified file.
  2076. They can be read back in and automatically defined with "read-word-
  2077. abbrev-file".
  2078.  
  2079. :entry "xj-mouse-commands" "Command"
  2080. Programs such as XJove and JoveTool generate these commands whenever a
  2081. mouse button is pressed or released, or the mouse is moved while the
  2082. button is pressed.  They are followed by parameters giving parameters
  2083. for the button pressed, the coordinates of the mouse, etc.  They are
  2084. not intended for direct use by the normal user.
  2085.  
  2086. The individual commands will now be described.
  2087.  
  2088. :entry "xj-mouse-copy-cut" "Command"
  2089. Performs a "copy-region" if the CTRL key was down, or a "kill-region"
  2090. if both CTRL and SHIFT were down.  This command is normally bound to
  2091. the release of button 2.
  2092.  
  2093. :entry "xj-mouse-line" "Command"
  2094. Sets the region to be the whole line containing the cursor.  This
  2095. command is normally bound to a triple down click of button 2, and the
  2096. presumed effects of the preceding double click are first undone.
  2097.  
  2098. :entry "xj-mouse-mark" "Command"
  2099. Both point and mark are set to the cursor.  This command is normally
  2100. bound to the pressing of button 2.
  2101.  
  2102. :entry "xj-mouse-point" "Command"
  2103. Point is set to the cursor.  This command is normally bound to the
  2104. single, double, and triple down-click and the dragging of button 1;
  2105. also the dragging of button 2.
  2106.  
  2107. :entry "xj-mouse-word" "Command"
  2108. Sets the region to be the word (or the gap between two words)
  2109. containing the cursor.  This command is normally bound to a double
  2110. down click of button 2, and the presumed effects of the preceding
  2111. single click are first undone.
  2112.  
  2113. :entry "xj-mouse-yank" "Command"
  2114. Performs a "yank" if the CTRL key was down.  This command is normally
  2115. bound to the release of button 1.
  2116.  
  2117. :entry "xt-mouse" "Variable"
  2118. When set, JOVE sends XTerm escape sequences to enable and disable the
  2119. mouse messages at appropriate times.  Warning: due to the way XTerm
  2120. encodes mouse events, if "meta-key" is set, mouse actions beyond
  2121. column 95 or row 95 will be misunderstood; in any case, mouse actions
  2122. beyond column 223 or row 223 will be misunderstood.
  2123.  
  2124. :entry "xt-mouse-commands" "Command"
  2125. Programs such as XTerm generate these commands whenever a mouse button
  2126. is pressed or released.  XTerm does not give the user as much power as
  2127. XJove.  They are followed by parameters specifying the button pressed,
  2128. the coordinates of the mouse, etc.  They are not intended for direct
  2129. use by the normal user.  Set the variable "xt-mouse" on to enable
  2130. XTerm mouse mode.
  2131.  
  2132. The individual commands will now be described.
  2133.  
  2134. :entry "xt-mouse-mark" "Command"
  2135. Both point and mark are set to the cursor.  This command is normally
  2136. bound to the pressing of button 2.
  2137.  
  2138. :entry "xt-mouse-point" "Command"
  2139. Point is set to the cursor.  This command is normally bound to the
  2140. down-click of button 1.
  2141.  
  2142. :entry "xt-mouse-up" "Command"
  2143. As the name implies, this command is normally bound to the release of
  2144. any button (XTerm does not specify which button was released).  Note
  2145. that a normally configured XTerm will not pass on mouse events if the
  2146. CTRL or SHIFT keys are pressed.  Point is set to the cursor.  If the
  2147. most recently pressed button was button 1 and the CTRL key was down
  2148. (and not the SHIFT key), this command performs a "yank".  If the most
  2149. recently pressed button was button 2 and the CTRL key was down, this
  2150. command performs a "copy-region".  If the most recently pressed button
  2151. was button 2 and the CTRL and SHIFT keys were down, this command
  2152. performs a "kill-region".
  2153.  
  2154. :entry "yank" "Command"
  2155. This inserts the text at the front of the kill ring (as set by an
  2156. earlier "copy-region", "kill-region", etc.) at point.  When you do
  2157. multiple kill commands in a row, they are merged so that the "yank"
  2158. command yanks back all of them.
  2159.  
  2160. :entry "yank-pop" "Command"
  2161. JOVE has a kill ring on which the last sixteen kills are stored.  This
  2162. command yanks back previous texts from the kill ring.  "yank" yanks a
  2163. copy of the text at the front of the ring.  If you want one of the
  2164. last sixteen kills you then use "yank-pop" which rotates the ring so
  2165. another different entry is now at the front.  You can use "yank-pop"
  2166. only immediately following a "yank" or another "yank-pop".  If you
  2167. supply a negative numeric argument the ring is rotated the other way.
  2168. If you use this command enough times in a row you will eventually get
  2169. back to where you started.
  2170.