summaryrefslogtreecommitdiff
path: root/src/viminfo.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149Bram Moolenaar2020-01-261-0/+1
| | | | | Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.
* patch 8.2.0111: VAR_SPECIAL is also used for booleansv8.2.0111Bram Moolenaar2020-01-111-7/+15
| | | | | Problem: VAR_SPECIAL is also used for booleans. Solution: Add VAR_BOOL for better type checking.
* patch 8.2.0050: after deleting a file mark it is still in viminfov8.2.0050Bram Moolenaar2019-12-271-2/+1
| | | | | | | Problem: After deleting a file mark it is still in viminfo. Solution: When a file mark was deleted more recently than the mark in the merged viminfo file was updated, do not store the mark. (Pavol Juhas, closes #5401, closes #1339)
* 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)