summaryrefslogtreecommitdiffstats
path: root/src/Makefile
AgeCommit message (Collapse)Author
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)
2019-08-17patch 8.1.1869: code for the argument list is spread outv8.1.1869Bram Moolenaar
Problem: Code for the argument list is spread out. Solution: Put argument list code in arglist.c. (Yegappan Lakshmanan, closes #4819)
2019-08-06patch 8.1.1823: command line history code is spread outv8.1.1823Bram Moolenaar
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.
2019-08-01patch 8.1.1785: map functionality mixed with character inputv8.1.1785Bram Moolenaar
Problem: Map functionality mixed with character input. Solution: Move the map functionality to a separate file. (Yegappan Lakshmanan, closes #4740) Graduate the +localmap feature.
2019-07-28undo extra changes in src/MakefileBram Moolenaar
2019-07-28patch 8.1.1766: code for writing session file is spread outv8.1.1766Bram Moolenaar
Problem: Code for writing session file is spread out. Solution: Put it in one file. (Yegappan Lakshmanan, closes #4728)
2019-07-21patch 8.1.1727: code for viminfo support is spread outv8.1.1727Bram Moolenaar
Problem: Code for viminfo support is spread out. Solution: Move to code to viminfo.c. (Yegappan Lakshmanan, closes #4686)
2019-07-14patch 8.1.1693: syntax coloring and highlighting is in one big filev8.1.1693Bram Moolenaar
Problem: Syntax coloring and highlighting is in one big file. Solution: Move the highlighting to a separate file. (Yegappan Lakshmanan, closes #4674)
2019-07-14patch 8.1.1687: the evalfunc.c file is too bigv8.1.1687Bram Moolenaar
Problem: The evalfunc.c file is too big. Solution: Move testing support to a separate file.
2019-07-13patch 8.1.1684: profiling functionality is spread outv8.1.1684Bram Moolenaar
Problem: Profiling functionality is spread out. Solution: Put profiling functionality in profiling.c. (Yegappan Lakshmanan, closes #4666)
2019-06-14patch 8.1.1529: libcanberra is linked with even when not usedv8.1.1529Bram Moolenaar
Problem: Libcanberra is linked with even when not used. Solution: Have configure check for libcanberra only when wanted. (suggestions by Libor Bukata)
2019-06-09patch 8.1.1502: cannot play any soundv8.1.1502Bram Moolenaar
Problem: Cannot play any sound. Solution: Use libcanberra if available. Add sound functions.
2019-06-06patch 8.1.1476: no statistics displayed after running testsv8.1.1476Bram Moolenaar
Problem: No statistics displayed after running tests. Solution: Summarize the test results. (Christian Brabandt, closes #4391) Also make it possible to report a skipped file.
2019-05-31patch 8.1.1434: test 3 is old stylev8.1.1434Bram Moolenaar
Problem: Test 3 is old style. Solution: Turn into a new style test. (Yegappan Lakshmanan, closes #4460)
2019-05-27patch 8.1.1412: test 30 is old stylev8.1.1412Bram Moolenaar
Problem: Test 30 is old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan, closes #4440)
2019-05-25patch 8.1.1391: no popup window supportv8.1.1391Bram Moolenaar
Problem: No popup window support. Solution: Add initial code for popup windows. Add the 'wincolor' option.
2019-05-19patch 8.1.1357: test 37 is old stylev8.1.1357Bram Moolenaar
Problem: Test 37 is old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan, closes #4398)
2019-05-14patch 8.1.1331: test 29 is old stylev8.1.1331Bram Moolenaar
Problem: Test 29 is old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan, closes #4370)
2019-05-11patch 8.1.1318: code for text changes is in a "misc" filev8.1.1318Bram Moolenaar
Problem: Code for text changes is in a "misc" file. Solution: Move the code to change.c.
2019-05-06patch 8.1.1285: test17 is old stylev8.1.1285Bram Moolenaar
Problem: Test17 is old style. Solution: Turn into new style test. (Yegappan Lakshmanan, closes #4347)
2019-05-01patch 8.1.1241: Ex command info contains confusing informationv8.1.1241Bram Moolenaar
Problem: Ex command info contains confusing information. Solution: When using the NOTADR flag use ADDR_OTHER for the address type. Cleanup code using NOTADR. Check for errors in create_cmdidxs.vim. Adjust Makefile to see the errors.
2019-04-30patch 8.1.1240: runtime desktop files are overwritten by buildv8.1.1240Bram Moolenaar
Problem: Runtime desktop files are overwritten by build. (Tony Mechelynck) Solution: Instead of copying the files find them with "make install".
2019-04-29patch 8.1.1236: sjiscorr.c not found in shadow directoryv8.1.1236Bram Moolenaar
Problem: sjiscorr.c not found in shadow directory. (Tony Mechelynck) Solution: Link po/*.c files with "make shadow".
2019-04-27patch 8.1.1214: old style testsv8.1.1214Bram Moolenaar
Problem: Old style tests. Solution: Move tests from test14 to new style test files. (Yegappan Lakshmanan, closes #4308)
2019-04-27patch 8.1.1210: support for user commands is spread outv8.1.1210Bram Moolenaar
Problem: Support for user commands is spread out. No good reason to make user commands optional. Solution: Move user command support to usercmd.c. Always enable the user_commands feature.
2019-04-25patch 8.1.1203: some autocmd tests are old stylev8.1.1203Bram Moolenaar
Problem: Some autocmd tests are old style. Solution: Turn the tests into new style. (Yegappan Lakshmanan, closes #4295)
2019-04-21patch 8.1.1196: parallel build may failv8.1.1196Bram Moolenaar
Problem: Parallel build may fail. Solution: Update dependencies.
2019-04-21patch 8.1.1195: Vim script debugger functionality needs cleanupv8.1.1195Bram Moolenaar
Problem: Vim script debugger functionality needs cleanup. Solution: Move debugger code to a separate file. Add more tests. (Yegappan Lakshmanan, closes #4285)
2019-04-17patch 8.1.1180: Vim script debugger tests are old stylev8.1.1180Bram Moolenaar
Problem: Vim script debugger tests are old style. Solution: Turn into new style tests. (Yegappan Lakshmanan, closes #4259)
2019-04-11patch 8.1.1151: build fails when using shadow directoryv8.1.1151Bram Moolenaar
Problem: Build fails when using shadow directory. Solution: Link the desktop.in files.
2019-03-30patch 8.1.1076: file for Insert mode is much too bigv8.1.1076Bram Moolenaar
Problem: File for Insert mode is much too big. Solution: Split off the code for Insert completion. (Yegappan Lakshmanan, closes #4044)
2019-03-22patch 8.1.1038: Arabic support excludes Farsiv8.1.1038Bram Moolenaar
Problem: Arabic support excludes Farsi. Solution: Add Farsi support to the Arabic support. (Ali Gholami Rudi, Ameretat Reith)
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-16patch 8.1.0930: typo in Makefilev8.1.0930Bram Moolenaar
Problem: Typo in Makefile. Solution: Change ABORT_CLFAGS to ABORT_CFLAGS. (Kuang-che Wu, closes #3977)
2019-02-13patch 8.1.0914: code related to findfile() is spread outv8.1.0914Bram Moolenaar
Problem: Code related to findfile() is spread out. Solution: Put findfile() related code into a new source file. (Yegappan Lakshmanan, closes #3934)
2019-02-01patch 8.1.0866: build file dependencies are outdatedv8.1.0866Bram Moolenaar
Problem: Build file dependencies are outdated. (John Little) Solution: Run "make proto" and "make depend".
2019-01-31patch 8.1.0857: indent functionality is not separatedv8.1.0857Bram Moolenaar
Problem: Ignore functionality is not separated. Solution: Move indent functionality into a new file. (Yegappan Lakshmanan, closes #3886)
2019-01-26patch 8.1.0827: missing dependency in Makefilev8.1.0827Bram Moolenaar
Problem: Missing dependency in Makefile. Solution: Add dependency from autocmd.o on auto/osdef.h
2019-01-26patch 8.1.0825: code for autocommands is mixed with file I/O codev8.1.0825Bram Moolenaar
Problem: Code for autocommands is mixed with file I/O code. Solution: Move autocommand code to a separate file. (Yegappan Lakshmanan, closes #3863)
2019-01-17patch 8.1.0763: nobody is using the Sun Workshop supportv8.1.0763Bram Moolenaar
Problem: Nobody is using the Sun Workshop support. Solution: Remove the Workshop support.
2019-01-12patch 8.1.0735: cannot handle binary datav8.1.0735Bram Moolenaar
Problem: Cannot handle binary data. Solution: Add the Blob type. (Yasuhiro Matsumoto, closes #3638)
2019-01-12patch 8.1.0733: too many #ifdefs for the multi-byte featurev8.1.0733Bram Moolenaar
Problem: Too many #ifdefs for the multi-byte feature. Solution: Tentatively always enable the multi-byte feature. If you have a problem with this, please discuss on the Vim maillist.
2019-01-11patch 8.1.0723: cannot easily run specific test when in src/testdirv8.1.0723Bram Moolenaar
Problem: Cannot run specific test when in src/testdir the same was as in the src directory. Solution: Move build rule to src/testdir/Makefile.
2019-01-01patch 8.1.0673: functionality for signs is spread out over several filesv8.1.0673Bram Moolenaar
Problem: Functionality for signs is spread out over several files. Solution: Move most of the sign functionality into sign.c. (Yegappan Lakshmanan, closes #3751)
2018-12-22patch 8.1.0624: overuling CONF_ARGS from the environment still does not workv8.1.0624Bram Moolenaar
Problem: Overuling CONF_ARGS from the environment still does not work. (Tony Mechelynck) Solution: Add back CONF_ARGS next to the new numbered ones.
2018-12-22patch 8.1.0620: overuling CONF_ARGS from the environment no longer worksv8.1.0620Bram Moolenaar
Problem: Overuling CONF_ARGS from the environment no longer works. (Tony Mechelynck) Solution: Do not define any CONF_ARGS by default.
2018-12-21patch 8.1.0612: cannot use two global runtime dirs with configurev8.1.0612Bram Moolenaar
Problem: Cannot use two global runtime dirs with configure. Solution: Support a comma in --with-global-runtime. (James McCoy, closes #3704)
2018-12-19patch 8.1.0610: MS-Windows ctags file list differs from Unixv8.1.0610Bram Moolenaar
Problem: MS-Windows ctags file list differs from Unix. Solution: Define TAGS_FILES in the common makefile. (partly by Ken Takata)
2018-12-15patch 8.1.0594: libvterm tests fail to run on Macv8.1.0594Bram Moolenaar
Problem: Libvterm tests fail to run on Mac. Solution: Only run libvterm tests on Linux.
2018-12-15patch 8.1.0592: the libvterm tests are not run as part of Vim testsv8.1.0592Bram Moolenaar
Problem: The libvterm tests are not run as part of Vim tests. Solution: Add testing libvterm.