- Apr 20, 2018
-
-
Bram Moolenaar authored
Problem: Warning for signed-unsigned incompatibility. Solution: Change type from "char *" to "char_u *". (John Marriott)
-
Bram Moolenaar authored
Problem: MS-Windows with msys2 cannot build Ruby statically. Solution: Define RUBY_VERSION. (Gray Wolf, closes #2826)
-
Bram Moolenaar authored
Problem: ":args" output is hard to read. Solution: Make columns with the names if the output is more than one line.
-
- Apr 19, 2018
-
-
Bram Moolenaar authored
Problem: fchown() used when it is not supported. Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: Check for C99 features is incomplete. Solution: Use AC_PROG_CC_C99 and when C99 isn't fully supported check the features we need. (James McCoy, closes #2820)
-
- Apr 18, 2018
-
-
Bram Moolenaar authored
Problem: Flexible array member feature not supported by HP-UX. (John Marriott) Solution: Do not use the flexible array member feature of C99.
-
Bram Moolenaar authored
Problem: Package directory not added to 'rtp' if prefix matches. Solution: Check the match is a full match. (Ozaki Kiichi, closes #2817) Also handle different ways of spelling a path.
-
- Apr 17, 2018
-
-
Bram Moolenaar authored
Problem: Incomplete testing for completion fix. (Lifepillar) Solution: Add a test with CTRL-P.
-
Bram Moolenaar authored
Problem: Crash when terminal API call deletes the buffer. Solution: Lock the buffer while calling a function. (closes #2813)
-
Bram Moolenaar authored
Problem: Characters deleted on completion. (Adrià Farrés) Solution: Also check the last item for the ORIGINAL_TEXT flag. (Christian Brabandt, closes #1645)
-
Bram Moolenaar authored
Problem: No configure check for the used C99 features. Solution: Add a compilation check. Tentatively document C99 features.
-
Bram Moolenaar authored
Problem: No comma after last enum item. Solution: Add a few commas to check if this works for all compilers. Also add a few // comments.
-
Bram Moolenaar authored
Problem: Condition always false, useless code. Solution: Remove the code. (Nikolai Pavlov, closes #2808)
-
- Apr 16, 2018
-
-
Bram Moolenaar authored
Problem: qf_get_properties() function is too long. Solution: Refactor the code. (Yegappan Lakshmanan, closes #2807)
-
Bram Moolenaar authored
Problem: Older MSVC doesn't support declarations halfway a block. Solution: Move the declaration back to the start of the block.
-
Bram Moolenaar authored
Problem: Terminal debugger doesn't handle command arguments. Solution: Add the :TermdebugCommand command. Use a ! to execute right away. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Declarations cannot be halfway a block. Solution: Move one declaration to check if this works for all compilers.
-
Bram Moolenaar authored
Problem: Using one item array size declaration is misleading. Solution: Instead of using "[1]" and actually using a larger array, use "[]". This is to verify that this C99 feature works for all compilers.
-
- Apr 15, 2018
-
-
Bram Moolenaar authored
Problem: Cannot specify a minimal size for a terminal window. Solution: Support the "rows*cols" format for 'winsize'.
-
Bram Moolenaar authored
Problem: No test for using the 'termsize' option. Solution: Add a test.
-
Bram Moolenaar authored
Problem: When a timer is running a terminal window may not close after a shell has exited. Solution: Call job_status() more often.
-
Bram Moolenaar authored
Problem: Cannot specify which Python executable configure should use. Solution: Add --with-python-command and --with-python3-command.
-
Bram Moolenaar authored
Problem: Terminal scrollback test fails on MS-Windows. Solution: Check for the last line of output anticipating there might be an empty line below it.
-
Bram Moolenaar authored
Problem: C89 check causes too much trouble. Solution: Remove enforcing C89 for now.
-
Bram Moolenaar authored
Problem: Test for term_setsize() does not give a good error message. Solution: use assert_inrange().
-
Bram Moolenaar authored
Problem: Terminal buffer can be 1 more than 'terminalscroll' lines. Solution: Change > to >=.
-
- Apr 14, 2018
-
-
Bram Moolenaar authored
Problem: Term_setsize() does not give an error in a normal buffer. Solution: Add an error message.
-
Bram Moolenaar authored
Problem: Terminal debugger doesn't handle arguments. Solution: Use <f-args> and pass all the arguments to gdb, e.g. the core file or process number. (suggested by Christian Brabandt) Disallow starting the debugger twice.
-
Bram Moolenaar authored
Problem: Terminal scrollback is not limited. Solution: Add the 'terminalscroll' option.
-
Bram Moolenaar authored
Problem: Term_setsize() is not implemented yet. Solution: Implement it.
-
Bram Moolenaar authored
Problem: Building with Ruby fails. Solution: Don't add -ansi when building with Ruby.
-
Bram Moolenaar authored
Problem: Some non-C89 code may slip through. Solution: Enforce C89 in configure. Fix detected problems. (James McCoy, closes #2735)
-
Bram Moolenaar authored
Problem: Mkdir with 'p' flag fails on existing directory, which is different from the mkdir shell command. Solution: Don't fail if the directory already exists. (James McCoy, closes #2775)
-
- Apr 13, 2018
-
-
Bram Moolenaar authored
Problem: When 'wfh' is set ":bel 10new" scrolls window. (Andrew Pyatkov) Solution: Set the fraction before changing the window height. (closes #2798)
-
Bram Moolenaar authored
Problem: Cannot sent CTRL-\ to a terminal window. Solution: Make CTRL-W CTRL-\ send CTRL-\ to a terminal window.
-
Bram Moolenaar authored
Problem: When making a vertical split the mode message isn't always updated, "VISUAL" remains. (Alexei Averchenko) Solution: Only reset clear_cmdline when filling all columns of the last screen line. (Tom M. closes #2611)
-
- Apr 12, 2018
-
-
Bram Moolenaar authored
Problem: 'backupskip' default doesn't work for Mac. Solution: Use "/private/tmp". (Rainer Müller, closes #2793)
-
Bram Moolenaar authored
Problem: In the tutor 'showcmd' is not set. Solution: Set 'showcmd' in the vimtutor script. (Ken Takata, closes #2792)
-
Bram Moolenaar authored
Problem: Leaking memory when autocommands make a quickfix list invalid. Solution: Call FreeWild(). (Yegappan Lakshmanan)
-
Bram Moolenaar authored
Problem: Can disable COLOR_EMOJI with MSVC but not MinGW. Solution: Add COLOR_EMOJI flag. Also add some empty lines for readability.
-