home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume1 / 8707 / 38 (.txt) < prev    next >
LaTeX Document  |  1990-07-13  |  67KB

  1. From: jeff@kestrel.arpa (Jeff Kitson)
  2. Newsgroups: comp.sources.misc
  3. Subject: microemacs documentation in LaTeX (part 2 of 2)
  4. Message-ID: <2833@ncoast.UUCP>
  5. Date: 9 Jul 87 02:59:33 GMT
  6. Sender: allbery@ncoast.UUCP
  7. Lines: 1502
  8. Approved: allbery@ncoast.UUCP
  9. X-Archive: comp.sources.misc/8707/38
  10. #!/bin/sh
  11. # to extract, remove the header and type "sh filename"
  12. if `test ! -s ./README`
  13. echo "writting ./README"
  14. cat > ./README << '\Rogue\Monster\'
  15. The documentation is provided in three files:
  16. emacs-doc.tex    ;Main LaTeX file that includes part1.tex and part2.tex
  17.     part1.tex    ;first half of documentation
  18.     part2.tex    ;second half of documentation
  19. emacs-doc.toc    ;Table of Contents generated on a previous run of LaTeX
  20. emacs-index.tex  ;Index entries, modified from emacs-doc.idx
  21. The files emacs-doc.tex, part1.tex and part2.tex contain everything
  22. needed to generate the manual for microemacs 3.8i.  The files
  23. emacs-doc.toc and emacs-index.tex are included so that emacs-doc.dvi
  24. can be created in one pass.
  25. sh> latex emacs-doc
  26. There are a couple of LaTeX warnings about underfull boxes, but they
  27. don't make too much of a difference so I left them.
  28. If you want to change the document so that pagebreaks will change
  29. you will need to recreate the emacs-doc.toc and emacs-index.tex files.
  30. The emacs-doc.toc file is created by LaTeX.  The emacs-index.tex file
  31. is a sorted and slightly modified version of emacs-doc.idx (which is 
  32. also created by LaTeX).
  33. \Rogue\Monster\
  34.   echo "will not over write ./README"
  35. if [ `wc -c ./README | awk '{printf $1}'` -ne 1019 ]
  36. echo `wc -c ./README | awk '{print "Got " $1 ", Expected " 1019}'`
  37. if `test ! -s ./emacs-doc.tex`
  38. echo "writting ./emacs-doc.tex"
  39. cat > ./emacs-doc.tex << '\Rogue\Monster\'
  40. \documentstyle{book}
  41. \setlength{\textwidth}{6.5in}
  42. \setlength{\textheight}{9in}
  43. \setlength{\topmargin}{0in}
  44. \setlength{\parskip}{10pt plus 2pt minus 2pt}
  45. \setlength{\parindent}{0pt}
  46. \setlength{\oddsidemargin}{0in}
  47. \setlength{\evensidemargin}{0in}
  48. \makeindex
  49. \begin{document}
  50. \include{part1}
  51. \include{part2}
  52. \begin{theindex}
  53. \input{emacs-index.tex}
  54. \end{theindex}
  55. \end{document}
  56. \Rogue\Monster\
  57.   echo "will not over write ./emacs-doc.tex"
  58. if [ `wc -c ./emacs-doc.tex | awk '{printf $1}'` -ne 383 ]
  59. echo `wc -c ./emacs-doc.tex | awk '{print "Got " $1 ", Expected " 383}'`
  60. if `test ! -s ./emacs-doc.toc`
  61. echo "writting ./emacs-doc.toc"
  62. cat > ./emacs-doc.toc << '\Rogue\Monster\'
  63. \contentsline {chapter}{\numberline {1}Basic Concepts}{1}
  64. \contentsline {section}{\numberline {1.1}Keys and the Keyboard}{1}
  65. \contentsline {section}{\numberline {1.2}Getting Started}{1}
  66. \contentsline {section}{\numberline {1.3}Parts and Pieces}{2}
  67. \contentsline {section}{\numberline {1.4}Entering Text}{2}
  68. \contentsline {section}{\numberline {1.5}Basic cursor movement}{3}
  69. \contentsline {section}{\numberline {1.6}Saving your text}{4}
  70. \contentsline {section}{\numberline {1.7}Chapter 1{} Summary}{4}
  71. \contentsline {chapter}{\numberline {2}Basic Editing--Simple Insertions and Deletions}{5}
  72. \contentsline {section}{\numberline {2.1}A Word About Windows, Buffers, Screens, and Modes}{5}
  73. \contentsline {section}{\numberline {2.2}Insertions}{6}
  74. \contentsline {section}{\numberline {2.3}Deletions}{6}
  75. \contentsline {section}{\numberline {2.4}Chapter 2{} Summary}{7}
  76. \contentsline {chapter}{\numberline {3}Using Regions}{9}
  77. \contentsline {section}{\numberline {3.1}Defining and Deleting a Region}{9}
  78. \contentsline {section}{\numberline {3.2}Yanking a Region}{10}
  79. \contentsline {section}{\numberline {3.3}Chapter 3{} Summary}{10}
  80. \contentsline {chapter}{\numberline {4}Search and Replace}{13}
  81. \contentsline {section}{\numberline {4.1}Forward Search}{13}
  82. \contentsline {section}{\numberline {4.2}Exact Searches}{14}
  83. \contentsline {section}{\numberline {4.3}Backward Search}{14}
  84. \contentsline {section}{\numberline {4.4}Searching and Replacing}{14}
  85. \contentsline {section}{\numberline {4.5}Query-Replace-String}{15}
  86. \contentsline {section}{\numberline {4.6}Chapter 4{} Summary}{15}
  87. \contentsline {chapter}{\numberline {5}Windows}{17}
  88. \contentsline {section}{\numberline {5.1}Creating Windows}{17}
  89. \contentsline {section}{\numberline {5.2}Chapter 5{} Summary}{18}
  90. \contentsline {chapter}{\numberline {6}Buffers}{19}
  91. \contentsline {section}{\numberline {6.1}Chapter 6{} Summary}{20}
  92. \contentsline {chapter}{\numberline {7}Modes}{21}
  93. \contentsline {section}{\numberline {7.1}ASAVE mode}{21}
  94. \contentsline {section}{\numberline {7.2}CMODE mode}{21}
  95. \contentsline {section}{\numberline {7.3}CRYPT mode}{22}
  96. \contentsline {section}{\numberline {7.4}EXACT mode}{22}
  97. \contentsline {section}{\numberline {7.5}MAGIC mode}{22}
  98. \contentsline {section}{\numberline {7.6}OVER mode}{23}
  99. \contentsline {section}{\numberline {7.7}WRAP mode}{23}
  100. \contentsline {section}{\numberline {7.8}VIEW mode}{24}
  101. \contentsline {section}{\numberline {7.9}Chapter 7{} Summary}{24}
  102. \contentsline {chapter}{\numberline {8}Files}{25}
  103. \contentsline {section}{\numberline {8.1}Chapter 8{} Summary}{26}
  104. \contentsline {chapter}{\numberline {9}Screen Formatting}{27}
  105. \contentsline {section}{\numberline {9.1}Wrapping Text}{27}
  106. \contentsline {section}{\numberline {9.2}Reformatting Paragraphs}{27}
  107. \contentsline {section}{\numberline {9.3}Changing Case}{27}
  108. \contentsline {section}{\numberline {9.4}Tabs}{28}
  109. \contentsline {section}{\numberline {9.5}Chapter 9{} Summary}{29}
  110. \contentsline {chapter}{\numberline {10}Keyboard Macros}{31}
  111. \contentsline {section}{\numberline {10.1}Chapter 10{} Summary}{31}
  112. \contentsline {chapter}{\numberline {11}MicroEMACS Macros}{33}
  113. \contentsline {section}{\numberline {11.1}Variables}{33}
  114. \contentsline {subsection}{\numberline {11.1.1}Environmental Variables}{34}
  115. \contentsline {subsection}{\numberline {11.1.2}User variables}{34}
  116. \contentsline {subsection}{\numberline {11.1.3}Buffer Variables}{34}
  117. \contentsline {subsection}{\numberline {11.1.4}Interactive variables}{35}
  118. \contentsline {section}{\numberline {11.2}Functions}{35}
  119. \contentsline {section}{\numberline {11.3}Directives}{37}
  120. \contentsline {subsection}{\numberline {11.3.1}!ENDM Directive}{37}
  121. \contentsline {subsection}{\numberline {11.3.2}!FORCE Directive}{38}
  122. \contentsline {subsection}{\numberline {11.3.3}!IF, !ELSE, and !ENDIF Directives}{38}
  123. \contentsline {subsection}{\numberline {11.3.4}!GOTO Directive}{39}
  124. \contentsline {subsection}{\numberline {11.3.5}!RETURN Directive}{39}
  125. \contentsline {chapter}{\numberline {A}MicroEMACS commands}{41}
  126. \contentsline {chapter}{\numberline {B}MicroEMACS Bindings}{45}
  127. \contentsline {chapter}{\numberline {C}Supported machines}{47}
  128. \contentsline {chapter}{\numberline {D}Machine Dependent Notes}{49}
  129. \contentsline {section}{\numberline {D.1}IBM-PC/XT/AT and its clones}{49}
  130. \contentsline {section}{\numberline {D.2}Atari 520/1040ST}{50}
  131. \contentsline {section}{\numberline {D.3}Amiga 1000}{51}
  132. \contentsline {section}{\numberline {D.4}UNIX V5, V7, and BSD4.[23]}{51}
  133. \Rogue\Monster\
  134.   echo "will not over write ./emacs-doc.toc"
  135. if [ `wc -c ./emacs-doc.toc | awk '{printf $1}'` -ne 4464 ]
  136. echo `wc -c ./emacs-doc.toc | awk '{print "Got " $1 ", Expected " 4464}'`
  137. if `test ! -s ./emacs-index.tex`
  138. echo "writting ./emacs-index.tex"
  139. cat > ./emacs-index.tex << '\Rogue\Monster\'
  140. \item $<${}NL$>${},\hspace{.6em} 1, 13
  141. \item add-global-mode,\hspace{.6em} 21
  142. \item add-mode,\hspace{.6em} 3, 21
  143. \item backward-character,\hspace{.6em} 3
  144. \item begin-macro,\hspace{.6em} 31
  145. \item beginning-of-file,\hspace{.6em} 3, 6
  146. \item beginning-of-line,\hspace{.6em} 3
  147. \item buffer,\hspace{.6em} 4, 5, 19
  148. \item case-region-lower,\hspace{.6em} 28
  149. \item case-word-capitalize,\hspace{.6em} 28
  150. \item case-word-lower,\hspace{.6em} 28
  151. \item case-word-upper,\hspace{.6em} 28
  152. \item change-screen-size,\hspace{.6em} 51
  153. \item change-screen-width,\hspace{.6em} 51
  154. \item color,\hspace{.6em} 21
  155. \item control key,\hspace{.6em} 1
  156. \item control-x,\hspace{.6em} 1
  157. \item copy-region,\hspace{.6em} 10
  158. \item cursor keys,\hspace{.6em} 4
  159. \item default string,\hspace{.6em} 14
  160. \item delete-blank-lines,\hspace{.6em} 7
  161. \item delete-buffer,\hspace{.6em} 20
  162. \item delete-global-mode,\hspace{.6em} 21
  163. \item delete-mode,\hspace{.6em} 21
  164. \item delete-next-character,\hspace{.6em} 6
  165. \item delete-next-word,\hspace{.6em} 6
  166. \item delete-previous-character,\hspace{.6em} 6
  167. \item delete-previous-word,\hspace{.6em} 6
  168. \item detab-line,\hspace{.6em} 29
  169. \item encryption,\hspace{.6em} 22
  170. \item end-macro,\hspace{.6em} 31
  171. \item end-of-file,\hspace{.6em} 3
  172. \item end-of-line,\hspace{.6em} 3
  173. \item entab-lines,\hspace{.6em} 29
  174. \item execute-buffer,\hspace{.6em} 33
  175. \item execute-file,\hspace{.6em} 33
  176. \item execute-macro-$<${}n$>${},\hspace{.6em} 33
  177. \item execute-macro,\hspace{.6em} 31
  178. \item exit-emacs,\hspace{.6em} 7
  179. \item file locking,\hspace{.6em} 51
  180. \item fill column,\hspace{.6em} 23
  181. \item fill-paragraph,\hspace{.6em} 6, 27
  182. \item find-file,\hspace{.6em} 17, 19
  183. \item forward-character,\hspace{.6em} 3
  184. \item handle-tab,\hspace{.6em} 29
  185. \item kill buffer,\hspace{.6em} 10
  186. \item kill-region,\hspace{.6em} 9
  187. \item kill-to-end-of-line,\hspace{.6em} 7
  188. \item list-buffers,\hspace{.6em} 19, 21
  189. \item mark,\hspace{.6em} 9
  190. \item meta key,\hspace{.6em} 1
  191. \item mode line,\hspace{.6em} 2, 5
  192. \item modes,\hspace{.6em} 3, 21
  193. \item move-window-down,\hspace{.6em} 18
  194. \item move-window-up,\hspace{.6em} 18
  195. \item next-buffer,\hspace{.6em} 19
  196. \item next-line,\hspace{.6em} 3
  197. \item next-paragraph,\hspace{.6em} 3
  198. \item open-line,\hspace{.6em} 6
  199. \item point,\hspace{.6em} 9
  200. \item previous-line,\hspace{.6em} 3
  201. \item previous-paragraph,\hspace{.6em} 3
  202. \item previous-window,\hspace{.6em} 17
  203. \item previous-word,\hspace{.6em} 3
  204. \item query-replace-string,\hspace{.6em} 15
  205. \item replace-string,\hspace{.6em} 14
  206. \item save-file,\hspace{.6em} 4
  207. \item screen,\hspace{.6em} 5
  208. \item scroll-next-down,\hspace{.6em} 18
  209. \item scroll-next-up,\hspace{.6em} 18
  210. \item search-forward,\hspace{.6em} 13
  211. \item search-reverse,\hspace{.6em} 14
  212. \item select-buffer,\hspace{.6em} 19
  213. \item set-encryption-key,\hspace{.6em} 22
  214. \item set-fill-column,\hspace{.6em} 27
  215. \item set-mark,\hspace{.6em} 9
  216. \item special keys,\hspace{.6em} 1
  217. \item split-current-window,\hspace{.6em} 17
  218. \item suspend-emacs,\hspace{.6em} 51
  219. \item tab handling,\hspace{.6em} 29
  220. \item termcap,\hspace{.6em} 51
  221. \item text window,\hspace{.6em} 2
  222. \item window,\hspace{.6em} 2, 5, 17
  223. \item wrap-word,\hspace{.6em} 24
  224. \item wrapping text,\hspace{.6em} 27
  225. \item write-file,\hspace{.6em} 4
  226. \item yank,\hspace{.6em} 10
  227. \Rogue\Monster\
  228.   echo "will not over write ./emacs-index.tex"
  229. if [ `wc -c ./emacs-index.tex | awk '{printf $1}'` -ne 3207 ]
  230. echo `wc -c ./emacs-index.tex | awk '{print "Got " $1 ", Expected " 3207}'`
  231. if `test ! -s ./part1.tex`
  232. echo "writting ./part1.tex"
  233. cat > ./part1.tex << '\Rogue\Monster\'
  234. \thispagestyle{empty}
  235. \hbox{}
  236. \vfill
  237. \centerline{{\Large\bf{}MicroEMACS}}
  238. \vspace{.25in}
  239. \centerline{Full Screen Text Editor}
  240. \centerline{Reference Manual (preliminary draft)}
  241. \vspace{.5in}
  242. \centerline{Version 3.8i}
  243. \centerline{April 27, 1987}
  244. \vspace{1in}
  245. \centerline{\copyright 1987 by Daniel M. Lawrence}
  246. \centerline{Reference Manual \copyright 1987 by Brian Straight and
  247. Daniel M. Lawrence}
  248. \centerline{All Rights Reserved}
  249. \vspace{.5in}
  250. {\it{}MicroEMACS 3.8i can be copied and distributed freely
  251. for any non-commercial purposes. MicroEMACS 3.8i can
  252. only be incorporated into commercial software with
  253. the permission of the current author.}
  254. \vfill
  255. \newpage
  256. \pagenumbering{roman}
  257. \setcounter{page}{1}
  258. \tableofcontents
  259. \cleardoublepage
  260. \chapter*{Introduction}
  261. MicroEMACS is a tool for creating and changing documents,
  262. programs, and other text files.  It is both relatively easy for the
  263. novice to use, but also very powerfull in the hands of an expert.
  264. MicroEMACS can be extensively customized for the needs of the
  265. individual user.
  266. MicroEMACS allows several files to be edited at the same time.
  267. The screen can be split into different windows, and text may be moved
  268. freely from one window to the next.  Depending on the type of file being
  269. edited, MicroEMACS can change how it behaves to make editing simple.
  270. Editing standard text files, program files and wordprocessing documents
  271. are all possible at the same time.
  272. There are extensive capabilities to make word processing and
  273. editing easier.  These include commands for string searching and
  274. replacing, paragraph reformatting and deleting, automatic word wrapping,
  275. word move and deletes, easy case controling, and automatic word counts.
  276. For complex and repetitive editing tasks editing macroes can be
  277. written.  These macroes allow the user a great degree of flexibility in
  278. determining how MicroEMACS behaves.  Also any and all the commands can
  279. be used by any keystroke by changing, or rebinding, what commands
  280. various keys are connected, or bound, to.
  281. Special features are also available to perform a diverse set of
  282. operations such as file encryption, automatic backup file generation,
  283. entabbing and detabbing lines, executing of DOS commands and filtering
  284. of text through other programs (like SORT to allow sorting text).
  285. \chapter*{History}
  286. EMACS was originally a text editor written by Richard Stallman
  287. at MIT in the early 1970s for Digital Equipment computers. Various
  288. versions, rewrites and clones have made an appearence since.
  289. This version of MicroEMACS is derived from code written by Dave
  290. G.  Conroy in 1985.  Later modifications were performed by Steve Wilhite
  291. and George Jones.  In December of 1985 Daniel Lawrence picked up the
  292. then current source (version 2.0) and has made extensive modifications
  293. and additions to it over the course of the next two years.  Updates and
  294. support for the current version is still in progress.  The current
  295. program author can be contacted by writing to:
  296. \begin{verbatim}
  297.         USMAIL: Daniel Lawrence
  298.                 617 New York St
  299.                 Lafayette, IN 47901
  300.           UUCP: ihnp4!pur-ee!pur-phy!duncan!lawrence
  301.           ARPA: nwd@j.cc.purdue.edu
  302.           FIDO: Fido 201/2 The Programmer's Room (317) 742-5533
  303. \end{verbatim}
  304. \chapter{Basic Concepts}
  305. \pagenumbering{arabic}
  306. The current version of MicroEMACS is 3.8i (Third major re-write,
  307. eighth public release, Ith (or ninth) minor release), and for the rest of
  308. this document, we shall simply refer to this version as ``EMACS".  Any
  309. modifications for later versions will be listed in the appendixes at the
  310. end of this manual.
  311. \section{Keys and the Keyboard}
  312. Many times throught this manual we will be talking about
  313. \index{special keys} commands and the keys on the keyboard needed use
  314. them.  There are a number of ``special" keys which can be used and are
  315. listed here:
  316. \begin{description}
  317. \item[$<${}NL$>${}] NewLine which is also called RETURN or ENTER,
  318. this key is used to \index{$<${}NL$>${}} end different commands.
  319. \item[\^{}] The control key can be used before any alphabetic
  320. character and some symbols.  For example, \^{}C means to hold down the
  321. $<${}CONTROL$>${} key and type \index{control key} the C key at the
  322. same time.
  323. \item[\^{}X] The CONTROL-X key is used at the beginning of many different
  324. \index{control-x} commands.
  325. \item[META or M-] This is a special EMACS key used to begin many
  326. commands as \index{meta key} well.  This key is pressed, and then
  327. released before typing the next character.  On most systems, this is
  328. the $<${}ESC$>${} key, but it can be changed.  (consult appendix D to
  329. learn what key is used for META on your computer).  \end{description}
  330. Whenever a command is described, the manual will list the actual
  331. keystokes needed to execute it in {\bf{}boldface} using the above
  332. conventions, and also the name of the command in {\it{}italics}.
  333. \section{Getting Started}
  334. In order to use EMACS, you must call it up from your system's or
  335. computer's command prompt.  On UNIX and MSDOS machines, just type
  336. ``emacs" from the main command prompt and follow it with the
  337. $<${}RETURN$>${} or $<${}ENTER$>${} key (we will refer to this key as
  338. $<${}NL$>${} for ``new-line" for the remainder of this manual).  On
  339. the Macintosh, the Amiga, the ATARI ST and other icon based operating
  340. systems, double click on the uEMACS icon.  Shortly after this, a
  341. screen similar to the one below should appear.
  342. \section{Parts and Pieces}
  343. The screen is divided into a number of areas or {\bf{}windows}.  On
  344. some systems the top window contains a function list of unshifted and
  345. \index{window} shifted function keys.  We will discuss these keys later.
  346. \index{mode line} Below them is an EMACS {\bf{}mode line} which, as we will
  347. see, informs you of the present mode of operation of the editor--for
  348. example ``(WRAP)" if you set EMACS to wrap at the end of each line.
  349. \index{text window} Under the mode line is the {\bf{}text window} where text
  350. appears and is manipulated.  Since each window has its own mode line,
  351. below the text window is it's mode line.  The last line of the screen is
  352. the {\bf{}command line} where EMACS takes commands and reports on what it
  353. is doing.
  354. \begin{verbatim}
  355. ===============================================================================
  356. f1 search      f2 search back : F1 toggle function list F2 toggle help file
  357. f3 hunt        f4 hunt back   : F3 find command/apropos F4 describe key
  358. f5 next window f6 exec macro  : F5 reformat paragraph   F6 ref undented region
  359. f7 find file   f8 exec file   : F7 indent region        F8 undent region
  360. f9 save file  f10 exit emacs  : F9 execute DOS command F10 shell up
  361. ===============================================================================
  362. -- MicroEMACS 3.8i () -- Function Keys ---------------------------------------
  363. ===============================================================================
  364. ===============================================================================
  365. -- MicroEMACS 3.8i () -- Main ------------------------------------------------
  366. ===============================================================================
  367.                     Fig 1:  EMACS screen on an IBM-PC
  368. \end{verbatim}
  369. \section{Entering Text}
  370. Entering text in EMACS is simple.  Type the following sentence fragment:
  371. \begin{verbatim}
  372.         Fang Rock lighthouse, center of a series of mysterious and
  373. \end{verbatim}
  374. The text is displayed at the top of the text window.  Now type:
  375. \begin{verbatim}
  376.         terrifying events at the turn of the century
  377. \end{verbatim}
  378. Notice the text to the left of the cursor disappears and a `\$' sign
  379. appears.  Don't panic--your text is safe!!! You've just discovered
  380. that EMACS doesn't ``wrap" text to the next line like most word
  381. processors unless you hit $<${}NL$>${}.  But since EMACS is used for
  382. both word processing, and text editing, it has a bit of a dual
  383. personality.  You can change \index{modes} the way it works by setting
  384. various {\bf{}modes}.  In this case, you need to set {\bf{}WRAP} mode,
  385. using the {\it{}add-mode} \index{add-mode} command, by typing
  386. {\bf{}\^{}X-M}.  The command line at the base of the screen will
  387. prompt you for the mode you wish to add.  Type {\bf{}wrap} followed by
  388. the $<${}NL$>${} key and any text you now enter will be wrapped.
  389. However, the command doesn't wrap text already entered.  To get rid of
  390. the truncated line, delete characters with the $<${}BACKSPACE$>${} key
  391. until the `\$' goes away.  Now type in the words you deleted, watch
  392. how EMACS goes down to the next line at the right time.  {\it{}(In
  393. some versions of EMACS, {\bf{}WRAP} is a default mode in which case
  394. you don't have to worry about the instructions relating to adding this
  395. mode.)}
  396. Now let's type a longer insert.  Hit $<${}NL$>${} a couple of times to tab
  397. down from the text you just entered.  Now type the following paragraphs.
  398. Press $<${}NL$>${} twice to indicate a paragraph break.
  399. \begin{verbatim}
  400.         Fang Rock lighthouse, center of a series of mysterious and
  401.         terrifying events at the turn of the century, is built on a
  402.         rocky island a few miles of the Channel coast.  So small is
  403.         the island that wherever you stand its rocks are wet with sea
  404.         spray.
  405.         The lighthouse tower is in the center of the island.  A steep
  406.         flight of steps leads to the heavy door in its base.  Winding
  407.         stairs lead up to the crew room.
  408. \end{verbatim}
  409. \section{Basic cursor movement}
  410. Now let's practice moving around in this text.  To move the cursor
  411. back to the word ``Winding," enter {\bf{}M-B} {\it{}previous-word}
  412. \index{previous-word}.  This command moves the cursor backwards by one
  413. word at a time.  Note you have to press the key combination every time
  414. the cursor steps back by one word.  Continuously pressing META and
  415. toggling B produces an error message.  To move forward to the word
  416. ``stairs" enter {\bf{}M-F} {\it{}next-word}, which moves the cursor
  417. forward by one word at a time.
  418. Notice that EMACS commands are usually mnemonic--F for forward, B for
  419. backward, for example.
  420. To move the cursor up one line, enter {\bf{}\^{}P} {\it{}previous-line}
  421. \index{previous-line}, down one line {\bf{}\^{}N} {\it{}next-line}
  422. \index{next-line}.  Practice this movement by moving the cursor to the
  423. word ``terrifying" in the second line.
  424. The cursor may also be moved forward or backward in smaller
  425. increments.  To move forward by one character, enter {\bf{}\^{}F}
  426. {\it{}forward-character} \index{forward-character}, to move backward,
  427. {\bf{}\^{}B} {\it{}backward-character} \index{backward-character}.
  428. EMACS also allows you to specify a number which is normally used to
  429. tell a command to execute many times.  To repeat most commands, press
  430. META and then the number before you enter the command.  Thus, the
  431. command META 5 \^{}F ({\bf{}M-5\^{}F}) will move the cursor forward by
  432. five characters.  Try moving around in the text by using these
  433. commands.  For extra practice, see how close you can come to the word
  434. ``small" in the first paragraph by giving an argument to the commands
  435. listed here.
  436. Two other simple cursor commands that are useful to help us move
  437. around in the text are {\bf{}M-N} {\it{}next-paragraph}
  438. \index{next-paragraph} which moves the cursor to the second paragraph,
  439. and {\bf{}M-P} {\it{}previous-paragraph} \index{previous-paragraph}
  440. which moves it back to the previous paragraph.  The cursor may also be
  441. moved rapidly from one end of the line to the other.  Move the cursor
  442. to the word ``few" in the second line.  Press {\bf{}\^{}A}
  443. {\it{}beginning-of-line} \index{beginning-of-line}.  Notice the cursor
  444. moves to the word ``events" at the beginning of the line.  Pressing
  445. {\bf{}\^{}E} {\it{}end-of-line} \index{end-of-line} moves the cursor
  446. to the end of the line.
  447. Finally, the cursor may be moved from any point in the file to the end
  448. or beginning of the file.  Entering {\bf{}M-$>${}} {\it{}end-of-file}
  449. \index{end-of-file} moves the cursor to the end of the buffer,
  450. {\bf{}M-$<${}} {\it{}beginning-of-file} \index{beginning-of-file} to
  451. the first character of the file.
  452. {\it{}On the IBM-PC, the ATARI ST and many other machines, the cursor keys
  453. \index{cursor keys} can also be used to move the cursor about.  Also, if
  454. there is one available, moving the mouse will move the cursor.}
  455. Practice moving the cursor in the text until you are comfortable with
  456. the commands we've explored in this chapter.
  457. \section{Saving your text}
  458. When you've finished practicing cursor movement, save your file.  Your
  459. \index{buffer} file currently resides in a {\bf{}BUFFER}.  The buffer
  460. is a temporary storage area for your text, and is lost when the
  461. computer is turned off.  You can save the buffer to a file by entering
  462. {\bf{}\^{}X-\^{}S} {\it{}save-file} \index{save-file}.  Notice that
  463. EMACS informs you that your file has no name and will not let you save
  464. To save your buffer to a file with a different name than it's current
  465. one (which is empty), press {\bf{}\^{}X-\^{}W} {\it{}write-file}
  466. \index{write-file}.  EMACS will prompt you for the filename you wish
  467. to write.  Enter the name {\bf{}fang.txt} and press return.  On a
  468. micro, the drive light will come on, and EMACS will inform you it is
  469. writing the file.  When it finishes, it will inform you of the number
  470. of lines it has written to the disk.
  471. Congratulations!! You've just saved your first EMACS file!
  472. %\newpage
  473. \section{Chapter \thechapter{} Summary}
  474. In chapter \thechapter{}, you learned how to enter text, how
  475. to use wrap mode, how to move the cursor, and to save a buffer.  The
  476. following is a table of the commands covered in this chapter and their
  477. corresponding key bindings:
  478. \begin{tabular}{llp{4in}}
  479. Key Binding & Keystroke & Effect \\ \hline
  480. abort-command & {\bf{}\^{}G} & aborts current command \\
  481. add-mode & {\bf{}\^{}X-M} & allows addition of EMACS
  482. mode such as {\bf{}WRAP}\\
  483. backward-character & {\bf{}\^{}B} & moves cursor left one character\\
  484. beginning-of-file & {\bf{}M-$<${}} & moves cursor to beginning of file\\
  485. beginning-of-line & {\bf{}\^{}A} & moves cursor to beginning of line\\
  486. end-of-file & {\bf{}M-$>${}} & moves cursor to end of file\\
  487. end-of-line & {\bf{}\^{}E} & moves cursor to end of line\\
  488. forward-character & {\bf{}\^{}F} & moves cursor right one character\\
  489. next-line & {\bf{}\^{}N} & moves cursor to next line\\
  490. next-paragraph & {\bf{}M-N} & moves cursor to next paragraph\\
  491. next-word & {\bf{}M-F} & moves cursor forward one word\\
  492. previous-line & {\bf{}\^{}P} & moves cursor backward by one line\\
  493. previous-paragraph & {\bf{}M-P} & moves cursor to previous paragraph\\
  494. previous-word & {\bf{}M-B} & moves cursor backward by one word\\
  495. save-file & {\bf{}\^{}X-\^{}S} & saves current buffer to a file\\
  496. write-file & {\bf{}\^{}X-\^{}W} & save current buffer under a new name\\
  497. \end{tabular}
  498. %\newpage
  499. \chapter{Basic Editing--Simple Insertions and Deletions}
  500. \section{A Word About Windows, Buffers, Screens, and Modes}
  501. In the first chapter, you learned how to create and save a file in
  502. EMACS.  Let's do some more editing on this file.  Call up emacs by
  503. typing in the following command.
  504. \begin{verbatim}
  505.         emacs fang.txt
  506. \end{verbatim}
  507. {\it{}On icon oriented systems, double click on the uEMACS icon, usually a
  508. file dialog box of some sort will appear.  Choose {\bf{}FANG.TXT} from the
  509. appropriate folder.}
  510. Shortly after you invoke EMACS, the text should appear on the screen
  511. ready for you to edit.  The text you are looking at currently resides in
  512. a {\bf{}buffer}.  A buffer is a temporary area of computer memory which is
  513. \index{buffer} the primary unit internal to EMACS -- this is the place
  514. where EMACS goes to work.  The mode line at the bottom of the screen
  515. lists the buffer name, {\bf{}FANG.TXT} and the name of the file with which
  516. this buffer is associated, {\bf{}FANG.TXT}
  517. The computer talks to you through the use of its {\bf{}screen}.  This
  518. \index{screen} screen usually has an area of 24 lines each of 80
  519. characters across.  You can use EMACS to subdivide the screen into
  520. several separate work areas, or {\bf{}windows}, each of which can be
  521. \index{window} `looking into' different files or sections of text.  Using
  522. windows, you can work on several related texts at one time, copying and
  523. moving blocks of text between windows with ease.  To keep track of what
  524. you are editing, each window is identified by a {\bf{}mode line} on the
  525. \index{mode line} \index{buffer} last line of the window which lists the
  526. name of the {\bf{}buffer} which it is looking into, the file from which the
  527. text was read, and how the text is being edited.
  528. An EMACS {\bf{}mode} tells EMACS how to deal with user input.  As we have
  529. already seen, the mode `WRAP' controls how EMACS deals with long lines
  530. (lines with over 79 characters) while the user is typing them in.  The
  531. `VIEW' mode, allows you to read a file without modifying it.  Modes are
  532. associated with buffers and not with files; hence, a mode needs to be
  533. explicitly set or removed every time you edit a file.  A new file read
  534. into a buffer with a previously specified mode will be edited under this
  535. mode.  If you use specific modes frequently, EMACS allows you to set
  536. the modes which are used by all new buffers, called {\bf{}global} modes.
  537. \section{Insertions}
  538. Your previously-saved text should look like this:
  539. \begin{verbatim}
  540.         Fang Rock lighthouse, center of a series of mysterious and
  541.         terrifying events at the turn of the century, is built on a
  542.         rocky island a few miles of the Channel coast.  So small is
  543.         the island that wherever you stand its rocks are wet with sea
  544.         spray.
  545.         The lighthouse tower is in the center of the island.  A steep
  546.         flight of steps leads to the heavy door in its base.  Winding
  547.         stairs lead up to the crew room.
  548. \end{verbatim}
  549. Let's assume you want to add a sentence in the second paragraph after
  550. the word ``base."  Move the cursor until it is on the ``W" of ``Winding".
  551. Now type the following:
  552. \begin{verbatim}
  553.         This gives entry to the lower floor where the big steam
  554.         generator throbs steadily away, providing power for the
  555.         electric lantern.
  556. \end{verbatim}
  557. If the line fails to wrap and you end up with a `\$' sign in the right
  558. margin, just enter {\bf{}M-Q} {\it{}fill-paragraph}
  559. \index{fill-paragraph} to reformat the paragraph.  This new command
  560. attempts to fill out a paragraph.  Long lines are divided up, and
  561. words are shuffled around to make the paragraph look nicer.
  562. Notice that all visible EMACS characters are self-inserting -- all you
  563. had to do was type the characters to insert and the exisiting text
  564. made space for it.  With a few exceptions discussed later, all
  565. non-printing characters (such as control or escape sequences) are
  566. commands.  To insert spaces, simply use the space bar.  Now move to
  567. the first line of the file and type {\bf{}\^{}O} {\it{}open-line}
  568. \index{open-line} (Oh, not zero).  You've just learned how to insert a
  569. blank line in your text.
  570. \section{Deletions}
  571. EMACS offers a number of deletion options.  For example, move the cursor
  572. until it's under the period at the end of the insertion you just did.
  573. Press the backspace key.  Notice the ``n" on ``lantern" disappeared.  The
  574. backspace implemented on EMACS is called a {\bf{}destructive} backspace--it
  575. removes text immediately before the current cursor position from the
  576. buffer.  Now type {\bf{}\^{}H} {\it{}delete-previous-character}
  577. \index{delete-previous-character}.  Notice that the cursor moves back
  578. and obliterates the ``r"--either command will backspace the cursor.
  579. Type in the two letters you erased to restore your text and move the
  580. cursor to the beginning of the buffer {\bf{}M-$<${}}
  581. {\it{}beginning-of-file} \index{beginning-of-file}.  Move the cursor
  582. down one line to the beginning of the first paragraph.
  583. To delete the forward character, type {\bf{}\^{}D}
  584. {\it{}delete-next-character} \index{delete-next-character}.  The ``F"
  585. of ``Fang" disappears.  Continue to type {\bf{}\^{}D} until the whole
  586. word is erased EMACS also permits the deletion of larger elements of
  587. text.  Move the cursor to the word ``center" in the first line of
  588. text.  Pressing {\bf{}M-$<${}backspace$>${}}
  589. {\it{}delete-previous-word} \index{delete-previous-word} kills the
  590. word immediately before the cursor.  {\bf{}M-\^{}H} has the same
  591. effect.
  592. Notice that the commands are very similar to the control commands you
  593. used to delete individual letters.  As a general rule in EMACS,
  594. control sequences affect small areas of text, META sequences larger
  595. areas.  The word forward of the cursor position can therefore be
  596. deleted by typing {\bf{}M-D} {\it{}delete-next-word}
  597. \index{delete-next-word}.  Now let's take out the remainder of the
  598. first line by typing {\bf{}\^{}K} {\it{}kill-to-end-of-line}
  599. \index{kill-to-end-of-line}.  You now have a blank line at the top of
  600. your screen.  Typing {\bf{}\^{}K} again or {\bf{}\^{}X-\^{}O}
  601. {\it{}delete-blank-lines} \index{delete-blank-lines} deletes the blank
  602. line and flushes the second line to the top of the text.  Now exit
  603. EMACS by typing {\bf{}\^{}X-\^{}C} {\it{}exit-emacs}
  604. \index{exit-emacs}.  Notice EMACS reminds you that you have not saved
  605. your buffer.  Ignore the warning and exit.  This way you can exit
  606. EMACS without saving any of the changes you just made.
  607. \section{Chapter \thechapter{} Summary}
  608. In Chapter \thechapter{}, you learned about the basic `building
  609. blocks' of an EMACS text file--buffers, windows, and files.
  610. \begin{tabular}{llp{271pt}}
  611. Key binding & Keystroke & Effect\\ \hline
  612. delete-previous-character & {\bf{}\^{}H} & deletes character
  613. immediately before the current cursor position\\
  614. delete-next-character & {\bf{}\^{}D} & deletes character immediately
  615. after current cursor position\\
  616. delete-previous-word & {\bf{}M-\^{}H} & deletes word immediately before
  617. current cursor position\\
  618. delete-next-word & {\bf{}M-D} & deletes word immediately after
  619. current cursor position\\
  620. kill-to-end-of-line & {\bf{}\^{}K} & deletes from current cursor
  621. position to end of line\\
  622. insert-space & {\bf{}\^{}C} & inserts a space to right of cursor\\
  623. open-line & {\bf{}\^{}O} & inserts blank line\\
  624. delete-blank-lines & {\bf{}\^{}X-\^{}O} & removes blank line\\
  625. exit-emacs & {\bf{}\^{}X-\^{}C} & exits emacs\\
  626. \end{tabular}
  627. \chapter{Using Regions}
  628. \section{Defining and Deleting a Region}
  629. At this point its time to familiarize ourselves with two more EMACS
  630. terms--the {\bf{}point} and the {\bf{}mark}.  The point is located directly
  631. \index{point} \index{mark} behind the current cursor position.  The mark
  632. (as we shall see shortly) is user defined.  These two elements together
  633. are called the current {\bf{}region} and limit the {\bf{}region} of text on
  634. which EMACS performs many of its editing functions.
  635. Let's begin by entering some new text.  Don't forget to add {\bf{}wrap}
  636. mode if it's not set on this buffer.  Start EMACS and open a file called
  637. {\bf{}PUBLISH.TXT}.  Type in the following text:
  638. \begin{verbatim}
  639.         One of the largest growth areas in personal computing is
  640.         electronic publishing.  There are packages available for
  641.         practically every machine from elegantly simple programs for
  642.         the humble Commodore 64 to sophisticated professional packages
  643.         for PC and Macintosh computers.
  644.         Electronic publishing is as revolutionary in its way as the
  645.         Gutenburg press.  Whereas the printing press allowed the mass
  646.         production and distribution of the written word, electronic
  647.         publishing puts the means of production in the hands of nearly
  648.         every individual.  From the class magazine to the corporate
  649.         report, electronic publishing is changing the way we produce
  650.         and disseminate information.
  651.         Personal publishing greatly increases the utility of
  652.         practically every computer.  Thousands of people who joined
  653.         the computer revolution of this decade only to hide their
  654.         machines unused in closets have discovered a new use for them
  655.         as dedicated publishing workstations.
  656. \end{verbatim}
  657. Now let's do some editing.  The last paragraph seems a little out of
  658. place.  To see what the document looks like without it we can cut it
  659. from the text by moving the cursor to the beginning of the paragraph.
  660. Enter {\bf{}M-$<${}space$\>${}} {\it{}set-mark} \index{set-mark}.
  661. EMACS will respond with ``[Mark set]".  Now move the cursor to the end
  662. of the paragraph.  You have just defined a region of text.  To remove
  663. this text from the screen, type {\bf{}\^{}W} {\it{}kill-region}
  664. \index{kill-region}.  The paragraph disappears from the screen.
  665. On further consideration, however, perhaps the paragraph we cut wasn't
  666. so bad after all.  The problem may have been one of placement.  If we
  667. could tack it on to the end of the first paragraph it might work quite
  668. well to support and strengthen the argument.  Move the cursor to the
  669. end of the first paragraph and enter {\bf{}\^{}Y} {\it{}yank}
  670. \index{yank}.  Your text should now look like this (use {\bf{}M-Q} to
  671. reformat):
  672. \begin{verbatim}
  673.         One of the largest growth areas in personal computing is
  674.         electronic publishing.  There are packages available for
  675.         practically every machine from elegantly simple programs for
  676.         the humble Commodore 64 to sophisticated professional packages
  677.         for PC and Macintosh computers.  Personal publishing greatly
  678.         increases the utility of practically every computer.
  679.         Thousands of people who joined the computer revolution of this
  680.         decade only to hide their machines unused in closets have
  681.         discovered a new use for them as dedicated publishing
  682.         workstations.
  683.         Electronic publishing is as revolutionary in its way as the
  684.         Gutenburg press.  Whereas the printing press allowed the mass
  685.         production and distribution of the written word, electronic
  686.         publishing puts the means of production in the hands of nearly
  687.         every individual.  From the class magazine to the corporate
  688.         report, electronic publishing is changing the way we produce
  689.         and disseminate information.
  690. \end{verbatim}
  691. \section{Yanking a Region}
  692. The text you cut initially didn't simply just disappear, it was cut
  693. into a buffer that retains the `killed' text appropriately called the
  694. {\bf{}kill buffer}.  {\bf{}\^{}Y} ``yanks" the text back from this
  695. buffer into the current buffer. If you have a long line (indicated,
  696. remember, by the ``\$" sign), simply hit {\bf{}M-Q} to reformat the
  697. paragraph.
  698. There are other uses to which the kill buffer can be put.  Using the
  699. \index{kill buffer} method we've already learned, define the last
  700. paragraph as a region.  Now type {\bf{}M-W} {\it{}copy-region}
  701. \index{copy-region}.  Nothing seems to have happened; the cursor stays
  702. blinking at the point.  But things have changed, even though you may not
  703. be able to see any alteration.
  704. To see what has happened to the contents of the kill buffer, move the
  705. cursor down a couple of lines and ``yank" the contents of the kill buffer
  706. back with {\bf{}\^{}Y}.  Notice the last paragraph is now repeated.  The
  707. region you defined is ``tacked on" to the end of your file because
  708. {\bf{}M-W} {\bf{}copies} a region to the kill buffer while leaving the
  709. original text in your working buffer.  Some caution is needed however,
  710. because the contents of the kill buffer are updated when you delete any
  711. regions, lines or words.  If you are moving large quantities of text,
  712. complete the operation before you do any more deletions or you could
  713. find that the text you want to move has been replaced by the most recent
  714. deletion.  Remember--a buffer is a temporary area of computer memory
  715. that is lost when the machine is powered down or switched off.  In order
  716. to make your changes permanent, they must be saved to a file before you
  717. leave EMACS.  Let's delete the section of text we just added and save
  718. the file to disk.
  719. \section{Chapter \thechapter{} Summary}
  720. In Chapter \thechapter{}, you learned how to achieve longer insertions
  721. and deletions.  The EMACS terms {\bf{}point} and {\bf{}mark} were introduced
  722. and you learned how to manipulate text with the kill buffer.
  723. \begin{tabular}{llp{4in}}
  724. Key Binding & Keystroke & Effect \\ \hline
  725. Delete-Region & {\bf{}\^{}W} & Deletes region between point and mark
  726. and places it in KILL buffer \\
  727. Copy-Region & {\bf{}M-W} & Copies text between point and mark into
  728. KILL buffer \\
  729. Yank-Text & {\bf{}\^{}Y} & Inserts a copy of the KILL buffer into
  730. current buffer at point \\
  731. \end{tabular}
  732. \chapter{Search and Replace}
  733. \section{Forward Search}
  734. Load EMACS and bring in the file you just saved.  Your file should look
  735. like the one below.
  736. \begin{verbatim}
  737.         One of the largest growth areas in personal computing is
  738.         electronic publishing.  There are packages available for
  739.         practically every machine from elegantly simple programs for
  740.         the humble Commodore 64 to sophisticated professional packages
  741.         for PC and Macintosh computers.  Personal publishing greatly
  742.         increases the utility of practically every computer.
  743.         Thousands of people who joined the computer revolution of this
  744.         decade only to hide their machines unused in closets have
  745.         discovered a new use for them as dedicated publishing
  746.         workstations.
  747.         Electronic publishing is as revolutionary in its way as the
  748.         Gutenburg press.  Whereas the printing press allowed the mass
  749.         production and distribution of the written word, electronic
  750.         publishing puts the means of production in the hands of nearly
  751.         every individual.  From the class magazine to the corporate
  752.         report, electronic publishing is changing the way we produce
  753.         and disseminate information.
  754. \end{verbatim}
  755. Let's use EMACS to search for the word ``revolutionary" in the second
  756. paragraph.  Because EMACS searches from the current cursor position
  757. toward the end of buffers, and we intend to search forward, move the
  758. cursor to the beginning of the text.  Enter {\bf{}\^{}S}
  759. {\it{}search-forward} \index{search-forward}.  Note that the command
  760. line now reads
  761. \begin{verbatim}
  762.         Search [] <META>:
  763. \end{verbatim}
  764. EMACS is prompting you to enter the {\bf{}search string} -- the text you
  765. want to find.  Enter the word {\bf{}revolutionary} and hit the {\bf{}META}
  766. key.  The cursor moves to the end of the word ``revolutionary."
  767. Notice that you must enter the $<${}META$>${} key to start the search.
  768. If you \index{$<${}NL$>${}} simply press $<${}NL$>${} the command line
  769. responds with ``$<${}NL$>${}".  Although this may seem infuriating to
  770. users who are used to pressing the return key to execute any command,
  771. EMACS' use of $<${}META$>${} to begin searches allows it to pinpoint
  772. text with great accuracy.  After every line wrap or carriage return,
  773. EMACS `sees' a new line character ($<${}NL$>${}).  If you need to
  774. search for a word at the end of a line, you can specify this word
  775. uniquely in EMACS.
  776. In our sample text for example, the word ``and" occurs a number of
  777. times, but only once at the end of a line.  To search for this
  778. particular occurance of the word, move the cursor to the beginning of
  779. the buffer and type {\bf{}\^{}S}.  Notice that EMACS stores the last
  780. specified \index{default string} search string as the {\bf{}default}
  781. string.  If you press {\bf{}$<${}META$>${}} now, EMACS will search for
  782. the default string, in this case, ``revolutionary."
  783. To change this string so we can search for our specified ``and" simply
  784. enter the word {\bf{}and} followed by {\bf{}$<${}NL$>${}}.  The command
  785. line now shows:
  786. \begin{verbatim}
  787.         Search [and<NL>]<META>:
  788. \end{verbatim}
  789. Press {\bf{}$<${}META$>${}} and the cursor moves to ``and" at the end
  790. of the second last line.
  791. \section{Exact Searches}
  792. If the mode EXACT is active in the current buffer, EMACS searches on a case
  793. sensitive basis.  Thus, for example you could search for {\bf{}Publishing}
  794. as distinct from {\bf{}publishing}.
  795. \section{Backward Search}
  796. Backward searching is very similar to forward searching except that it
  797. is implemented in the reverse direction.  To implement a reverse
  798. search, type {\bf{}\^{}R} {\it{}search-reverse}
  799. \index{search-reverse}.  Because EMACS makes no distinction between
  800. forward and backward stored search strings, the last search item you
  801. entered appears as the default string.  Try searching back for any
  802. word that lies between the cursor and the beginning of the buffer.
  803. Notice that when the item is found, the point moves to the beginning
  804. of the found string (i.e., the cursor appears under the first letter
  805. of the search item).
  806. Practice searching for other words in your text.
  807. \section{Searching and Replacing}
  808. Searching and replacing is a powerful and quick way of making changes
  809. to your text.  Our sample text is about electronic publishing, but the
  810. correct term is `desktop' publishing.  To make the necessary changes
  811. we need to replace all occurances of the word ``electronic" with
  812. ``desktop."  First, move the cursor to the top of the current buffer
  813. with the {\bf{}M-$<${}} command.  Then type {\bf{}M-R}
  814. {\it{}replace-string} \index{replace-string}.  The command line
  815. responds:
  816. \begin{verbatim}
  817.         Replace []<META>:
  818. \end{verbatim}
  819. where the square brackets enclose the default string.  Type the word
  820. {\bf{}electronic} and hit {\bf{}$<${}META$>${}}.  The command line responds:
  821. \begin{verbatim}
  822.         with []<META>
  823. \end{verbatim}
  824. type {\bf{}desktop$<${}META$>${}}.  EMACS replaces all instances of
  825. the original word with your revision.  Of course, you will have to
  826. captialize the first letter of ``desktop" where it occurs at the
  827. beginning of a sentence.
  828. You have just completed an {\bf{}unconditional replace}.  In this
  829. operation, EMACS replaces every instance of the found string with the
  830. replacement string.
  831. \section{Query-Replace-String}
  832. You may also replace text on a case by case basis.  The {\bf{}M-\^{}R}
  833. {\it{}query-replace-string} \index{query-replace-string} command causes
  834. EMACS to pause at each instance of the found string.
  835. For example, assume we want to replace some instances of the word
  836. ``desktop" with the word ``personal." Go back to the beginning of the
  837. current buffer and enter the {\bf{}M-\^{}R} {\it{}query-replace-string}
  838. command.  The procedure is very similar to that
  839. which you followed in the unconditional search/replace option.  When the
  840. search begins however, you will notice that EMACS pauses at each
  841. instance of ``desktop" and asks whether you wish to replace it with
  842. the replacement string.  You have a number of options available for
  843. response:
  844. \begin{tabular}{lp{5.5in}}
  845. Response & Effect\\ \hline
  846. Y(es) &Make the current replacement and skip to the next
  847. occurance of the search string\\
  848. N(o) & Do not make this replacement but continue\\
  849. ! & Do the rest of the replacements with no more queries\\
  850. U(ndo) & Undo just the last replacement and query for it
  851. again (This can only go back ONE time)\\
  852. \^{}G & Abort the replacement command (This action does not
  853. undo previously-authorized replacements\\
  854. . & Same effect as \^{}G, but cursor returns to the point at
  855. which the replacement command was given\\
  856. ? & This lists help for the query replacement command\\
  857. \end{tabular}
  858. Practice searching and replacing until you feel
  859. comfortable with the commands and their effects.
  860. \section{Chapter \thechapter{} Summary}
  861. In this chapter, you learned how to search for specified strings of text
  862. in EMACS.  The chapter also dealt with searching for and replacing
  863. elements within a buffer.
  864. \begin{tabular}{llp{4in}}
  865. Key Binding & Keystroke & Effect \\ \hline
  866. Search-Forward & {\bf{}\^{}S} & Searches from point to end of buffer.
  867. Point is moved from current location to
  868. the end of the found string \\
  869. Search-Backward & {\bf{}\^{}R} & Searches from point to beginning of
  870. buffer.  Point is moved from current location to beginning of found
  871. string \\
  872. Replace & {\bf{}M-R} & Replace ALL ocurrences of search string with
  873. specified (null) string from point to the
  874. end of the current buffer \\
  875. Query-Replace-String & {\bf{}M-\^{}R} & As above, but pause at each
  876. found string and query for action \\
  877. \end{tabular}
  878. \chapter{Windows}
  879. \section{Creating Windows}
  880. We have already met windows in an earlier chapter.  In this chapter, we
  881. will explore one of EMACS' more powerful features -- text manipulation
  882. through multiple windowing.
  883. You will recall that windows are areas of buffer text that you can see
  884. \index{window} on the screen.  Because EMACS can support several screen
  885. windows simultaneously you can use them to look into different places in
  886. the same buffer.  You can also use them to look at text in different
  887. buffers.  In effect, you can edit several files at the same time.
  888. Let's invoke EMACS and pull back our file on desktop publishing by
  889. typing
  890. \begin{verbatim}
  891.         emacs publish.txt
  892. \end{verbatim}
  893. When the text appears, type the {\bf{}\^{}X-2} {\it{}split-current-window}
  894. \index{split-current-window} command.  The window splits into two
  895. windows.  The window where the cursor resides is called the {\bf{}current}
  896. window -- in this case the bottom window.  Notice that each window has a
  897. text area and a mode line.  The {\bf{}command line} is however, common to
  898. all windows on the screen.
  899. The two windows on your screen are virtually mirror images of each other
  900. because the new window is opened into the same buffer as the one you are
  901. in when you issue the Open-Window command.  All commands issued to EMACS
  902. are executed on the current buffer in the current window.
  903. To move the cursor to the upper window (i.e., to make that window the
  904. current window, type {\bf{}\^{}X-P} {\it{}previous-window}
  905. \index{previous-window}.  Notice the cursor moves to the upper or
  906. {\bf{}previous} window.  Entering {\bf{}\^{}X-O} {\it{}next-window}
  907. moves to the {\bf{}next} window.  Practice moving between windows.
  908. You will notice that you can also move into the Function Key menu by
  909. entering these commands.
  910. Now move to the upper window.  Let's open a new file.  On the EMACS disk
  911. is a tutorial file.  Let's call it into the upper window by typing:
  912. \begin{verbatim}
  913.         ^X^F emacs.tut
  914. \end{verbatim}
  915. In a short time, the tutorial file will appear in the window.  We now
  916. have two windows on the screen, each looking into different buffers.
  917. We have just used the {\bf{}\^{}X-\^{}F} {\it{}find-file}
  918. \index{find-file} command to find a file and bring it into our current
  919. window.
  920. You can scroll any window up and down with the cursor keys, or with
  921. the commands we've learned so far.  However, because the area of
  922. visible text in each window is relatively small, you can scroll the
  923. current window a line at a time --- Type {\bf{}\^{}X-\^{}N}
  924. {\it{}move-window-down} \index{move-window-down}
  925. The current window scrolls down by one line -- the top line of text
  926. scrolls out of view, and the bottom line moves towards the top of the
  927. screen.  You can imagine, if you like, the whole window slowly moving
  928. down to the end of the buffer in increments of one line.  The command
  929. {\bf{}\^{}X-\^{}P} {\it{}move-window-up} \index{move-window-up}
  930. scrolls the window in the opposite direction.
  931. As we have seen, EMACS editing commands are executed in the current
  932. window, but the program does support a useful feature that allows you to
  933. scroll the {\bf{}next} window.  {\bf{}M-\^{}Z} {\it{}scroll-next-up}
  934. \index{scroll-next-up} scrolls the next window up, {\bf{}M-\^{}U}
  935. {\it{}scroll-next-down} \index{scroll-next-down} scrolls it downward.  From
  936. the tutorial window, practice scrolling the window with the desktop
  937. publishing text in it up and down.
  938. When you're finished, exit EMACS without saving any changes in your
  939. files.
  940. Windows offer you a powerful and easy way to edit text.  By
  941. manipulating a number of windows and buffers on the screen
  942. simultaneously, you can perform complete edits and revisions on the
  943. computer screen while having your draft text or original data
  944. available for reference in another window.
  945. Experiment with splitting the windows on your screen.  Open windows into
  946. different buffers and experiment with any other files you may have.  Try
  947. editing the text in each window, but
  948. don't forget to save any changes you want to keep -- you still have to
  949. save each buffer separately.
  950. %\newpage
  951. \section{Chapter \thechapter{} Summary}
  952. In Chapter \thechapter{} you learned how to manipulate windows and the
  953. editing flexibility they offer.
  954. \begin{tabular}{llp{280pt}}
  955. Key Binding & Keystroke & Effect \\ \hline
  956. Open-Window & {\bf{}\^{}X-2} & Splits current window into two windows
  957. if space is available \\
  958. Close-Windows & {\bf{}\^{}X-1} & Closes all windows except current
  959. window \\
  960. Next-Window & {\bf{}\^{}X-O} & Moves point into next (i.e. downward)
  961. window \\
  962. Previous-Window & {\bf{}\^{}X-P}  & Moves point to previous (i.e. upward)
  963. window \\
  964. Move-Window-Down & {\bf{}\^{}X-\^{}N} & Scrolls current window down
  965. one line \\
  966. Move-Window-Up & {\bf{}\^{}X-\^{}P} & Scrolls current window up one line \\
  967. Redraw-display & {\bf{}M-!} or {\bf{}M-\^{}L} & Window is moved so
  968. line with point (with cursor) is at center of window \\
  969. Grow-Window & {\bf{}\^{}X-\^{}} & Current window is enlarged by one
  970. line and nearest window is shrunk by
  971. one line \\
  972. Shrink-Window & {\bf{}\^{}X-\^{}Z}  & Current window is shrunk by one line
  973. and nearest window is enlarged by one
  974. line \\
  975. Clear-and-Redraw & {\bf{}\^{}L} & Screen is blanked and redrawn.  Keeps
  976. screen updates in sync with your
  977. commands \\
  978. Scroll-Next-Up & {\bf{}M-\^{}Z}  & Scrolls next window up by one line \\
  979. Scroll-Next-Down & {\bf{}M-\^{}U}  & Scrolls next window down by one line \\
  980. \end{tabular}
  981. \chapter{Buffers}
  982. \index{buffer} We have already learned a number of things about
  983. buffers.  As you will recall, they are the major internal entities in
  984. EMACS -- the place where editing commands are executed.  They are
  985. characterized by their {\bf{}names}, their {\bf{}modes}, and by the
  986. file with which they are associated.  Each buffer also ``remembers"
  987. its {\bf{}mark} and {\bf{}point}.  This convenient feature allows you
  988. to go to other buffers and return to the original location in the
  989. ``current" buffer.
  990. Advanced users of EMACS frequently have a number of buffers in the
  991. computer's memory simultaneously.  In the last chapter, for example,
  992. you opened at least two buffers -- one into the text you were editing,
  993. and the other into the EMACS on-line tutorial.  If you deal with
  994. complex text files -- say, sectioned chapters of a book, you may have
  995. five or six buffers in the computer's memory.  You could select
  996. different buffers by simply calling up the file with
  997. {\bf{}\^{}X-\^{}F} {\it{}find-file} \index{find-file}, and let EMACS
  998. open or reopen the buffer.  However, EMACS offers fast and
  999. sophisticated buffering techniques that you will find easy to master
  1000. and much more convenient to use.
  1001. Let's begin by opening three buffers.  You can open any three you
  1002. choose, for example call the following files into memory: {\bf{}fang.txt},
  1003. {\bf{}publish.txt}, and {\bf{}emacs.tut} in the order listed here.  When
  1004. you've finished this process, you'll be looking at a screen showing the
  1005. EMACS tutorial.
  1006. Let's assume that you want to move to the fang.txt buffer --- Enter
  1007. {\bf{}\^{}X-X} {\it{}next-buffer} \index{next-buffer}.
  1008. This command moves you to the \underline{next} buffer.  Because EMACS
  1009. cycles through the buffer list, which is alphabetized, you will now be
  1010. in the {\bf{}fang.txt} buffer. Using {\bf{}\^{}X-X} again places you
  1011. in the {\bf{}publish.txt} buffer. {\it{}If you are on a machine that
  1012. supports function keys, using {\bf{}\^{}X-X} again places you in the
  1013. {\bf{}Function Keys} buffer}. Using {\bf{}\^{}X-X} one last time
  1014. cycles you back to the beginning of the list.
  1015. If you have a large number of buffers to deal with, this cycling
  1016. process may be slow and inconvenient.  The command {\bf{}\^{}X-B}
  1017. {\it{}select-buffer} \index{select-buffer} allows you to specify the
  1018. buffer you wish to be switched to.  When the command is entered, EMACS
  1019. prompts, ``Use buffer:".  Simply enter the buffer name (NOT the file
  1020. name), and that buffer will then become the current buffer.
  1021. Multiple buffer manipulation and editing is a complex activity, and
  1022. you will probably find it very inconvenient to re-save each buffer as
  1023. you modify it.  The command {\bf{}\^{}X-\^{}B} {\it{}list-buffers}
  1024. \index{list-buffers} creates a new window that gives details about all
  1025. the buffers currently known to EMACS.  Buffers that have been modified
  1026. are identified by the ``buffer changed" indicator (an asterisk in the
  1027. second column).  You can thus quickly and easily identify buffers that
  1028. need to be saved to files before you exit EMACS.  The buffer window
  1029. also provides other information -- buffer specific modes, buffer size,
  1030. and buffer name are also listed.  To close this window, simply type
  1031. the close-windows command, {\bf{}\^{}X-1}.
  1032. To delete any buffer, type {\bf{}\^{}X-K} {\it{}delete-buffer}
  1033. \index{delete-buffer}.  EMACS prompts you ``Kill buffer:".  Enter the
  1034. buffer name you want to delete.  As this is destructive command, EMACS
  1035. will ask for confirmation if the buffer was changed and not saved.
  1036. Answer Y(es) or N(o).  As usual {\bf{}\^{}G} cancels the command.
  1037. %\newpage
  1038. \section{Chapter \thechapter{} Summary}
  1039. In Chapter \thechapter{} you learned how to manipulate buffers.
  1040. \begin{tabular}{llp{4in}}
  1041. Key Binding & Keystroke & Effect\\ \hline
  1042. Next-Buffer & {\bf{}\^{}X-X} & Switch to the next buffer in the buffer
  1043. list\\
  1044. Select-Buffer & {\bf{}\^{}X-B} & Switch to a particular buffer\\
  1045. List-Buffers & {\bf{}\^{}X-\^{}B} & List all buffers\\
  1046. Delete-Buffer & {\bf{}\^{}X-K} & delete a particular buffer if it is
  1047. off-screen\\
  1048. \end{tabular}
  1049. \chapter{Modes}
  1050. EMACS allows you to change the way it works in order to customize it
  1051. to the style of editing you are using.  It does this by providing a
  1052. number of different {\bf{}modes} \index{modes}.  These modes can
  1053. effect either a single buffer, or any new buffer that is created.  To
  1054. add a mode to the current buffer, type {\bf{}\^{}X-M} {\it{}add-mode}
  1055. \index{add-mode}.  EMACS will then prompt you for the name of a mode
  1056. to add.  When you type in a legal mode name, and type a $<${}NL$>${},
  1057. EMACS will add the mode name to the list of current mode names in the
  1058. modeline of the current buffer.
  1059. To remove an existing mode, typing the {\bf{}\^{}X-\^{}M} {\it{}delete-mode}
  1060. \index{delete-mode} will cause EMACS to prompt you for the name of a
  1061. mode to delete from the current buffer.  This will remove that mode from
  1062. the mode list on the current modeline.
  1063. Global modes are the modes which are inherited by any new
  1064. buffers which are created.  For example, if you wish to always do string
  1065. searching with character case being significant, you would want global
  1066. mode EXACT to be set so that any new files read in inherit the EXACT
  1067. mode.  Global modes are set with the {\bf{}M-M} {\it{}add-global-mode}
  1068. \index{add-global-mode} command, and unset with the {\bf{}M-\^{}M}
  1069. {\it{}delete-global-mode} \index{delete-global-mode} command.  Also, the
  1070. current global modes are displayed in the first line of a
  1071. {\bf{}\^{}X-\^{}B} {\it{}list-buffers} \index{list-buffers} command.
  1072. On machines which are capable of displaying colors, \index{color} the
  1073. mode commands can also set the background and forground character
  1074. colors.  Using {\it{}add-mode} or {\it{}delete-mode} with a lowercase
  1075. color will set the background color in the current window.  An
  1076. uppercase color will set the forground color in the current window.
  1077. Colors that EMACS knows about are: white, cyan, magenta, yellow, blue,
  1078. red, green, and black.  If the computer you are running on does not
  1079. have eight colors, EMACS will attempt to make some intellegent guess
  1080. at what color to use when you ask for one which is not there.
  1081. \section{ASAVE mode}
  1082. Automatic Save mode tells EMACS to automatically write out the
  1083. current buffer to its associated file on a regular basis.  Normally this
  1084. will be every 256 characters typed into the file.  The environment
  1085. variable \$ACOUNT counts down to the next auto-save, and \$ASAVE is the
  1086. value used to reset \$ACOUNT after a save occurs.
  1087. \section{CMODE mode}
  1088. CMODE is useful to C programmers.  When CMODE is active, EMACS
  1089. will try to assist the user in a number of ways.  This mode is set
  1090. automatically with files that have a .c or .h extension.
  1091. The $<${}NL$>${} key will normally attempt to return the user to the next
  1092. line at the same level of indentation as the current line, unless the
  1093. current line ends with a open brace (\{) in which case the new line will
  1094. be further indented by one tab position.
  1095. A close brace (\}) will delete one tab position preceeding itself
  1096. as it is typed.  This should line up the close brace with its matching
  1097. IF, FOR or WHILE statement.
  1098. A pound sign (\#) with only leading whitespace will delete all
  1099. the whitespace preceeding itself. This will always bring preprocessor
  1100. directives flush to the left margin.
  1101. Whenever any close fence is typed, ie )]$>${}\}, if the matching open
  1102. fence is on screen in the current window, the cursor will breifly flash
  1103. to it, and then back. This makes balencing expressions, and matching
  1104. blocks much easier.
  1105. \section{CRYPT mode}
  1106. When a buffer is in CRYPT mode, \index{encryption} it is
  1107. encrypted whenever it is written to a file, and decrypted when it is
  1108. read from the file.  The encryption key can be specified on the command
  1109. line with the -k switch, or with the {\bf{}M-E} {\it{}set-encryption-key}
  1110. \index{set-encryption-key} command.  If you attempt to read or write a
  1111. buffer in crypt mode and the key has not been set, EMACS will execute
  1112. {\it{}set-encryption-key} automatically, prompting you for the needed key.
  1113. Whenever EMACS prompts you for a key, it will not echo the key to your
  1114. screen as you type it (ie make SURE you get it right when you set it
  1115. originally).
  1116. The encryption algorithm used changes all characters into normal
  1117. printing characters, thus the resulting file is suitable for sending via
  1118. electronic mail.  All versions of MicroEMACS should be able to decrypt the
  1119. resulting file regardless of what machine encrypted it.  Also available
  1120. with EMACS is the stand alone program, MicroCRYPT, which can en/decrypt
  1121. the files produced by CRYPT mode in EMACS.
  1122. \section{EXACT mode}
  1123. All string searches and replacements will take upper/lower case
  1124. into account. Normally the case of a string during a search or replace
  1125. is not taken into account.
  1126. \section{MAGIC mode}
  1127.      In MAGIC mode certain characters gain special meanings when
  1128. used in a search pattern.  Collectively they are know as regular
  1129. expressions, and a limited number of them are supported in MicroEmacs.
  1130. They grant greater flexability when using the search command.  However,
  1131. they do not affect the incremental search command.
  1132.      The symbols that have special meaning in MAGIC mode are
  1133. \^{}, \$, ., *, [ (and ], used with it), and $\backslash${}.
  1134.      The characters \^{} and \$ fix the search pattern to the
  1135. beginning and end of line, respectively.  The \^{} character must
  1136. appear at the beginning of the search string, and the \$ must appear
  1137. at the end, otherwise they loose their meaning and are treated just
  1138. like any other character.  For example, in MAGIC mode, searching for
  1139. the pattern ``t\$" would put the cursor at the end of any line that
  1140. ended with the letter `t'.  Note that this is different than searching
  1141. for ``t$<${}NL$>${}", that is, `t' followed by a newline character.
  1142. The character \$ (and \^{}, for that matter) matches a position, not a
  1143. character, so the cursor remains at the end of the line.  But a
  1144. newline is a character that must be matched, just like any other
  1145. character, which means that the cursor is placed just after it --- on
  1146. the beginning of the next line.
  1147.      The character .  has a very simple meaning -- it matches any single
  1148. character, except the newline.  Thus a search for ``bad.er" could match
  1149. ``badger", ``badder" (slang), or up to the `r' of ``bad error".
  1150.      The character * is known as closure, and means that zero or more of
  1151. the preceding character will match.  If there is no character preceding,
  1152. * has no special meaning, and since it will not match with a newline, *
  1153. will have no special meaning if preceded by the beginning of line symbol
  1154. \^{} or the literal newline character $<${}NL$>${}.
  1155.      The notion of zero or more characters is important.  If, for
  1156. example, your cursor was on the line
  1157. \begin{verbatim}
  1158.         This line is missing two vowels.
  1159. \end{verbatim}
  1160. and a search was made for ``a*", the cursor would not move, because it is
  1161. guarenteed to match no letter `a', which satifies the search
  1162. conditions.  If you wanted to search for one or more of the letter `a',
  1163. you would search for ``aa*", which would match the letter a, then zero or
  1164. more of them.
  1165.      The character [ indicates the beginning of a character class.  It
  1166. is similar to the `any' character ., but you get to choose which
  1167. characters you want to match.  The character class is ended with the
  1168. character ].  So, while a search for ``ba.e" will match ``bane", ``bade",
  1169. ``bale", ``bate", et cetera, you can limit it to matching ``babe" and
  1170. ``bake" by searching for ``ba[bk]e".  Only one of the characters inside
  1171. the [ and ] will match a character.  If in fact you want to match any
  1172. character except those in the character class, you can put a \^{} as the
  1173. first character.  It must be the first character of the class, or else
  1174. it has no special meaning.  So, a search for [\^{}aeiou] will match any
  1175. character except a vowel, but a search for [aeiou\^{}] will match any vowel
  1176. or a \^{}.
  1177. If you have a lot of characters in order that you want to put in the
  1178. character class, you may use a dash (-) as a range character.  So, [a-z]
  1179. will match any letter (or any lower case letter if EXACT mode is on),
  1180. and [0-9a-f] will match any digit or any letter `a' through `f', which
  1181. happen to be the characters for hexadecimal numbers.  If the dash is at
  1182. the beginning or end of a character class, it is taken to be just a
  1183. dash.
  1184.      The escape character $\backslash${} is for those times when you
  1185. want to be in MAGIC mode, but also want to use a regular expression
  1186. character to be just a character.  It turns off the special meaning of
  1187. the character.  So a search for ``it$\backslash${}." will search for a
  1188. line with ``it.", and not ``it" followed by any other character.  The
  1189. escape character will also let you put \^{}, -, or ] inside a
  1190. character class with no special side effects.
  1191. \section{OVER mode}
  1192. OVER mode stands for overwrite mode.  When in this mode, when
  1193. characters are typed, instead of simply inserting them into the file,
  1194. EMACS will attempt to overwrite an existing character past the point.
  1195. This is very useful for adjusting tables and diagrams.
  1196. \section{WRAP mode}
  1197. Wrap mode is used when typing in continuous text.  Whenever the cursor
  1198. is past the currently set fill column \index{fill column} (72 by
  1199. default) and the user types a space or a $<${}NL$>${}, the last word
  1200. of the line is brought down to the beginning of the next line.  Using
  1201. this, one just types a continous stream of words and EMACS
  1202. automatically inserts $<${}NL$>${}s at appropriate places.
  1203. {\bf NOTE to programmers:}
  1204. EMACS actually calls up the function bound to the illegal
  1205. keystroke M-FNW.  This is bound to the function {\it{}wrap-word}
  1206. \index{wrap-word} by default, but can be re-bound to activate different
  1207. functions and macros at wrap time.
  1208. \section{VIEW mode}
  1209. VIEW mode disables all commands which can change the current
  1210. buffer.  EMACS will display an error message and ring the bell every
  1211. time you attempt to change a buffer in VIEW mode.
  1212. %\newpage
  1213. \section{Chapter \thechapter{} Summary}
  1214. In Chapter \thechapter{} you learned about modes and their effects.
  1215. \begin{tabular}{llp{4in}}
  1216. Key Binding & Keystroke & Effect \\ \hline
  1217. Add-Mode & {\bf{}\^{}X-M} & Add a mode to the current buffer\\
  1218. Delete-Mode & {\bf{}\^{}X-\^{}M} & Delete a mode from the current buffer\\
  1219. Add-Global-Mode & {\bf{}M-M} & Add a global mode to the
  1220. current buffer\\
  1221. Delete-Global-Mode & {\bf{}M-\^{}M} & Delete a global mode from the
  1222. current buffer\\
  1223. \end{tabular}
  1224. \Rogue\Monster\
  1225.   echo "will not over write ./part1.tex"
  1226. if [ `wc -c ./part1.tex | awk '{printf $1}'` -ne 55930 ]
  1227. echo `wc -c ./part1.tex | awk '{print "Got " $1 ", Expected " 55930}'`
  1228. echo "Finished archive 2 of 2"
  1229.