- Mar 19, 2013
-
-
Bram Moolenaar authored
-
- Mar 16, 2013
-
-
Bram Moolenaar authored
Problem: Mouse position may be wrong. Solution: Let vungetc() restore the mouse position.
-
Bram Moolenaar authored
Problem: Can't build without the mouse feature. Solution: Add an #ifdef. (Ike Devolder)
-
Bram Moolenaar authored
Problem: Problem with 'ambiwidth' detection for ANSI terminal. Solution: Work around not recognizing a term response. (Hayaki Saito)
-
Bram Moolenaar authored
Problem: Dragging the status line can be slow. Solution: Look ahead and drop the drag event if there is a next one.
-
- Mar 13, 2013
-
-
Bram Moolenaar authored
Problem: ":setlocal number" clears global value of 'relativenumber'. Solution: Do it properly. (Markus Heidelberg)
-
Bram Moolenaar authored
Problem: When using --remote-expr try/catch does not work. (Andrey Radev) Solution: Set emsg_silent instead of emsg_off.
-
Bram Moolenaar authored
Problem: 'ambiwidth' must be set by the user. Solution: Detects East Asian ambiguous width (UAX #11) state of the terminal at the start-up time and 'ambiwidth' accordingly. (Hayaki Saito)
-
Bram Moolenaar authored
Problem: "gv" selects the wrong area after some operators. Solution: Save and restore the type of selection. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: The QuitPre autocommand event does not trigger for :qa and :wq. Solution: Trigger the event. (Tatsuro Fujii)
-
Bram Moolenaar authored
Problem: When calling system() multi-byte clipboard contents is garbled. Solution: Save and restore the clipboard contents. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Compiler warnings. Solution: Add type casts. (Mike Williams)
-
- Mar 07, 2013
-
-
Bram Moolenaar authored
Problem: After using backspace in insert mode completion, CTRL-N and CTRL-P do not highlight the right entry. (Olivier Teuliere) Solution: Set the current item to the shown item after using backspace.
-
Bram Moolenaar authored
Problem: Using "ra" in multiple lines on multi-byte characters leaves a few characters not replaced. Solution: Adjust the end column only in the last line. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: system() breaks clipboard text. (Yukihiro Nakadaira) Solution: Use Xutf8TextPropertyToTextList(). (Christian Brabandt) Also do not put the text in the clip buffer if conversion fails.
-
Bram Moolenaar authored
Problem: Using an empty pattern with :sort silently continues when there is no previous search pattern. Solution: Give an error message.
-
Bram Moolenaar authored
Problem: ":vimgrep //" matches everywhere. Solution: Make it use the previous search pattern. (David Bürgin)
-
Bram Moolenaar authored
Problem: ":g//" gives "Pattern not found error" with E486. Should not use the error number, it's not a regular error message. Solution: Use a normal message. (David Bürgin)
-
Bram Moolenaar authored
Problem: Can't build with Ruby 2.0 when using MinGW x64 or MSVC10. Solution: Fix it. Also detect RUBY_PLATFORM and RUBY_INSTALL_NAME for x64. (Ken Takata)
-
Bram Moolenaar authored
Problem: Test 55 fails when messages are translated. Solution: Set language to C. (Ken Takata)
-
Bram Moolenaar authored
Problem: Missing proto files. Solution: Add the files.
-
Bram Moolenaar authored
Problem: Enum indenting is not tested. Solution: Add tests. (Hong Xu)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Enum is not indented correctly with "public" etc. Solution: Skip "public", "private" and "protected". (Hong Xu)
-
- Feb 26, 2013
-
-
Bram Moolenaar authored
Problem: Missing test file changes. Solution: Change the tests.
-
Bram Moolenaar authored
Problem: Compiler warning for signed/unsigned pointer. Solution: Add type cast. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When a "cond ? one : two" expression has a subscript it is not parsed correctly. (Andy Wokula) Solution: Handle a subscript also when the type is unknown. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: "\@<!" in regexp does not work correctly with multi-byte characters, especially cp932. Solution: Move column to start of multi-byte character. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Some files missing in the list of distributed files. Solution: Add lines for new files.
-
Bram Moolenaar authored
Problem: Insufficient testing for mksession. Solution: Add tests. (mostly by Roland Eggner)
-
Bram Moolenaar authored
Problem: Empty lines in :version output when 'columns' is 320. Solution: Simplify the logic of making columns. (Nazri Ramliy, Roland Eggner)
-
Bram Moolenaar authored
Problem: Clipboard does not work on Win32 when compiled with Cygwin. Solution: Move the Win32 clipboard code to a separate file and use it when building with os_unix.c. (Frodak Baksik, Ken Takata)
-
Bram Moolenaar authored
Problem: "xxd -i" fails on an empty file. Solution: Do output the closing } for an empty file. (partly by Lawrence Woodman)
-
Bram Moolenaar authored
Problem: Ruby 2.0 has a few API changes. Solution: Add handling of Ruby 2.0. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: In the terminal the scroll wheel always scrolls the active window. Solution: Scroll the window under the mouse pointer, like in the GUI. (Bradie Rao)
-
Bram Moolenaar authored
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
-
- Feb 20, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Clumsy to handle the situation that a variable does not exist. Solution: Add default value to getbufvar() et al. (Shougo Matsushita, Hirohito Higashi)
-
Bram Moolenaar authored
Problem: :mksession confuses bytes, columns and characters when positioning the cursor. Solution: Use w_virtcol with "|" instead of w_cursor.col with "l".
-
Bram Moolenaar authored
Problem: When compiled with the +rightleft feature 'showmatch' also shows a match for the opening paren. When 'revins' is set the screen may scroll. Solution: Only check the opening paren when the +rightleft feature was enabled. Do not show a match that is not visible. (partly by Christian Brabandt)
-