summaryrefslogtreecommitdiffstats
path: root/src/beval.c
AgeCommit message (Collapse)Author
2018-10-02patch 8.1.0444: unnecessary check for NULL pointerv8.1.0444Bram Moolenaar
Problem: Unnecessary check for NULL pointer. Solution: Remove check and call vim_free() directly.
2018-06-23patch 8.1.0105: all tab stops are the samev8.1.0105Bram Moolenaar
Problem: All tab stops are the same. Solution: Add the variable tabstop feature. (Christian Brabandt, closes #2711)
2018-02-27patch 8.0.1550: various small problems in source filesv8.0.1550Bram Moolenaar
Problem: Various small problems in source files. Solution: Fix the problems.
2017-12-03patch 8.0.1367v8.0.1366Bram Moolenaar
2017-11-19patch 8.0.1318: terminal balloon only shows one linev8.0.1318Bram Moolenaar
Problem: Terminal balloon only shows one line. Solution: Split into several lines in a clever way. Add balloon_split(). Make balloon_show() accept a list in the terminal.
2017-11-18patch 8.0.1312: balloon_show() only works in terminal when compiled with GUIv8.0.1312Bram Moolenaar
Problem: balloon_show() only works in terminal when compiled with the GUI. Solution: Add FEAT_BEVAL_GUI and refactor to move common code out of the GUI specific file.