usr_23.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. *usr_23.txt* For Vim version 9.0. Last change: 2020 Dec 19
  2. VIM USER MANUAL - by Bram Moolenaar
  3. Editing other files
  4. This chapter is about editing files that are not ordinary files. With Vim you
  5. can edit files that are compressed or encrypted. Some files need to be
  6. accessed over the internet. With some restrictions, binary files can be
  7. edited as well.
  8. |23.1| DOS, Mac and Unix files
  9. |23.2| Files on the internet
  10. |23.3| Encryption
  11. |23.4| Binary files
  12. |23.5| Compressed files
  13. Next chapter: |usr_24.txt| Inserting quickly
  14. Previous chapter: |usr_22.txt| Finding the file to edit
  15. Table of contents: |usr_toc.txt|
  16. ==============================================================================
  17. *23.1* DOS, Mac and Unix files
  18. Back in the early days, the old Teletype machines used two characters to
  19. start a new line. One to move the carriage back to the first position
  20. (carriage return, <CR>), another to move the paper up (line feed, <LF>).
  21. When computers came out, storage was expensive. Some people decided that
  22. they did not need two characters for end-of-line. The UNIX people decided
  23. they could use <New Line> or <NL> only for end-of-line. The Apple people
  24. standardized on <CR>. The Microsoft Windows folks decided to keep the old
  25. <CR><NL> (we use <NL> for line feed in the help text).
  26. This means that if you try to move a file from one system to another, you
  27. have line-break problems. The Vim editor automatically recognizes the
  28. different file formats and handles things properly behind your back.
  29. The option 'fileformats' contains the various formats that will be tried
  30. when a new file is edited. The following command, for example, tells Vim to
  31. try UNIX format first and MS-DOS format second: >
  32. :set fileformats=unix,dos
  33. You will notice the format in the message you get when editing a file. You
  34. don't see anything if you edit a native file format. Thus editing a Unix file
  35. on Unix won't result in a remark. But when you edit a dos file, Vim will
  36. notify you of this:
  37. "/tmp/test" [dos] 3L, 71C ~
  38. For a Mac file you would see "[mac]".
  39. The detected file format is stored in the 'fileformat' option. To see
  40. which format you have, execute the following command: >
  41. :set fileformat?
  42. The three names that Vim uses are:
  43. unix <NL>
  44. dos <CR><NL>
  45. mac <CR>
  46. USING THE MAC FORMAT
  47. On Unix, <NL> is used to break a line. It's not unusual to have a <CR>
  48. character halfway a line. Incidentally, this happens quite often in Vi (and
  49. Vim) scripts.
  50. On the Macintosh, where <CR> is the line break character, it's possible to
  51. have a <NL> character halfway a line.
  52. The result is that it's not possible to be 100% sure whether a file
  53. containing both <CR> and <NL> characters is a Mac or a Unix file. Therefore,
  54. Vim assumes that on Unix you probably won't edit a Mac file, and doesn't check
  55. for this type of file. To check for this format anyway, add "mac" to
  56. 'fileformats': >
  57. :set fileformats+=mac
  58. Then Vim will take a guess at the file format. Watch out for situations where
  59. Vim guesses wrong.
  60. OVERRULING THE FORMAT
  61. If you use the good old Vi and try to edit an MS-DOS format file, you will
  62. find that each line ends with a ^M character. (^M is <CR>). The automatic
  63. detection avoids this. Suppose you do want to edit the file that way? Then
  64. you need to overrule the format: >
  65. :edit ++ff=unix file.txt
  66. The "++" string is an item that tells Vim that an option name follows, which
  67. overrules the default for this single command. "++ff" is used for
  68. 'fileformat'. You could also use "++ff=mac" or "++ff=dos".
  69. This doesn't work for any option, only "++ff" and "++enc" are currently
  70. implemented. The full names "++fileformat" and "++encoding" also work.
  71. CONVERSION
  72. You can use the 'fileformat' option to convert from one file format to
  73. another. Suppose, for example, that you have an MS-DOS file named README.TXT
  74. that you want to convert to UNIX format. Start by editing the MS-DOS format
  75. file: >
  76. vim README.TXT
  77. Vim will recognize this as a dos format file. Now change the file format to
  78. UNIX: >
  79. :set fileformat=unix
  80. :write
  81. The file is written in Unix format.
  82. ==============================================================================
  83. *23.2* Files on the internet
  84. Someone sends you an e-mail message, which refers to a file by its URL. For
  85. example:
  86. You can find the information here: ~
  87. ftp://ftp.vim.org/pub/vim/README ~
  88. You could start a program to download the file, save it on your local disk and
  89. then start Vim to edit it.
  90. There is a much simpler way. Move the cursor to any character of the URL.
  91. Then use this command: >
  92. gf
  93. With a bit of luck, Vim will figure out which program to use for downloading
  94. the file, download it and edit the copy. To open the file in a new window use
  95. CTRL-W f.
  96. If something goes wrong you will get an error message. It's possible that
  97. the URL is wrong, you don't have permission to read it, the network connection
  98. is down, etc. Unfortunately, it's hard to tell the cause of the error. You
  99. might want to try the manual way of downloading the file.
  100. Accessing files over the internet works with the netrw plugin. Currently URLs
  101. with these formats are recognized:
  102. ftp:// uses ftp
  103. rcp:// uses rcp
  104. scp:// uses scp
  105. http:// uses wget (reading only)
  106. Vim doesn't do the communication itself, it relies on the mentioned programs
  107. to be available on your computer. On most Unix systems "ftp" and "rcp" will
  108. be present. "scp" and "wget" might need to be installed.
  109. Vim detects these URLs for each command that starts editing a new file, also
  110. with ":edit" and ":split", for example. Write commands also work, except for
  111. http://.
  112. For more information, also about passwords, see |netrw|.
  113. ==============================================================================
  114. *23.3* Encryption
  115. Some information you prefer to keep to yourself. For example, when writing
  116. a test on a computer that students also use. You don't want clever students
  117. to figure out a way to read the questions before the exam starts. Vim can
  118. encrypt the file for you, which gives you some protection.
  119. To start editing a new file with encryption, use the "-x" argument to start
  120. Vim. Example: >
  121. vim -x exam.txt
  122. Vim prompts you for a key used for encrypting and decrypting the file:
  123. Enter encryption key: ~
  124. Carefully type the secret key now. You cannot see the characters you type,
  125. they will be replaced by stars. To avoid the situation that a typing mistake
  126. will cause trouble, Vim asks you to enter the key again:
  127. Enter same key again: ~
  128. You can now edit this file normally and put in all your secrets. When you
  129. finish editing the file and tell Vim to exit, the file is encrypted and
  130. written.
  131. When you edit the file with Vim, it will ask you to enter the same key
  132. again. You don't need to use the "-x" argument. You can also use the normal
  133. ":edit" command. Vim adds a magic string to the file by which it recognizes
  134. that the file was encrypted.
  135. If you try to view this file using another program, all you get is garbage.
  136. Also, if you edit the file with Vim and enter the wrong key, you get garbage.
  137. Vim does not have a mechanism to check if the key is the right one (this makes
  138. it much harder to break the key).
  139. SWITCHING ENCRYPTION ON AND OFF
  140. To disable the encryption of a file, set the 'key' option to an empty string:
  141. >
  142. :set key=
  143. The next time you write the file this will be done without encryption.
  144. Setting the 'key' option to enable encryption is not a good idea, because
  145. the password appears in the clear. Anyone shoulder-surfing can read your
  146. password.
  147. To avoid this problem, the ":X" command was created. It asks you for an
  148. encryption key, just like the "-x" argument did: >
  149. :X
  150. Enter encryption key: ******
  151. Enter same key again: ******
  152. LIMITS ON ENCRYPTION
  153. The encryption algorithm used by Vim is not very strong. It is good enough to
  154. keep out the casual prowler, but not good enough to keep out a cryptology
  155. expert with lots of time on his hands. The text in the swap file and the undo
  156. file is also encrypted. However, this is done block-by-block and may reduce
  157. the time needed to crack a password. You can disable the swap file, but then
  158. a crash will cause you to lose your work, since Vim keeps all the text in
  159. memory only. The undo file can be disabled with the only disadvantage that
  160. you can't undo after unloading the buffer.
  161. To avoid using a swap file, supply the -n argument on the command line.
  162. For example, to edit the encrypted file "file.txt" without a swap file use the
  163. following command: >
  164. vim -x -n file.txt
  165. When already editing a file, the swapfile can be disabled with: >
  166. :setlocal noswapfile
  167. Since there is no swapfile, recovery will be impossible. Save the file a bit
  168. more often to avoid the risk of losing your changes.
  169. While the file is in memory, it is in plain text. Anyone with privilege can
  170. look in the editor's memory and discover the contents of the file.
  171. If you use a viminfo file, be aware that the contents of text registers are
  172. written out in the clear as well.
  173. If you really want to secure the contents of a file, edit it only on a
  174. portable computer not connected to a network, use good encryption tools, and
  175. keep the computer locked up in a big safe when not in use.
  176. ==============================================================================
  177. *23.4* Binary files
  178. You can edit binary files with Vim. Vim wasn't really made for this, thus
  179. there are a few restrictions. But you can read a file, change a character and
  180. write it back, with the result that only that one character was changed and
  181. the file is identical otherwise.
  182. To make sure that Vim does not use its clever tricks in the wrong way, add
  183. the "-b" argument when starting Vim: >
  184. vim -b datafile
  185. This sets the 'binary' option. The effect of this is that unexpected side
  186. effects are turned off. For example, 'textwidth' is set to zero, to avoid
  187. automatic formatting of lines. And files are always read in Unix file format.
  188. Binary mode can be used to change a message in a program. Be careful not to
  189. insert or delete any characters, it would stop the program from working. Use
  190. "R" to enter replace mode.
  191. Many characters in the file will be unprintable. To see them in Hex format: >
  192. :set display=uhex
  193. Otherwise, the "ga" command can be used to see the value of the character
  194. under the cursor. The output, when the cursor is on an <Esc>, looks like
  195. this:
  196. <^[> 27, Hex 1b, Octal 033 ~
  197. There might not be many line breaks in the file. To get some overview switch
  198. the 'wrap' option off: >
  199. :set nowrap
  200. BYTE POSITION
  201. To see on which byte you are in the file use this command: >
  202. g CTRL-G
  203. The output is verbose:
  204. Col 9-16 of 9-16; Line 277 of 330; Word 1806 of 2058; Byte 10580 of 12206 ~
  205. The last two numbers are the byte position in the file and the total number of
  206. bytes. This takes into account how 'fileformat' changes the number of bytes
  207. that a line break uses.
  208. To move to a specific byte in the file, use the "go" command. For
  209. example, to move to byte 2345: >
  210. 2345go
  211. USING XXD
  212. A real binary editor shows the text in two ways: as it is and in hex format.
  213. You can do this in Vim by first converting the file with the "xxd" program.
  214. This comes with Vim.
  215. First edit the file in binary mode: >
  216. vim -b datafile
  217. Now convert the file to a hex dump with xxd: >
  218. :%!xxd
  219. The text will look like this:
  220. 0000000: 1f8b 0808 39d7 173b 0203 7474 002b 4e49 ....9..;..tt.+NI ~
  221. 0000010: 4b2c 8660 eb9c ecac c462 eb94 345e 2e30 K,.`.....b..4^.0 ~
  222. 0000020: 373b 2731 0b22 0ca6 c1a2 d669 1035 39d9 7;'1.".....i.59. ~
  223. You can now view and edit the text as you like. Vim treats the information as
  224. ordinary text. Changing the hex does not cause the printable character to be
  225. changed, or the other way around.
  226. Finally convert it back with:
  227. >
  228. :%!xxd -r
  229. Only changes in the hex part are used. Changes in the printable text part on
  230. the right are ignored.
  231. See the manual page of xxd for more information.
  232. ==============================================================================
  233. *23.5* Compressed files
  234. This is easy: You can edit a compressed file just like any other file. The
  235. "gzip" plugin takes care of decompressing the file when you edit it. And
  236. compressing it again when you write it.
  237. These compression methods are currently supported:
  238. .Z compress
  239. .gz gzip
  240. .bz2 bzip2
  241. Vim uses the mentioned programs to do the actual compression and
  242. decompression. You might need to install the programs first.
  243. ==============================================================================
  244. Next chapter: |usr_24.txt| Inserting quickly
  245. Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl: