annotate README.md @ 33947:f4d88db48a63 v9.0.2168

patch 9.0.2168: Moving tabpages on :drop may cause an endless loop Commit: https://github.com/vim/vim/commit/df12e39b8b9dd39056e22b452276622cb7b617fd Author: Christian Brabandt <cb@256bit.org> Date: Sat Dec 16 13:55:32 2023 +0100 patch 9.0.2168: Moving tabpages on :drop may cause an endless loop Problem: Moving tabpages on :drop may cause an endless loop Solution: Disallow moving tabpages on :drop when cleaning up the arglist first Moving tabpages during drop command may cause an endless loop When executing a :tab drop command, Vim will close all windows not in the argument list. This triggers various autocommands. If a user has created an 'au Tabenter * :tabmove -' autocommand, this can cause Vim to end up in an endless loop, when trying to iterate over all tabs (which would trigger the tabmove autocommand, which will change the tpnext pointer, etc). So instead of blocking all autocommands before we actually try to edit the given file, lets simply disallow to move tabpages around. Otherwise, we may change the expected number of events triggered during a :drop command, which users may rely on (there is actually a test, that expects various TabLeave/TabEnter autocommands) and would therefore be a backwards incompatible change. Don't make this an error, as this could trigger several times during the drop command, but silently ignore the :tabmove command in this case (and it should in fact finally trigger successfully when loading the given file in a new tab). So let's just be quiet here instead. fixes: #13676 closes: #13686 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Dec 2023 14:00:05 +0100
parents aaa5c1db3731
children 4635e43f2c6f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
1 # [![Vim The editor](https://github.com/vim/vim/raw/master/runtime/vimlogo.gif)](https://www.vim.org)
23327
2b493a1b5478 Tweak the style a bit.
Bram Moolenaar <Bram@vim.org>
parents: 23326
diff changeset
2
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
3 [![Github Build status](https://github.com/vim/vim/workflows/GitHub%20CI/badge.svg)](https://github.com/vim/vim/actions?query=workflow%3A%22GitHub+CI%22)
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
4 [![Appveyor Build status](https://ci.appveyor.com/api/projects/status/o2qht2kjm02sgghk?svg=true)](https://ci.appveyor.com/project/chrisbra/vim)
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
5 [![Cirrus Build Status](https://api.cirrus-ci.com/github/vim/vim.svg)](https://cirrus-ci.com/github/vim/vim)
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
6 [![Coverage Status](https://codecov.io/gh/vim/vim/coverage.svg?branch=master)](https://codecov.io/gh/vim/vim?branch=master)
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
7 [![Coverity Scan](https://scan.coverity.com/projects/241/badge.svg)](https://scan.coverity.com/projects/vim)
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
8 [![Debian CI](https://badges.debian.net/badges/debian/testing/vim/version.svg)](https://buildd.debian.org/vim)
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
9 [![Packages](https://repology.org/badge/tiny-repos/vim.svg)](https://repology.org/metapackage/vim)
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
10 [![Fossies codespell report](https://fossies.org/linux/test/vim-master.tar.gz/codespell.svg)](https://fossies.org/linux/test/vim-master.tar.gz/codespell.html)
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11
24892
e73a9667e471 Add links to discussion forums.
Bram Moolenaar <Bram@vim.org>
parents: 24468
diff changeset
12 If you find a bug or want to discuss the best way to add a new feature, please
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
13 [open an issue](https://github.com/vim/vim/issues/new/choose).
24892
e73a9667e471 Add links to discussion forums.
Bram Moolenaar <Bram@vim.org>
parents: 24468
diff changeset
14 If you have a question or want to discuss the best way to do something with
e73a9667e471 Add links to discussion forums.
Bram Moolenaar <Bram@vim.org>
parents: 24468
diff changeset
15 Vim, you can use [StackExchange](https://vi.stackexchange.com/)
e73a9667e471 Add links to discussion forums.
Bram Moolenaar <Bram@vim.org>
parents: 24468
diff changeset
16 or one of the [Maillists](https://www.vim.org/community.php).
e73a9667e471 Add links to discussion forums.
Bram Moolenaar <Bram@vim.org>
parents: 24468
diff changeset
17
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
18 ## What is Vim?
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19
24468
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
20 Vim is a greatly improved version of the good old UNIX editor
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
21 [Vi](https://en.wikipedia.org/wiki/Vi). Many new
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
22 features have been added: multi-level undo, syntax highlighting, command line
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
23 history, on-line help, spell checking, filename completion, block operations,
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
24 script language, etc. There is also a Graphical User Interface (GUI)
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
25 available. Still, Vi compatibility is maintained, those who have Vi "in the
24468
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
26 fingers" will feel at home.
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
27 See [`runtime/doc/vi_diff.txt`](runtime/doc/vi_diff.txt) for differences with
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
28 Vi.
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
29
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
30 This editor is very useful for editing programs and other plain text files.
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
31 All commands are given with normal keyboard characters, so those who can type
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
32 with ten fingers can work very fast. Additionally, function keys can be
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
33 mapped to commands by the user, and the mouse can be used.
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
34
30320
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 29533
diff changeset
35 Vim runs under MS-Windows (7, 8, 10, 11), macOS, Haiku, VMS and almost all
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 29533
diff changeset
36 flavours of UNIX. Porting to other systems should not be very difficult.
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 29533
diff changeset
37 Older versions of Vim run on MS-DOS, MS-Windows 95/98/Me/NT/2000/XP/Vista,
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 29533
diff changeset
38 Amiga DOS, Atari MiNT, BeOS, RISC OS and OS/2. These are no longer maintained.
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
39
19181
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19125
diff changeset
40 For Vim9 script see [README_VIM9](README_VIM9.md).
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19125
diff changeset
41
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
42 ## Distribution
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
43
7177
c4d677c50b9b commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents: 7137
diff changeset
44 You can often use your favorite package manager to install Vim. On Mac and
c4d677c50b9b commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents: 7137
diff changeset
45 Linux a small version of Vim is pre-installed, you still need to install Vim
c4d677c50b9b commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents: 7137
diff changeset
46 if you want more features.
c4d677c50b9b commit https://github.com/vim/vim/commit/c92399f4ee6d0289dbe5d708d14a84e32f617bd5
Christian Brabandt <cb@256bit.org>
parents: 7137
diff changeset
47
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
48 There are separate distributions for Unix, PC, Amiga and some other systems.
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
49 This `README.md` file comes with the runtime archive. It includes the
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
50 documentation, syntax files and other files that are used at runtime. To run
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
51 Vim you must get either one of the binary archives or a source archive.
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
52 Which one you need depends on the system you want to run it on and whether you
25700
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24892
diff changeset
53 want or must compile it yourself. Check https://www.vim.org/download.php for
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
54 an overview of currently available distributions.
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
55
8917
d07e51166f08 commit https://github.com/vim/vim/commit/5d98c9d93278d6961bfee59151666b8a8bcd23c3
Christian Brabandt <cb@256bit.org>
parents: 8791
diff changeset
56 Some popular places to get the latest Vim:
24468
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
57 * Check out the git repository from [GitHub](https://github.com/vim/vim).
8917
d07e51166f08 commit https://github.com/vim/vim/commit/5d98c9d93278d6961bfee59151666b8a8bcd23c3
Christian Brabandt <cb@256bit.org>
parents: 8791
diff changeset
58 * Get the source code as an [archive](https://github.com/vim/vim/releases).
d07e51166f08 commit https://github.com/vim/vim/commit/5d98c9d93278d6961bfee59151666b8a8bcd23c3
Christian Brabandt <cb@256bit.org>
parents: 8791
diff changeset
59 * Get a Windows executable from the
d07e51166f08 commit https://github.com/vim/vim/commit/5d98c9d93278d6961bfee59151666b8a8bcd23c3
Christian Brabandt <cb@256bit.org>
parents: 8791
diff changeset
60 [vim-win32-installer](https://github.com/vim/vim-win32-installer/releases) repository.
d07e51166f08 commit https://github.com/vim/vim/commit/5d98c9d93278d6961bfee59151666b8a8bcd23c3
Christian Brabandt <cb@256bit.org>
parents: 8791
diff changeset
61
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
62 ## Compiling
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
63
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
64 If you obtained a binary distribution you don't need to compile Vim. If you
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
65 obtained a source distribution, all the stuff for compiling Vim is in the
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
66 [`src`](./src/) directory. See [`src/INSTALL`](./src/INSTALL) for instructions.
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
67
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
68 ## Installation
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
69
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
70 See one of these files for system-specific instructions. Either in the
24468
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
71 [READMEdir directory](./READMEdir/) (in the repository) or
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
72 the top directory (if you unpack an archive):
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
73
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
74 ```
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
75 README_ami.txt Amiga
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
76 README_unix.txt Unix
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
77 README_dos.txt MS-DOS and MS-Windows
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
78 README_mac.txt Macintosh
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
79 README_haiku.txt Haiku
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
80 README_vms.txt VMS
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
81 ```
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
82
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
83 There are other `README_*.txt` files, depending on the distribution you used.
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
84
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
85 ## Documentation
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
86
8791
43b5ff7837ea commit https://github.com/vim/vim/commit/d18cfb7dbfd32af729d3ac5136f77dcdbefe5dee
Christian Brabandt <cb@256bit.org>
parents: 8619
diff changeset
87 The Vim tutor is a one hour training course for beginners. Often it can be
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
88 started as `vimtutor`. See `:help tutor` for more information.
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
89
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
90 The best is to use `:help` in Vim. If you don't have an executable yet, read
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
91 [`runtime/doc/help.txt`](./runtime/doc/help.txt).
24468
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
92 It contains pointers to the other documentation files.
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
93 The User Manual reads like a book and is recommended to learn to use
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
94 Vim. See `:help user-manual`.
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
95
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
96 ## Copying
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
97
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
98 Vim is Charityware. You can use and copy it as much as you like, but you are
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
99 encouraged to make a donation to help orphans in Uganda. Please read the file
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
100 [`runtime/doc/uganda.txt`](./runtime/doc/uganda.txt)
24468
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
101 for details (do `:help uganda` inside Vim).
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
102
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
103 Summary of the license: There are no restrictions on using or distributing an
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
104 unmodified copy of Vim. Parts of Vim may also be distributed, but the license
31579
7d68a90cbf5c Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 30320
diff changeset
105 text must always be included. For modified versions, a few restrictions apply.
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
106 The license is GPL compatible, you may compile Vim with GPL libraries and
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
107 distribute it.
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
108
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
109 ## Sponsoring
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
110
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
111 Fixing bugs and adding new features takes a lot of time and effort. To show
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
112 your appreciation for the work and motivate Bram and others to continue
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
113 working on Vim please send a donation.
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
114
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
115 Since Bram is back to a paid job the money will now be used to help children
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
116 in Uganda. See [`runtime/doc/uganda.txt`](./runtime/doc/uganda.txt). But
24468
9f41bfdbc6fc Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23462
diff changeset
117 at the same time donations increase Bram's motivation to keep working on Vim!
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
118
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
119 For the most recent information about sponsoring look on the Vim web site:
25700
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24892
diff changeset
120 https://www.vim.org/sponsor/
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
121
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
122 ## Contributing
7127
e945a8e35535 commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents: 6916
diff changeset
123
31579
7d68a90cbf5c Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 30320
diff changeset
124 If you would like to help make Vim better, see the
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
125 [CONTRIBUTING.md](./CONTRIBUTING.md) file.
7127
e945a8e35535 commit https://github.com/vim/vim/commit/3fe076f0feb91460266fdf7f9133a59c49a53c4e
Christian Brabandt <cb@256bit.org>
parents: 6916
diff changeset
126
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
127 ## Information
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
128
29533
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29352
diff changeset
129 If you are on macOS, you can use [Macvim](https://macvim-dev.github.io/macvim/).
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 29352
diff changeset
130
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
131 The latest news about Vim can be found on the Vim home page:
25700
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24892
diff changeset
132 https://www.vim.org/
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
133
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
134 If you have problems, have a look at the Vim documentation or tips:
25700
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24892
diff changeset
135 https://www.vim.org/docs.php
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24892
diff changeset
136 https://vim.fandom.com/wiki/Vim_Tips_Wiki
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
137
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
138 If you still have problems or any other questions, use one of the mailing
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
139 lists to discuss them with Vim users and developers:
25700
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24892
diff changeset
140 https://www.vim.org/maillist.php
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
141
32770
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 31676
diff changeset
142 If nothing else works, report bugs directly to the vim-dev mailing list:
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
143 `<vim-dev@vim.org>`
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
144
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
145 ## Main author
6916
228dc3f3f711 patch 7.4.777
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
146
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
147 Most of Vim was created by Bram Moolenaar `<Bram@vim.org>`
32774
1b2730ece70e runtime: Add a few more remarks about Bram and new runtime files
Christian Brabandt <cb@256bit.org>
parents: 32770
diff changeset
148 [Bram-Moolenaar](https://vimhelp.org/version9.txt.html#Bram-Moolenaar)
1b2730ece70e runtime: Add a few more remarks about Bram and new runtime files
Christian Brabandt <cb@256bit.org>
parents: 32770
diff changeset
149
32770
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 31676
diff changeset
150 Send any other comments, patches, flowers and suggestions to the vim-dev mailing list:
32878
aaa5c1db3731 docs: Improve Markdown in README (#12829)
Christian Brabandt <cb@256bit.org>
parents: 32774
diff changeset
151 `<vim-dev@vim.org>`
14119
b5b0b87f1a39 patch 8.1.0077: header of README file is not nice
Christian Brabandt <cb@256bit.org>
parents: 14115
diff changeset
152
29314
f8116058ca76 release version 9.0
Bram Moolenaar <Bram@vim.org>
parents: 26596
diff changeset
153 This is `README.md` for version 9.0 of Vim: Vi IMproved.