- Apr 12, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Filename completion with 'fileignorecase' does not work for multi-byte characters. Solution: Make 'fileignorecase' work properly. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: No tests for Visual mode operators, what 7.3.879 fixes. Solution: Add a new test file. (David Bürgin)
-
Bram Moolenaar authored
Problem: Can't build with multi-byte on Solaris 10. Solution: Add #ifdef X_HAVE_UTF8_STRING. (Laurent Blume)
-
Bram Moolenaar authored
Problem: Double free for list and dict in Lua. (Shougo Matsu) Solution: Do not unref list and dict. (Yasuhiro Matsumoto)
-
- Apr 06, 2013
-
-
Bram Moolenaar authored
Disable recognizing .rdf as a redif file.
-
Bram Moolenaar authored
Problem: Compiler warning for variable shadowing another. (John Little) Solution: Rename the variable. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Can't build with some combination of features. Solution: Adjust #ifdefs.
-
- Apr 05, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: CursorHold may trigger after receiving the termresponse. Solution: Set the did_cursorhold flag. (Hayaki Saito)
-
Bram Moolenaar authored
Problem: Python list does not work correctly. Solution: Fix it and add a test. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: When writing viminfo, old history lines may replace lines written more recently by another Vim instance. Solution: Mark history entries that were read from viminfo and overwrite them when merging with the current viminfo.
-
Bram Moolenaar authored
Problem: When using an ex command in operator pending mode, using Esc to abort the command still executes the operator. (David Bürgin) Solution: Clear the operator when the ex command fails. (Christian Brabandt)
-
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)
-