summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2011-08-17updated for version 7.3.282v7.3.282Bram Moolenaar
Problem: When using input() and :echo in a loop the displayed text is incorrect. (Benjamin Fritz) Solution: Only restore the cursor position when there is a command line. (Ben Schmidt)
2011-08-17updated for version 7.3.281v7.3.281Bram Moolenaar
Problem: After using "expand('%:8')" the buffer name is changed. Solution: Make a copy of the file name before shortening it.
2011-08-10updated for version 7.3.280v7.3.280Bram Moolenaar
Problem: ":lmake" does not update the quickfix window title. Solution: Update the title. (Lech Lorens)
2011-08-10updated for version 7.3.279v7.3.279Bram Moolenaar
Problem: With GTK, when gvim is full-screen and a tab is opened and using a specific monitor configuration the window is too big. Solution: Adjust the window size like on MS-Windows. (Yukihiro Nakadaira)
2011-08-10updated for version 7.3.278v7.3.278Bram Moolenaar
Problem: Passing the file name to open in VisVim doesn't work. Solution: Adjust the index and check for end of buffer. (Jiri Sedlak)
2011-08-10updated for version 7.3.277v7.3.277Bram Moolenaar
Problem: MS-Windows: some characters do not show in dialogs. Solution: Use the wide methods when available. (Yanwei Jia)
2011-08-10updated for version 7.3.276v7.3.276Bram Moolenaar
Problem: GvimExt sets $LANG in the wrong way. Solution: Save the environment and use it for gvim. (Yasuhiro Matsumoto)
2011-08-10updated for version 7.3.275v7.3.275Bram Moolenaar
Problem: MS-Windows: When using a black background some screen updates cause the window to flicker. Solution: Add WS_CLIPCHILDREN to CreateWindow(). (René Aguirre)
2011-08-10updated for version 7.3.274v7.3.274Bram Moolenaar
Problem: With concealed characters tabs do not have the right size. Solution: Use VCOL_HLC instead of vcol. (Eiichi Sato)
2011-08-10updated for version 7.3.273v7.3.273Bram Moolenaar
Problem: A BOM in an error file is seen as text. (Aleksey Baibarin) Solution: Remove the BOM from the text before evaluating. (idea by Christian Brabandt)
2011-08-10updated for version 7.3.272v7.3.272Bram Moolenaar
Problem: ":put =list" does not add an empty line for a trailing empty item. Solution: Add a trailing NL when turning a list into a string.
2011-08-10updated for version 7.3.271v7.3.271Bram Moolenaar
Problem: Code not following Vim coding style. Solution: Fix the style. (Elias Diem)
2011-08-10updated for version 7.3.270v7.3.270Bram Moolenaar
Problem: Illegal memory access. Solution: Swap conditions. (Dominique Pelle)
2011-08-04updated for version 7.3.269v7.3.269Bram Moolenaar
Problem: 'shellcmdflag' only works with one flag. Solution: Split into multiple arguments. (Gary Johnson)
2011-08-04updated for version 7.3.268v7.3.268Bram Moolenaar
Problem: Vim freezes when executing an external command with zsh. Solution: Use O_NOCTTY both in the master and slave. (Bjorn Winckler)
2011-08-04updated for version 7.3.267v7.3.267Bram Moolenaar
Problem: Ruby on Mac OS X 10.7 may crash. Solution: Avoid alloc(0). (Bjorn Winckler)
2011-07-27updated for version 7.3.266v7.3.266Bram Moolenaar
Problem: In Gvim with iBus typing space in Insert mode doesn't work. Solution: Clear xim_expected_char after checking it.
2011-07-27updated for version 7.3.265v7.3.265Bram Moolenaar
Problem: When storing a pattern in search history there is no proper check for the separator character. Solution: Pass the separator character to in_history(). (Muraoka Taro)
2011-07-27updated for version 7.3.264v7.3.264Bram Moolenaar
Problem: When the current directory name contains wildcard characters, such as "foo[with]bar", the tags file can't be found. (Jeremy Erickson) Solution: When searching for matching files also match without expanding wildcards. This is a bit of a hack.
2011-07-27updated for version 7.3.263v7.3.263Bram Moolenaar
Problem: Perl and Tcl have a few code style problems. Solution: Clean it up. (Elias Diem)
2011-07-27updated for version 7.3.262v7.3.262Bram Moolenaar
Problem: Photon code style doesn't match Vim style. Solution: Clean up some of it. (Elias Diem)
2011-07-27updated for version 7.3.261v7.3.261Bram Moolenaar
Problem: G++ error message errornously recognized as error. Solution: Ignore "In file included from" line also when it ends in a colon. (Fernando Castillo)
2011-07-20updated for version 7.3.260v7.3.260Bram Moolenaar
Problem: CursorHold triggers on an incomplete mapping. (Will Gray) Solution: Don't trigger CursorHold when there is typeahead.
2011-07-20updated for version 7.3.259v7.3.259Bram Moolenaar
Problem: Equivalence classes only work for latin characters. Solution: Add the Unicode equivalence characters. (Dominique Pelle)
2011-07-20updated for version 7.3.258v7.3.258Bram Moolenaar
Problem: MS-Windows: The edit with existing vim context menu entries can be unwanted. Solution: Let a registry entry disable them. (Jerome Vuarand)
2011-07-20updated for version 7.3.257v7.3.257Bram Moolenaar
Problem: Not all completions are available to user commands. Solution: Add "color", "compiler", "file_in_path" and "locale". (Dominique Pelle)
2011-07-20updated for version 7.3.256v7.3.256Bram Moolenaar
Problem: Javascript indenting not sufficiently tested. Solution: Add more tests. (Luc Deschenaux) Mark the lines that are indented wrong.
2011-07-20updated for version 7.3.255v7.3.255Bram Moolenaar
Problem: When editing a file such as "File[2010-08-15].vim" an E16 error is given. (Manuel Stol) Solution: Don't give an error for failing to compile the regexp.
2011-07-18Updated runtime files.Bram Moolenaar
Add missing test82 files.
2011-07-15updated for version 7.3.254v7.3.254Bram Moolenaar
Problem: The coladd field is not reset when setting the line number for a ":call" command. Solution: Reset it.
2011-07-15updated for version 7.3.253v7.3.253Bram Moolenaar
Problem: "echo 'abc' > ''" returns 0 or 1, depending on 'ignorecase'. Checks in mb_strnicmp() for illegal and truncated bytes are wrong. Should not assume that byte length is equal before case folding. Solution: Add utf_safe_read_char_adv() and utf_strnicmp(). Add a test for this. (Ivan Krasilnikov)
2011-07-15updated for version 7.3.252v7.3.252Bram Moolenaar
Problem: Tests fail. (David Northfield) Solution: Add missing update for .ok file.
2011-07-15updated for version 7.3.251v7.3.251Bram Moolenaar
Problem: "gH<Del>" deletes the current line, except when it's the last line. Solution: Set the "include" flag to indicate the last line is to be deleted.
2011-07-15updated for version 7.3.250v7.3.250Bram Moolenaar
Problem: Python: Errors in Unicode characters not handled nicely. Solution: Add the surrogateescape error handler. (lilydjwg)
2011-07-15updated for version 7.3.249v7.3.249Bram Moolenaar
Problem: Wrong indenting for array initializer. Solution: Detect '}' in a better way. (Lech Lorens)
2011-07-15updated for version 7.3.248v7.3.248Bram Moolenaar
Problem: PC Install instructions missing install instructions. Solution: Step-by-step explanation. (Michael Soyka)
2011-07-15updated for version 7.3.247v7.3.247Bram Moolenaar
Problem: Running tests changes the users viminfo file. Test for patch 7.3.245 missing. Solution: Add "nviminfo" to the 'viminfo' option. Include the test.
2011-07-15updated for version 7.3.246v7.3.246Bram Moolenaar
Problem: Repeating "f4" in "4444" skips one 4. Solution: Check the t_cmd flag. (Christian Brabandt)
2011-07-15updated for version 7.3.245v7.3.245Bram Moolenaar
Problem: Python 3.2 libraries not correctly detected. Solution: Add the suffix to the library name. (Niclas Zeising)
2011-07-07updated for version 7.3.244v7.3.244Bram Moolenaar
Problem: MS-Windows: Build problem with old compiler. (John Beckett) Solution: Only use HandleToLong() when available. (Mike Williams)
2011-07-07updated for version 7.3.243v7.3.243Bram Moolenaar
Problem: Illegal memory access in readline(). Solution: Swap the conditions. (Dominique Pelle)
2011-07-07updated for version 7.3.242v7.3.242Bram Moolenaar
Problem: Illegal memory access in after_pathsep(). Solution: Check that the pointer is not at the start of the file name. (Dominique Pelle)
2011-07-07updated for version 7.3.241v7.3.241Bram Moolenaar
Problem: Using CTRL-R CTRL-W on the command line may insert only part of the word. Solution: Use the cursor position instead of assuming it is at the end of the command. (Tyru)
2011-07-07updated for version 7.3.240v7.3.240Bram Moolenaar
Problem: External commands can't use pipes on MS-Windows. Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent Berthoux)
2011-07-07updated for version 7.3.239v7.3.239Bram Moolenaar
Problem: Python corrects the cursor column without taking 'virtualedit' into account. (lilydjwg) Solution: Call check_cursor_col_win().
2011-07-07updated for version 7.3.238v7.3.238Bram Moolenaar
Problem: Compiler warning for conversion. Solution: Add type cast. (Mike Williams)
2011-06-26updated for version 7.3.237v7.3.237Bram Moolenaar
Problem: "filetype" completion doesn't work on Windows. (Yue Wu) Solution: Don't use a glob pattern for the directories, use a list of directories. (Dominique Pelle)
2011-06-26updated for version 7.3.236v7.3.236Bram Moolenaar
Problem: Python 3 doesn't compile without +multi_byte Solution: Use "latin1" when MULTI_BYTE is not defined. (lilydjwg)
2011-06-26updated for version 7.3.235v7.3.235Bram Moolenaar
Problem: ";" gets stuck on a "t" command, it's not useful. Solution: Add the ';' flag in 'cpo'. (Christian Brabandt)
2011-06-26updated for version 7.3.234v7.3.234Bram Moolenaar
Problem: With GTK menu may be popping down. Solution: Use event time instead of GDK_CURRENT_TIME. (Hong Xu)