usr_02.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703
  1. *usr_02.txt* For Vim version 9.0. Last change: 2021 Apr 24
  2. VIM USER MANUAL - by Bram Moolenaar
  3. The first steps in Vim
  4. This chapter provides just enough information to edit a file with Vim. Not
  5. well or fast, but you can edit. Take some time to practice with these
  6. commands, they form the base for what follows.
  7. |02.1| Running Vim for the First Time
  8. |02.2| Inserting text
  9. |02.3| Moving around
  10. |02.4| Deleting characters
  11. |02.5| Undo and Redo
  12. |02.6| Other editing commands
  13. |02.7| Getting out
  14. |02.8| Finding help
  15. Next chapter: |usr_03.txt| Moving around
  16. Previous chapter: |usr_01.txt| About the manuals
  17. Table of contents: |usr_toc.txt|
  18. ==============================================================================
  19. *02.1* Running Vim for the First Time
  20. To start Vim, enter this command: >
  21. gvim file.txt
  22. In UNIX you can type this at any command prompt. If you are running Microsoft
  23. Windows, open a Command Prompt and enter the command.
  24. In either case, Vim starts editing a file called file.txt. Because this
  25. is a new file, you get a blank window. This is what your screen will look
  26. like:
  27. +---------------------------------------+
  28. |# |
  29. |~ |
  30. |~ |
  31. |~ |
  32. |~ |
  33. |"file.txt" [New file] |
  34. +---------------------------------------+
  35. ('#' is the cursor position.)
  36. The tilde (~) lines indicate lines not in the file. In other words, when Vim
  37. runs out of file to display, it displays tilde lines. At the bottom of the
  38. screen, a message line indicates the file is named file.txt and shows that you
  39. are creating a new file. The message information is temporary and other
  40. information overwrites it.
  41. THE VIM COMMAND
  42. The gvim command causes the editor to create a new window for editing. If you
  43. use this command: >
  44. vim file.txt
  45. the editing occurs inside your command window. In other words, if you are
  46. running inside an xterm, the editor uses your xterm window. If you are using
  47. an MS-Windows command prompt window, the editing occurs inside this window.
  48. The text in the window will look the same for both versions, but with gvim you
  49. have extra features, like a menu bar. More about that later.
  50. ==============================================================================
  51. *02.2* Inserting text
  52. The Vim editor is a modal editor. That means that the editor behaves
  53. differently, depending on which mode you are in. The two basic modes are
  54. called Normal mode and Insert mode. In Normal mode the characters you type
  55. are commands. In Insert mode the characters are inserted as text.
  56. Since you have just started Vim it will be in Normal mode. To start Insert
  57. mode you type the "i" command (i for Insert). Then you can enter
  58. the text. It will be inserted into the file. Do not worry if you make
  59. mistakes; you can correct them later. To enter the following programmer's
  60. limerick, this is what you type: >
  61. iA very intelligent turtle
  62. Found programming UNIX a hurdle
  63. After typing "turtle" you press the <Enter> key to start a new line. Finally
  64. you press the <Esc> key to stop Insert mode and go back to Normal mode. You
  65. now have two lines of text in your Vim window:
  66. +---------------------------------------+
  67. |A very intelligent turtle |
  68. |Found programming UNIX a hurdle |
  69. |~ |
  70. |~ |
  71. | |
  72. +---------------------------------------+
  73. WHAT IS THE MODE?
  74. To be able to see what mode you are in, type this command: >
  75. :set showmode
  76. You will notice that when typing the colon Vim moves the cursor to the last
  77. line of the window. That's where you type colon commands (commands that start
  78. with a colon). Finish this command by pressing the <Enter> key (all commands
  79. that start with a colon are finished this way).
  80. Now, if you type the "i" command Vim will display --INSERT-- at the bottom
  81. of the window. This indicates you are in Insert mode.
  82. +---------------------------------------+
  83. |A very intelligent turtle |
  84. |Found programming UNIX a hurdle |
  85. |~ |
  86. |~ |
  87. |-- INSERT -- |
  88. +---------------------------------------+
  89. If you press <Esc> to go back to Normal mode the last line will be made blank.
  90. GETTING OUT OF TROUBLE
  91. One of the problems for Vim novices is mode confusion, which is caused by
  92. forgetting which mode you are in or by accidentally typing a command that
  93. switches modes. To get back to Normal mode, no matter what mode you are in,
  94. press the <Esc> key. Sometimes you have to press it twice. If Vim beeps back
  95. at you, you already are in Normal mode.
  96. ==============================================================================
  97. *02.3* Moving around
  98. After you return to Normal mode, you can move around by using these keys:
  99. h left *hjkl*
  100. j down
  101. k up
  102. l right
  103. At first, it may appear that these commands were chosen at random. After all,
  104. who ever heard of using l for right? But actually, there is a very good
  105. reason for these choices: Moving the cursor is the most common thing you do in
  106. an editor, and these keys are on the home row of your right hand. In other
  107. words, these commands are placed where you can type them the fastest
  108. (especially when you type with ten fingers).
  109. Note:
  110. You can also move the cursor by using the arrow keys. If you do,
  111. however, you greatly slow down your editing because to press the arrow
  112. keys, you must move your hand from the text keys to the arrow keys.
  113. Considering that you might be doing it hundreds of times an hour, this
  114. can take a significant amount of time.
  115. Also, there are keyboards which do not have arrow keys, or which
  116. locate them in unusual places; therefore, knowing the use of the hjkl
  117. keys helps in those situations.
  118. One way to remember these commands is that h is on the left, l is on the
  119. right and j points down. In a picture: >
  120. k
  121. h l
  122. j
  123. The best way to learn these commands is by using them. Use the "i" command to
  124. insert some more lines of text. Then use the hjkl keys to move around and
  125. insert a word somewhere. Don't forget to press <Esc> to go back to Normal
  126. mode. The |vimtutor| is also a nice way to learn by doing.
  127. For Japanese users, Hiroshi Iwatani suggested using this:
  128. Komsomolsk
  129. ^
  130. |
  131. Huan Ho <--- ---> Los Angeles
  132. (Yellow river) |
  133. v
  134. Java (the island, not the programming language)
  135. ==============================================================================
  136. *02.4* Deleting characters
  137. To delete a character, move the cursor over it and type "x". (This is a
  138. throwback to the old days of the typewriter, when you deleted things by typing
  139. xxxx over them.) Move the cursor to the beginning of the first line, for
  140. example, and type xxxxxxx (seven x's) to delete "A very ". The result should
  141. look like this:
  142. +---------------------------------------+
  143. |intelligent turtle |
  144. |Found programming UNIX a hurdle |
  145. |~ |
  146. |~ |
  147. | |
  148. +---------------------------------------+
  149. Now you can insert new text, for example by typing: >
  150. iA young <Esc>
  151. This begins an insert (the i), inserts the words "A young", and then exits
  152. insert mode (the final <Esc>). The result:
  153. +---------------------------------------+
  154. |A young intelligent turtle |
  155. |Found programming UNIX a hurdle |
  156. |~ |
  157. |~ |
  158. | |
  159. +---------------------------------------+
  160. DELETING A LINE
  161. To delete a whole line use the "dd" command. The following line will
  162. then move up to fill the gap:
  163. +---------------------------------------+
  164. |Found programming UNIX a hurdle |
  165. |~ |
  166. |~ |
  167. |~ |
  168. | |
  169. +---------------------------------------+
  170. DELETING A LINE BREAK
  171. In Vim you can join two lines together, which means that the line break
  172. between them is deleted. The "J" command does this.
  173. Take these two lines:
  174. A young intelligent ~
  175. turtle ~
  176. Move the cursor to the first line and press "J":
  177. A young intelligent turtle ~
  178. ==============================================================================
  179. *02.5* Undo and Redo
  180. Suppose you delete too much. Well, you can type it in again, but an easier
  181. way exists. The "u" command undoes the last edit. Take a look at this in
  182. action: After using "dd" to delete the first line, "u" brings it back.
  183. Another one: Move the cursor to the A in the first line:
  184. A young intelligent turtle ~
  185. Now type xxxxxxx to delete "A young". The result is as follows:
  186. intelligent turtle ~
  187. Type "u" to undo the last delete. That delete removed the g, so the undo
  188. restores the character.
  189. g intelligent turtle ~
  190. The next "u" command restores the next-to-last character deleted:
  191. ng intelligent turtle ~
  192. The next "u" command gives you the u, and so on:
  193. ung intelligent turtle ~
  194. oung intelligent turtle ~
  195. young intelligent turtle ~
  196. young intelligent turtle ~
  197. A young intelligent turtle ~
  198. Note:
  199. If you type "u" twice, and the result is that you get the same text
  200. back, you have Vim configured to work Vi compatible. Look here to fix
  201. this: |not-compatible|.
  202. This text assumes you work "The Vim Way". You might prefer to use
  203. the good old Vi way, but you will have to watch out for small
  204. differences in the text then.
  205. REDO
  206. If you undo too many times, you can press CTRL-R (redo) to reverse the
  207. preceding command. In other words, it undoes the undo. To see this in
  208. action, press CTRL-R twice. The character A and the space after it disappear:
  209. young intelligent turtle ~
  210. There's a special version of the undo command, the "U" (undo line) command.
  211. The undo line command undoes all the changes made on the last line that was
  212. edited. Typing this command twice cancels the preceding "U".
  213. A very intelligent turtle ~
  214. xxxx Delete very
  215. A intelligent turtle ~
  216. xxxxxx Delete turtle
  217. A intelligent ~
  218. Restore line with "U"
  219. A very intelligent turtle ~
  220. Undo "U" with "u"
  221. A intelligent ~
  222. The "U" command is a change by itself, which the "u" command undoes and CTRL-R
  223. redoes. This might be a bit confusing. Don't worry, with "u" and CTRL-R you
  224. can go to any of the situations you had. More about that in section |32.2|.
  225. ==============================================================================
  226. *02.6* Other editing commands
  227. Vim has a large number of commands to change the text. See |Q_in| and below.
  228. Here are a few often used ones.
  229. APPENDING
  230. The "i" command inserts a character before the character under the cursor.
  231. That works fine; but what happens if you want to add stuff to the end of the
  232. line? For that you need to insert text after the cursor. This is done with
  233. the "a" (append) command.
  234. For example, to change the line
  235. and that's not saying much for the turtle. ~
  236. to
  237. and that's not saying much for the turtle!!! ~
  238. move the cursor over to the dot at the end of the line. Then type "x" to
  239. delete the period. The cursor is now positioned at the end of the line on the
  240. e in turtle. Now type >
  241. a!!!<Esc>
  242. to append three exclamation points after the e in turtle:
  243. and that's not saying much for the turtle!!! ~
  244. OPENING UP A NEW LINE
  245. The "o" command creates a new, empty line below the cursor and puts Vim in
  246. Insert mode. Then you can type the text for the new line.
  247. Suppose the cursor is somewhere in the first of these two lines:
  248. A very intelligent turtle ~
  249. Found programming UNIX a hurdle ~
  250. If you now use the "o" command and type new text: >
  251. oThat liked using Vim<Esc>
  252. The result is:
  253. A very intelligent turtle ~
  254. That liked using Vim ~
  255. Found programming UNIX a hurdle ~
  256. The "O" command (uppercase) opens a line above the cursor.
  257. USING A COUNT
  258. Suppose you want to move up nine lines. You can type "kkkkkkkkk" or you can
  259. enter the command "9k". In fact, you can precede many commands with a number.
  260. Earlier in this chapter, for instance, you added three exclamation points to
  261. the end of a line by typing "a!!!<Esc>". Another way to do this is to use the
  262. command "3a!<Esc>". The count of 3 tells the command that follows to triple
  263. its effect. Similarly, to delete three characters, use the command "3x". The
  264. count always comes before the command it applies to.
  265. ==============================================================================
  266. *02.7* Getting out
  267. To exit, use the "ZZ" command. This command writes the file and exits.
  268. Note:
  269. Unlike many other editors, Vim does not automatically make a backup
  270. file. If you type "ZZ", your changes are committed and there's no
  271. turning back. You can configure the Vim editor to produce backup
  272. files; see |07.4|.
  273. DISCARDING CHANGES
  274. Sometimes you will make a sequence of changes and suddenly realize you were
  275. better off before you started. Not to worry; Vim has a
  276. quit-and-throw-things-away command. It is: >
  277. :q!
  278. Don't forget to press <Enter> to finish the command.
  279. For those of you interested in the details, the three parts of this command
  280. are the colon (:), which enters Command-line mode; the q command, which tells
  281. the editor to quit; and the override command modifier (!).
  282. The override command modifier is needed because Vim is reluctant to throw
  283. away changes. If you were to just type ":q", Vim would display an error
  284. message and refuse to exit:
  285. E37: No write since last change (use ! to override) ~
  286. By specifying the override, you are in effect telling Vim, "I know that what
  287. I'm doing looks stupid, but I really want to do this."
  288. If you want to continue editing with Vim: The ":e!" command reloads the
  289. original version of the file.
  290. ==============================================================================
  291. *02.8* Finding help
  292. Everything you always wanted to know can be found in the Vim help files.
  293. Don't be afraid to ask!
  294. If you know what you are looking for, it is usually easier to search for it
  295. using the help system, instead of using Google. Because the subjects follow
  296. a certain style guide.
  297. Also the help has the advantage of belonging to your particular Vim version.
  298. You won't see help for commands added later. These would not work for you.
  299. To get generic help use this command: >
  300. :help
  301. You could also use the first function key <F1>. If your keyboard has a <Help>
  302. key it might work as well.
  303. If you don't supply a subject, ":help" displays the general help window.
  304. The creators of Vim did something very clever (or very lazy) with the help
  305. system: They made the help window a normal editing window. You can use all
  306. the normal Vim commands to move through the help information. Therefore h, j,
  307. k, and l move left, down, up and right.
  308. To get out of the help window, use the same command you use to get out of
  309. the editor: "ZZ". This will only close the help window, not exit Vim.
  310. As you read the help text, you will notice some text enclosed in vertical bars
  311. (for example, |help|). This indicates a hyperlink. If you position the
  312. cursor anywhere between the bars and press CTRL-] (jump to tag), the help
  313. system takes you to the indicated subject. (For reasons not discussed here,
  314. the Vim terminology for a hyperlink is tag. So CTRL-] jumps to the location
  315. of the tag given by the word under the cursor.)
  316. After a few jumps, you might want to go back. CTRL-T (pop tag) takes you
  317. back to the preceding position. CTRL-O (jump to older position) also works
  318. nicely here.
  319. At the top of the help screen, there is the notation *help.txt*. This name
  320. between "*" characters is used by the help system to define a tag (hyperlink
  321. destination).
  322. See |29.1| for details about using tags.
  323. To get help on a given subject, use the following command: >
  324. :help {subject}
  325. To get help on the "x" command, for example, enter the following: >
  326. :help x
  327. To find out how to delete text, use this command: >
  328. :help deleting
  329. To get a complete index of all Vim commands, use the following command: >
  330. :help index
  331. When you need to get help for a control character command (for example,
  332. CTRL-A), you need to spell it with the prefix "CTRL-". >
  333. :help CTRL-A
  334. The Vim editor has many different modes. By default, the help system displays
  335. the normal-mode commands. For example, the following command displays help
  336. for the normal-mode CTRL-H command: >
  337. :help CTRL-H
  338. To identify other modes, use a mode prefix. If you want the help for the
  339. insert-mode version of a command, use "i_". For CTRL-H this gives you the
  340. following command: >
  341. :help i_CTRL-H
  342. When you start the Vim editor, you can use several command-line arguments.
  343. These all begin with a dash (-). To find what the -t argument does, for
  344. example, use the command: >
  345. :help -t
  346. The Vim editor has a number of options that enable you to configure and
  347. customize the editor. If you want help for an option, you need to enclose it
  348. in single quotation marks. To find out what the 'number' option does, for
  349. example, use the following command: >
  350. :help 'number'
  351. The table with all mode prefixes can be found below: |help-summary|.
  352. Special keys are enclosed in angle brackets. To find help on the up-arrow key
  353. in Insert mode, for instance, use this command: >
  354. :help i_<Up>
  355. If you see an error message that you don't understand, for example:
  356. E37: No write since last change (use ! to override) ~
  357. You can use the error ID at the start to find help about it: >
  358. :help E37
  359. Summary: *help-summary* >
  360. 1) Use Ctrl-D after typing a topic and let Vim show all available topics.
  361. Or press Tab to complete: >
  362. :help some<Tab>
  363. < More information on how to use the help: >
  364. :help helphelp
  365. 2) Follow the links in bars to related help. You can go from the detailed
  366. help to the user documentation, which describes certain commands more from
  367. a user perspective and less detailed. E.g. after: >
  368. :help pattern.txt
  369. < You can see the user guide topics |03.9| and |usr_27.txt| in the
  370. introduction.
  371. 3) Options are enclosed in single apostrophes. To go to the help topic for the
  372. list option: >
  373. :help 'list'
  374. < If you only know you are looking for a certain option, you can also do: >
  375. :help options.txt
  376. < to open the help page which describes all option handling and then search
  377. using regular expressions, e.g. textwidth.
  378. Certain options have their own namespace, e.g.: >
  379. :help cpo-<letter>
  380. < for the corresponding flag of the 'cpoptions' settings, substitute <letter>
  381. by a specific flag, e.g.: >
  382. :help cpo-;
  383. < And for the 'guioptions' flags: >
  384. :help go-<letter>
  385. 4) Normal mode commands do not have a prefix. To go to the help page for the
  386. "gt" command: >
  387. :help gt
  388. 5) Insert mode commands start with i_. Help for deleting a word: >
  389. :help i_CTRL-W
  390. 6) Visual mode commands start with v_. Help for jumping to the other side of
  391. the Visual area: >
  392. :help v_o
  393. 7) Command line editing and arguments start with c_. Help for using the
  394. command argument %: >
  395. :help c_%
  396. 8) Ex-commands always start with ":", so to go to the ":s" command help: >
  397. :help :s
  398. 9) Commands specifically for debugging start with ">". To go to the help
  399. for the "cont" debug command: >
  400. :help >cont
  401. 10) Key combinations. They usually start with a single letter indicating
  402. the mode for which they can be used. E.g.: >
  403. :help i_CTRL-X
  404. < takes you to the family of CTRL-X commands for insert mode which can be
  405. used to auto-complete different things. Note, that certain keys will
  406. always be written the same, e.g. Control will always be CTRL.
  407. For normal mode commands there is no prefix and the topic is available at
  408. :h CTRL-<Letter>. E.g. >
  409. :help CTRL-W
  410. < In contrast >
  411. :help c_CTRL-R
  412. < will describe what the CTRL-R does when entering commands in the Command
  413. line and >
  414. :help v_CTRL-A
  415. < talks about incrementing numbers in visual mode and >
  416. :help g_CTRL-A
  417. < talks about the "g<C-A>" command (e.g. you have to press "g" then
  418. <CTRL-A>). Here the "g" stands for the normal command "g" which always
  419. expects a second key before doing something similar to the commands
  420. starting with "z".
  421. 11) Regexp items always start with /. So to get help for the "\+" quantifier
  422. in Vim regexes: >
  423. :help /\+
  424. < If you need to know everything about regular expressions, start reading
  425. at: >
  426. :help pattern.txt
  427. 12) Registers always start with "quote". To find out about the special ":"
  428. register: >
  429. :help quote:
  430. 13) Vim script is available at >
  431. :help eval.txt
  432. < Certain aspects of the language are available at :h expr-X where "X" is a
  433. single letter. E.g. >
  434. :help expr-!
  435. < will take you to the topic describing the "!" (Not) operator for Vim
  436. script.
  437. Also important is >
  438. :help function-list
  439. < to find a short description of all functions available. Help topics for
  440. Vim script functions always include the "()", so: >
  441. :help append()
  442. < talks about the append Vim script function rather than how to append text
  443. in the current buffer.
  444. 14) Mappings are talked about in the help page :h |map.txt|. Use >
  445. :help mapmode-i
  446. < to find out about the |:imap| command. Also use :map-topic
  447. to find out about certain subtopics particular for mappings. e.g: >
  448. :help :map-local
  449. < for buffer-local mappings or >
  450. :help map-bar
  451. < for how the '|' is handled in mappings.
  452. 15) Command definitions are talked about :h command-topic, so use >
  453. :help command-bar
  454. < to find out about the '!' argument for custom commands.
  455. 16) Window management commands always start with CTRL-W, so you find the
  456. corresponding help at :h CTRL-W_letter. E.g. >
  457. :help CTRL-W_p
  458. < for moving the previous accessed window. You can also access >
  459. :help windows.txt
  460. < and read your way through if you are looking for window handling
  461. commands.
  462. 17) Use |:helpgrep| to search in all help pages (and also of any installed
  463. plugins). See |:helpgrep| for how to use it.
  464. To search for a topic: >
  465. :helpgrep topic
  466. < This takes you to the first match. To go to the next one: >
  467. :cnext
  468. < All matches are available in the quickfix window which can be opened
  469. with: >
  470. :copen
  471. < Move around to the match you like and press Enter to jump to that help.
  472. 18) The user manual. This describes help topics for beginners in a rather
  473. friendly way. Start at |usr_toc.txt| to find the table of content (as you
  474. might have guessed): >
  475. :help usr_toc.txt
  476. < Skim over the contents to find interesting topics. The "Digraphs" and
  477. "Entering special characters" items are in chapter 24, so to go to that
  478. particular help page: >
  479. :help usr_24.txt
  480. < Also if you want to access a certain chapter in the help, the chapter
  481. number can be accessed directly like this: >
  482. :help 10.1
  483. < which goes to chapter 10.1 in |usr_10.txt| and talks about recording
  484. macros.
  485. 19) Highlighting groups. Always start with hl-groupname. E.g. >
  486. :help hl-WarningMsg
  487. < talks about the WarningMsg highlighting group.
  488. 20) Syntax highlighting is namespaced to :syn-topic. E.g. >
  489. :help :syn-conceal
  490. < talks about the conceal argument for the ":syn" command.
  491. 21) Quickfix commands usually start with :c while location list commands
  492. usually start with :l
  493. 22) Autocommand events can be found by their name: >
  494. :help BufWinLeave
  495. < To see all possible events: >
  496. :help autocommand-events
  497. 23) Command-line switches always start with "-". So for the help of the -f
  498. command switch of Vim use: >
  499. :help -f
  500. 24) Optional features always start with "+". To find out about the
  501. conceal feature use: >
  502. :help +conceal
  503. 25) Documentation for included filetype specific functionality is usually
  504. available in the form ft-<filetype>-<functionality>. So >
  505. :help ft-c-syntax
  506. < talks about the C syntax file and the option it provides. Sometimes,
  507. additional sections for omni completion >
  508. :help ft-php-omni
  509. < or filetype plugins >
  510. :help ft-tex-plugin
  511. < are available.
  512. 26) Error and Warning codes can be looked up directly in the help. So >
  513. :help E297
  514. < takes you exactly to the description of the swap error message and >
  515. :help W10
  516. < talks about the warning "Changing a readonly file".
  517. Sometimes, however, those error codes are not described, but rather are
  518. listed at the Vim command that usually causes this. So: >
  519. :help E128
  520. < takes you to the |:function| command
  521. ==============================================================================
  522. Next chapter: |usr_03.txt| Moving around
  523. Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl: