summaryrefslogtreecommitdiff
path: root/src/viminfo.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.2243: typos in commentsv8.1.2243Bram Moolenaar2019-11-021-2/+2
| | | | | | Problem: Typos in comments. Solution: Fix the typos. (Dominique Pelle, closes #5160) Also adjust formatting a bit.
* patch 8.1.2225: the "last used" info of a buffer is under usedv8.1.2225Bram Moolenaar2019-10-271-1/+1
| | | | | | Problem: The "last used" info of a buffer is under used. Solution: Add "lastused" to getbufinfo(). List buffers sorted by last-used field. (Andi Massimino, closes #4722)
* patch 8.1.2126: viminfo not sufficiently testedv8.1.2126Bram Moolenaar2019-10-091-57/+49
| | | | | | Problem: Viminfo not sufficiently tested. Solution: Add more test cases. Clean up comments. (Yegappan Lakshmanan, closes #5032)
* patch 8.1.1957: more code can be moved to evalvars.cv8.1.1957Bram Moolenaar2019-09-011-2/+3
| | | | | | Problem: More code can be moved to evalvars.c. Solution: Move code to where it fits better. (Yegappan Lakshmanan, closes #4883)
* patch 8.1.1823: command line history code is spread outv8.1.1823Bram Moolenaar2019-08-061-10/+0
| | | | | | Problem: Command line history code is spread out. Solution: Put the code in a new file. (Yegappan Lakshmanan, closes #4779) Also graduate the +cmdline_hist feature.
* patch 8.1.1749: Coverity warns for using negative indexv8.1.1749Bram Moolenaar2019-07-251-1/+1
| | | | | Problem: Coverity warns for using negative index. Solution: Move using index inside "if".
* patch 8.1.1736: viminfo support is spread outv8.1.1736Bram Moolenaar2019-07-231-1062/+1664
| | | | | | Problem: Viminfo support is spread out. Solution: Move more viminfo code to viminfo.c. (Yegappan Lakshmanan, closes #4717) Reorder code to make most functions static.
* patch 8.1.1731: command line history not read from viminfo on startupv8.1.1731Bram Moolenaar2019-07-221-2/+3
| | | | | Problem: Command line history not read from viminfo on startup. Solution: Get history length after initializing it.
* patch 8.1.1730: wrong place for mark viminfo supportv8.1.1730Bram Moolenaar2019-07-221-0/+796
| | | | | Problem: Wrong place for mark viminfo support. Solution: Move it to viminfo.c. (Yegappan Lakshmanan, closes #4716)
* patch 8.1.1728: wrong place for command line history viminfo supportv8.1.1728Bram Moolenaar2019-07-211-0/+487
| | | | | Problem: Wrong place for command line history viminfo support. Solution: Move it to viminfo.c.
* patch 8.1.1727: code for viminfo support is spread outv8.1.1727Bram Moolenaar2019-07-211-0/+1424
Problem: Code for viminfo support is spread out. Solution: Move to code to viminfo.c. (Yegappan Lakshmanan, closes #4686)