summaryrefslogtreecommitdiffstats
path: root/runtime/doc/starting.txt
AgeCommit message (Collapse)Author
2021-05-29patch 8.2.2905: no error when defaults.vim cannot be loadedv8.2.2905Christian Brabandt
Problem: No error when defaults.vim cannot be loaded. Solution: Add an error message. (Christian Brabandt, closes #8248)
2021-05-16Update runtime filesBram Moolenaar
2021-02-13Update runtime filesBram Moolenaar
2020-12-23Update runtime files.Bram Moolenaar
2020-09-28Update runtime files.Bram Moolenaar
2020-02-26patch 8.2.0320: no Haiku supportv8.2.0320Bram Moolenaar
Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605)
2020-02-15Update runtime files.Bram Moolenaar
2020-01-21Update runtime files.Bram Moolenaar
2020-01-14Update runtime files.Bram Moolenaar
2019-12-26Update runtime files.Bram Moolenaar
2019-12-17patch 8.2.0017: OS/2 and MS-DOS are still mentionedv8.2.0017Bram Moolenaar
Problem: OS/2 and MS-DOS are still mentioned, even though support was removed long ago. Solution: Update documentation. (Yegappan Lakshmanan, closes #5368)
2019-12-12Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar
2019-12-11Minor runtime file updates.Bram Moolenaar
2019-09-07Update runtime filesBram Moolenaar
2019-07-31Update runtime files.Bram Moolenaar
2019-06-06Update runtime files.Bram Moolenaar
2019-05-05patch 8.1.1280: remarks about functionality not in Vi clutters the helpv8.1.1280Bram Moolenaar
Problem: Remarks about functionality not in Vi clutters the help. Solution: Move all info about what is new in Vim or already existed in Vi to vi_diff.txt. Remove {not in Vi} remarks. (closes #4268) Add "noet" to the help files modeline. Also include many other help file improvements.
2019-02-17Update runtime files.Bram Moolenaar
2019-02-16patch 8.1.0932: Farsi support is outdated and unusedv8.1.0932Bram Moolenaar
Problem: Farsi support is outdated and unused. Solution: Delete the Farsi support.
2019-02-08patch 8.1.0881: can execute shell commands in rvim through interfacesv8.1.0881Bram Moolenaar
Problem: Can execute shell commands in rvim through interfaces. Solution: Disable using interfaces in restricted mode. Allow for writing file with writefile(), histadd() and a few others.
2018-11-16Update runtime files.Bram Moolenaar
2018-08-11Update runtime files.Bram Moolenaar
2018-07-29Update runtime files.Bram Moolenaar
2018-07-21Update runtime files.Bram Moolenaar
2018-07-15Update runtime files.Bram Moolenaar
2018-05-17Vim 8.1 releasev8.1.0000Bram Moolenaar
Update version number and information. Fix a couple of tests.
2018-05-06Update runtime files.Bram Moolenaar
2018-03-18Update runtime files. Convert a couple of help files to utf-8.Bram Moolenaar
2018-03-14patch 8.0.1607: --clean loads user settings from .gvimrcv8.0.1607Bram Moolenaar
Problem: --clean loads user settings from .gvimrc. Solution: Behave like "-U NONE" was used. (Ken Takata)
2018-03-09Update runtime files.Bram Moolenaar
2018-03-01patch 8.0.1554: custom plugins loaded with --cleanv8.0.1554Bram Moolenaar
Problem: Custom plugins loaded with --clean. Solution: Do not include the home directory in 'runtimepath'.
2018-02-27Updated runtime files.Bram Moolenaar
Add Serbian translations and spell checking.
2018-02-09Update runtime files.Bram Moolenaar
2018-01-28Update runtime files.Bram Moolenaar
2017-11-21Update runtime files.Bram Moolenaar
2017-11-11Update runtime files.Bram Moolenaar
2017-11-05Update runtime files.Bram Moolenaar
2017-11-02Long overdue runtime update.Bram Moolenaar
2017-07-15patch 8.0.0716: not easy to start Vim cleanlyv8.0.0716Bram Moolenaar
Problem: Not easy to start Vim cleanly without changing the viminfo file. Not possible to know whether the -i command line flag was used. Solution: Add the --clean command line argument. Add the 'viminfofile' option. Add "-u DEFAULTS".
2017-01-17Update runtime files.Bram Moolenaar
2016-12-01patch 8.0.0118v8.0.0118Bram Moolenaar
Problem: "make proto" adds extra function prototype. Solution: Add #ifdef.
2016-11-24patch 8.0.0096v8.0.0096Bram Moolenaar
Problem: When the input or output is not a tty Vim appears to hang. Solution: Add the --ttyfail argument. Also add the "ttyin" and "ttyout" features to be able to check in Vim script.
2016-09-12Vim 8.0 releasev8.0.0000Bram Moolenaar
2016-09-11Updated runtime files, Japanese translations.Bram Moolenaar
2016-09-06Updated runtime files.Bram Moolenaar
2016-08-28Updated runtime files.Bram Moolenaar
2016-08-27Updated runtime files and translations.Bram Moolenaar
2016-08-23patch 7.4.2244v7.4.2244Bram Moolenaar
Problem: Adding pattern to ":oldfiles" is not a generic solution. Solution: Add the ":filter /pat/ cmd" command modifier. Only works for some commands right now.
2016-08-20patch 7.4.2231v7.4.2231Bram Moolenaar
Problem: ":oldfiles" output is a very long list. Solution: Add a pattern argument. (Coot, closes #575)
2016-08-06patch 7.4.2164v7.4.2164Bram Moolenaar
Problem: It is not possible to use plugins in an "after" directory to tune the behavior of a package. Solution: First load plugins from non-after directories, then packages and finally plugins in after directories. Reset 'loadplugins' before executing --cmd arguments.