Bram Moolenaar | 3b1db36 | 2013-08-10 15:00:24 +0200 | [diff] [blame] | 1 | README.txt for version 7.4 of Vim: Vi IMproved. |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 2 | |
| 3 | |
Bram Moolenaar | c92399f | 2015-10-25 13:55:00 +0100 | [diff] [blame] | 4 | WHAT IS VIM? |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 5 | |
Bram Moolenaar | d18cfb7 | 2016-03-29 22:29:18 +0200 | [diff] [blame] | 6 | Vim is a greatly improved version of the good old UNIX editor Vi. Many new |
| 7 | features have been added: multi-level undo, syntax highlighting, command line |
| 8 | history, on-line help, spell checking, filename completion, block operations, |
| 9 | script language, etc. There is also a Graphical User Interface (GUI) |
| 10 | available. Still, Vi compatibility is maintained, those who have Vi "in the |
| 11 | fingers" will feel at home. See "runtime/doc/vi_diff.txt" for differences with |
| 12 | Vi. |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 13 | |
Bram Moolenaar | 755bd26 | 2010-08-14 17:46:20 +0200 | [diff] [blame] | 14 | This editor is very useful for editing programs and other plain text files. |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 15 | All commands are given with normal keyboard characters, so those who can type |
| 16 | with ten fingers can work very fast. Additionally, function keys can be |
Bram Moolenaar | d18cfb7 | 2016-03-29 22:29:18 +0200 | [diff] [blame] | 17 | mapped to commands by the user, and the mouse can be used. |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 18 | |
Bram Moolenaar | d18cfb7 | 2016-03-29 22:29:18 +0200 | [diff] [blame] | 19 | Vim runs under MS-Windows (NT, 2000, XP, Vista, 7, 8, 10), Macintosh, VMS and |
| 20 | almost all flavours of UNIX. Porting to other systems should not be very |
| 21 | difficult. Older versions of Vim run on MS-DOS, MS-Windows 95/98/Me, Amiga |
| 22 | DOS, Atari MiNT, BeOS, RISC OS and OS/2. These are no longer maintained. |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 23 | |
| 24 | |
| 25 | DISTRIBUTION |
| 26 | |
Bram Moolenaar | c92399f | 2015-10-25 13:55:00 +0100 | [diff] [blame] | 27 | You can often use your favorite package manager to install Vim. On Mac and |
| 28 | Linux a small version of Vim is pre-installed, you still need to install Vim |
| 29 | if you want more features. |
| 30 | |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 31 | There are separate distributions for Unix, PC, Amiga and some other systems. |
| 32 | This README.txt file comes with the runtime archive. It includes the |
| 33 | documentation, syntax files and other files that are used at runtime. To run |
| 34 | Vim you must get either one of the binary archives or a source archive. |
| 35 | Which one you need depends on the system you want to run it on and whether you |
| 36 | want or must compile it yourself. Check "http://www.vim.org/download.php" for |
| 37 | an overview of currently available distributions. |
| 38 | |
| 39 | |
Bram Moolenaar | d18cfb7 | 2016-03-29 22:29:18 +0200 | [diff] [blame] | 40 | COMPILING |
| 41 | |
| 42 | If you obtained a binary distribution you don't need to compile Vim. If you |
| 43 | obtained a source distribution, all the stuff for compiling Vim is in the |
| 44 | "src" directory. See src/INSTALL for instructions. |
| 45 | |
| 46 | |
| 47 | INSTALLATION |
| 48 | |
| 49 | See one of these files for system-specific instructions. Either in the |
| 50 | READMEdir directory (in the repository) or the top directory (if you unpack an |
| 51 | archive): |
| 52 | |
| 53 | README_ami.txt Amiga |
| 54 | README_unix.txt Unix |
| 55 | README_dos.txt MS-DOS and MS-Windows |
| 56 | README_mac.txt Macintosh |
| 57 | README_vms.txt VMS |
| 58 | |
| 59 | There are more README_*.txt files, depending on the distribution you used. |
| 60 | |
| 61 | |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 62 | DOCUMENTATION |
| 63 | |
Bram Moolenaar | d18cfb7 | 2016-03-29 22:29:18 +0200 | [diff] [blame] | 64 | The Vim tutor is a one hour training course for beginners. Often it can be |
Bram Moolenaar | 755bd26 | 2010-08-14 17:46:20 +0200 | [diff] [blame] | 65 | started as "vimtutor". See ":help tutor" for more information. |
| 66 | |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 67 | The best is to use ":help" in Vim. If you don't have an executable yet, read |
| 68 | "runtime/doc/help.txt". It contains pointers to the other documentation |
| 69 | files. The User Manual reads like a book and is recommended to learn to use |
| 70 | Vim. See ":help user-manual". |
| 71 | |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 72 | |
| 73 | COPYING |
| 74 | |
| 75 | Vim is Charityware. You can use and copy it as much as you like, but you are |
Bram Moolenaar | 755bd26 | 2010-08-14 17:46:20 +0200 | [diff] [blame] | 76 | encouraged to make a donation to help orphans in Uganda. Please read the file |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 77 | "runtime/doc/uganda.txt" for details (do ":help uganda" inside Vim). |
| 78 | |
| 79 | Summary of the license: There are no restrictions on using or distributing an |
| 80 | unmodified copy of Vim. Parts of Vim may also be distributed, but the license |
| 81 | text must always be included. For modified versions a few restrictions apply. |
| 82 | The license is GPL compatible, you may compile Vim with GPL libraries and |
| 83 | distribute it. |
| 84 | |
| 85 | |
| 86 | SPONSORING |
| 87 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 88 | Fixing bugs and adding new features takes a lot of time and effort. To show |
| 89 | your appreciation for the work and motivate Bram and others to continue |
| 90 | working on Vim please send a donation. |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 91 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 92 | Since Bram is back to a paid job the money will now be used to help children |
| 93 | in Uganda. See runtime/doc/uganda.txt. But at the same time donations |
| 94 | increase Bram's motivation to keep working on Vim! |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 95 | |
| 96 | For the most recent information about sponsoring look on the Vim web site: |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 97 | |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 98 | http://www.vim.org/sponsor/ |
| 99 | |
| 100 | |
Bram Moolenaar | d18cfb7 | 2016-03-29 22:29:18 +0200 | [diff] [blame] | 101 | CONTRIBUTING |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 102 | |
Bram Moolenaar | d18cfb7 | 2016-03-29 22:29:18 +0200 | [diff] [blame] | 103 | If you would like to help making Vim better, see the CONTRIBUTING.md file. |
Bram Moolenaar | 755bd26 | 2010-08-14 17:46:20 +0200 | [diff] [blame] | 104 | |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 105 | |
| 106 | INFORMATION |
| 107 | |
| 108 | The latest news about Vim can be found on the Vim home page: |
| 109 | http://www.vim.org/ |
| 110 | |
Bram Moolenaar | 86ae720 | 2015-07-10 19:31:35 +0200 | [diff] [blame] | 111 | If you have problems, have a look at the Vim documentation or tips: |
| 112 | http://www.vim.org/docs.php |
| 113 | http://vim.wikia.com/wiki/Vim_Tips_Wiki |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 114 | |
Bram Moolenaar | ef6585a | 2012-11-23 21:45:25 +0100 | [diff] [blame] | 115 | If you still have problems or any other questions, use one of the mailing |
| 116 | lists to discuss them with Vim users and developers: |
Bram Moolenaar | 8d4eecc | 2012-11-20 17:19:01 +0100 | [diff] [blame] | 117 | http://www.vim.org/maillist.php |
| 118 | |
| 119 | If nothing else works, report bugs directly: |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 120 | Bram Moolenaar <Bram@vim.org> |
| 121 | |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 122 | |
| 123 | MAIN AUTHOR |
| 124 | |
Bram Moolenaar | 33aea18 | 2010-08-07 13:19:27 +0200 | [diff] [blame] | 125 | Send any other comments, patches, flowers and suggestions to: |
Bram Moolenaar | 0c628d1 | 2004-06-13 12:29:53 +0000 | [diff] [blame] | 126 | |
| 127 | Bram Moolenaar E-mail: Bram@vim.org |