- Apr 05, 2013
-
-
Bram Moolenaar authored
Problem: 'fileignorecase' is missing in options window and quickref. Solution: Add the option.
-
- Apr 03, 2013
-
-
Bram Moolenaar authored
Problem: Forward searching with search() is broken. Solution: Fix it and add tests. (Sung Pae)
-
Bram Moolenaar authored
Problem: #if indents are off. Solution: Insert a space where appropriate. (Taro Muraoka)
-
- Mar 21, 2013
-
-
Bram Moolenaar authored
Problem: Build problem with some combination of features. Solution: Use FEAT_XCLIPBOARD instead of FEAT_CLIPBOARD.
-
- Mar 19, 2013
-
-
Bram Moolenaar authored
Problem: Comparing file names does not handle multi-byte characters properly. Solution: Implement multi-byte handling.
-
Bram Moolenaar authored
Problem: Cannot easily use :s to make title case. Solution: Have "\L\u" result in title case. (James McCoy)
-
Bram Moolenaar authored
Problem: On some systems case of file names is always ignored, on others never. Solution: Add the 'fileignorecase' option to control this at runtime. Implies 'wildignorecase'.
-
Bram Moolenaar authored
Problem: search('^$', 'c') does not use the empty match under the cursor. Solution: Special handling of the 'c' flag. (Christian Brabandt) Add tests.
-
Bram Moolenaar authored
Problem: Compiler warnings when using MingW 4.5.3. Solution: Do not use MAKEINTRESOURCE. Adjust #if. (Ken Takata)
-
Bram Moolenaar authored
Problem: bufwinnr() matches buffers in other tabs. Solution: For bufwinnr() and ? only match buffers in the current tab. (Alexey Radkov)
-
Bram Moolenaar authored
Problem: When at the hit-return prompt and using "k" while no text has scrolled off screen, then using "j", an empty line is displayed. Solution: Only act on "k" when text scrolled off screen. Also accept page-up and page-down. (cptstubing)
-
Bram Moolenaar authored
Problem: Matchparen does not update match when using auto-indenting. (Marc Aldorasi) Solution: Add the TextChanged and TextChangedI autocommand events.
-
Bram Moolenaar authored
Problem: Not serving the X selection during system() isn't nice. Solution: When using fork() do not loose the selection, keep serving it. Add a loop similar to handling I/O. (Yukihiro Nakadaira)
-
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)
-