summaryrefslogtreecommitdiffstats
path: root/src/cmdexpand.c
AgeCommit message (Collapse)Author
2020-03-01patch 8.2.0337: build fails on a few systemsv8.2.0337Bram Moolenaar
Problem: Build fails on a few systems. Solution: Use vim_snprintf() instead of snprintf().
2020-02-29patch 8.2.0335: no completion for :disassemblev8.2.0335Bram Moolenaar
Problem: No completion for :disassemble. Solution: Make completion work. Also complete script-local functions if the name starts with "s:".
2020-01-07patch 8.2.0099: use of NULL pointer when out of memoryv8.2.0099Bram Moolenaar
Problem: Use of NULL pointer when out of memory. Solution: Check for NULL pointer. (Dominique Pelle, closes #5449)
2020-01-05patch 8.2.0089: crash when running out of memory in :setfiletype completionv8.2.0089Bram Moolenaar
Problem: Crash when running out of memory in :setfiletype completion. Solution: Do not allocate memory. (Dominique Pelle, closes #5438)
2020-01-05patch 8.2.0087: crash in command line expansion when out of memoryv8.2.0087Bram Moolenaar
Problem: Crash in command line expansion when out of memory. Solution: Check for NULL pointer. Also make ExpandGeneric() static. (Dominique Pelle, closes #5437)
2019-12-29patch 8.2.0054: :diffget and :diffput don't have good completionv8.2.0054Bram Moolenaar
Problem: :diffget and :diffput don't have good completion. Solution: Add proper completion. (Dominique Pelle, closes #5409)
2019-11-26patch 8.1.2348: :const cannot be followed by "| endif"v8.1.2348Bram Moolenaar
Problem: :const cannot be followed by "| endif". Solution: Check following command for :const. (closes #5269) Also fix completion after :const.
2019-10-19patch 8.1.2187: error for bad regexp even though regexp is not usedv8.1.2187Bram Moolenaar
Problem: Error for bad regexp even though regexp is not used when writing a file. (Arseny Nasokin) Solution: Ignore regexp errors. (closes #5059)
2019-08-25patch 8.1.1927: code for dealing with script files is spread outv8.1.1927Bram Moolenaar
Problem: Code for dealing with script files is spread out. Solution: Move the code to scriptfile.c. (Yegappan Lakshmanan, closes #4861)
2019-08-23patch 8.1.1914: command line expansion code is spread outv8.1.1914Bram Moolenaar
Problem: Command line expansion code is spread out. Solution: Move set_one_cmd_context(). (Yegappan Lakshmanan, closes #4855)
2019-08-21patch 8.1.1897: may free memory twice when out of memoryv8.1.1897Bram Moolenaar
Problem: May free memory twice when out of memory. Solution: Check that backslash_halve_save() returns a different pointer. (Dominique Pelle, closes #4847)
2019-08-18patch 8.1.1887: the +cmdline_compl feature is not in the tiny versionv8.1.1887Bram Moolenaar
Problem: The +cmdline_compl feature is not in the tiny version. Solution: Graduate the +cmdline_compl feature.
2019-08-18patch 8.1.1886: command line expansion code is spread outv8.1.1886Bram Moolenaar
Problem: Command line expansion code is spread out. Solution: Move the code to cmdexpand.c. (Yegappan Lakshmanan, closes #4831)