summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.1300v7.3.1300v7-3-1300Bram Moolenaar2013-07-034-0/+16
| | | | | | Problem: Mac: tiny and small build fails. Solution: Don't include os_macosx.m in tiny build. Include mouse support in small build. (Kazunobu Kuriyama)
* Added tag v7-3-1299 for changeset f063be86b632Bram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1299v7.3.1299v7-3-1299Bram Moolenaar2013-07-0310-25/+34
| | | | | | Problem: Errors when doing "make proto". Didn't do "make depend" for a while. Solution: Add #ifdefs. Update dependencies. Update proto files.
* Added tag v7-3-1298 for changeset dafd77a15d44Bram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1298v7.3.1298v7-3-1298Bram Moolenaar2013-07-032-3/+5
| | | | | Problem: Crash. Solution: Use STRCPY() instead of STRCAT() and allocate one more byte.
* Added tag v7-3-1297 for changeset cb0a5c9c0f9bBram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1297v7.3.1297v7-3-1297Bram Moolenaar2013-07-034-5/+75
| | | | | | Problem: findfile() directory matching does not work when a star follows text. (Markus Braun) Solution: Make a wildcard work properly. (Christian Brabandt)
* Added tag v7-3-1296 for changeset c3a82208e143Bram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1296v7.3.1296v7-3-1296Bram Moolenaar2013-07-032-7/+3
| | | | | | Problem: Only MS-Windows limits the GUI window size to what fits on the monitor. Solution: Limit the size for all systems. (Daniel Harding)
* Added tag v7-3-1295 for changeset 93cccad6a26bBram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1295v7.3.1295v7-3-1295Bram Moolenaar2013-07-0311-12/+89
| | | | | | Problem: glob() and globpath() do not handle escaped special characters properly. Solution: Handle escaped characters differently. (Adnan Zafar)
* Added tag v7-3-1294 for changeset 11d0c6df1d7bBram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1294v7.3.1294v7-3-1294Bram Moolenaar2013-07-034-7/+80
| | | | | Problem: ":diffoff" resets options. Solution: Save and restore option values. (Christian Brabandt)
* Added tag v7-3-1293 for changeset 18b43970fb7aBram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1293v7.3.1293v7-3-1293Bram Moolenaar2013-07-032-1/+3
| | | | | Problem: Put in empty buffer cannot be undone. Solution: Save one more line for undo. (Ozaki)
* Added tag v7-3-1292 for changeset cad8d29b0bc0Bram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1292v7.3.1292v7-3-1292Bram Moolenaar2013-07-032-1/+4
| | | | | Problem: Possibly using invalid pointer when searcing for window. (Raichoo) Solution: Use "firstwin" instead of "tp_firstwin" for current tab.
* Added tag v7-3-1291 for changeset a6ddcab6a240Bram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1291v7.3.1291v7-3-1291Bram Moolenaar2013-07-032-4/+6
| | | | | Problem: Compiler warnings for uninitialized variables. (Tony Mechelynck) Solution: Initialize the variables.
* Added tag v7-3-1290 for changeset 08d4c11cdaedBram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1290v7.3.1290v7-3-1290Bram Moolenaar2013-07-032-1/+2
| | | | | | Problem: CTRL-R = in Insert mode changes the start of the insert position. (Ingo Karkat) Solution: Only break undo, don't start a new insert.
* Added tag v7-3-1289 for changeset 1ed945570d47Bram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1289v7.3.1289v7-3-1289Bram Moolenaar2013-07-032-0/+15
| | | | | | Problem: Get GLIB warning when removing a menu item. Solution: Reference menu-id and also call gtk_container_remove(). (Ivan Krasilnikov)
* Added tag v7-3-1288 for changeset 8b7baf39a345Bram Moolenaar2013-07-030-0/+0
|
* updated for version 7.3.1288v7.3.1288v7-3-1288Bram Moolenaar2013-07-034-9/+246
| | | | | | | | | | Problem: The first ":echo 'hello'" command output doesn't show. Mapping for <S-F3> gets triggered during startup. Solution: Add debugging code for the termresponse. When receiving the "Co" entry and when setting 'ambiwidth' redraw right away if possible. Add redraw_asap(). Don't set 'ambiwidth' if it already had the right value. Do the 'ambiwidth' check in the second row to avoid confusion with <S-F3>.
* Added tag v7-3-1287 for changeset 34c629c3b4baBram Moolenaar2013-07-010-0/+0
|
* updated for version 7.3.1287v7.3.1287v7-3-1287Bram Moolenaar2013-07-015-18/+69
| | | | | | Problem: Python SystemExit exception is not handled properly. Solution: Catch the exception and give an error. (Yasuhiro Matsumoto, Ken Takata)
* Added tag v7-3-1286 for changeset 6ddc1785c4ffBram Moolenaar2013-07-010-0/+0
|
* updated for version 7.3.1286v7.3.1286v7-3-1286Bram Moolenaar2013-07-012-0/+3
| | | | | Problem: Check for screen size missing for Athena and Motif. Solution: Add call to limit_screen_size().
* Added tag v7-3-1285 for changeset 14e7a115d54dBram Moolenaar2013-07-010-0/+0
|
* updated for version 7.3.1285v7.3.1285v7-3-1285Bram Moolenaar2013-07-0110-7/+161
| | | | | | Problem: No tests for picking a window when selecting an entry in a location list. Not picking the right window sometimes. Solution: Add test 96. Set usable_win appropriately. (Lech Lorens)
* Added tag v7-3-1284 for changeset 7b20dc804164Bram Moolenaar2013-07-010-0/+0
|
* updated for version 7.3.1284v7.3.1284v7-3-1284Bram Moolenaar2013-07-012-5/+9
| | | | | Problem: Compiler warnings in MS-Windows clipboard handling. Solution: Add type casts. (Ken Takata)
* Added tag v7-3-1283 for changeset d6ceddc0be86Bram Moolenaar2013-07-010-0/+0
|
* updated for version 7.3.1283v7.3.1283v7-3-1283Bram Moolenaar2013-07-013-13/+21
| | | | | Problem: Test 71 fails on MS-Windows. Solution: Put the binary data in a separate file. (Ken Takata)
* Added tag v7-3-1282 for changeset 22ac43fb6d30Bram Moolenaar2013-07-010-0/+0
|
* updated for version 7.3.1282v7.3.1282v7-3-1282Bram Moolenaar2013-07-012-5/+6
| | | | | Problem: 'cursorline' not drawn in any other window. (Charles Campbell) Solution: Do draw the cursor line in other windows.
* Added tag v7-3-1281 for changeset 19ed30f7cef7Bram Moolenaar2013-07-010-0/+0
|
* updated for version 7.3.1281v7.3.1281v7-3-1281Bram Moolenaar2013-07-012-2/+6
| | | | | | Problem: When 'ttymouse' is set to "xterm2" clicking in column 123 moves the cursor to column 96. (Kevin Goodsell) Solution: Decode KE_CSI.
* Added tag v7-3-1280 for changeset 1cacf785299eBram Moolenaar2013-06-300-0/+0
|
* updated for version 7.3.1280v7.3.1280v7-3-1280Bram Moolenaar2013-06-302-15/+37
| | | | | | Problem: Reading memory already freed since patch 7.3.1247. (Simon Ruderich, Dominique Pelle) Solution: Copy submatches before reallocating the state list.
* Added tag v7-3-1279 for changeset cca600e60928Bram Moolenaar2013-06-300-0/+0
|
* updated for version 7.3.1279v7.3.1279v7-3-1279Bram Moolenaar2013-06-302-1/+3
| | | | | Problem: Compiler warning for variable uninitialized. (Tony Mechelynck) Solution: Add an init.
* Added tag v7-3-1278 for changeset cf52d2a8c05cBram Moolenaar2013-06-300-0/+0
|
* updated for version 7.3.1278v7.3.1278v7-3-1278Bram Moolenaar2013-06-307-8/+24
| | | | | | Problem: When someone sets the screen size to a huge value with "stty" Vim runs out of memory before reducing the size. Solution: Limit Rows and Columns in more places.
* Added tag v7-3-1277 for changeset 6a7ae677d6a1Bram Moolenaar2013-06-300-0/+0
|
* updated for version 7.3.1277v7.3.1277v7-3-1277Bram Moolenaar2013-06-302-4/+14
| | | | | | | | Problem: In diff mode 'cursorline' also draws in the non-active window. When 'nu' and 'sbr' are set the 'sbr' string is not underlined. Solution: Only draw the cursor line in the current window. Combine the 'cursorline' and other highlighting attributes. (Christian Brabandt)
* Added tag v7-3-1276 for changeset d2f9f67924e7Bram Moolenaar2013-06-300-0/+0
|
* updated for version 7.3.1276v7.3.1276v7-3-1276Bram Moolenaar2013-06-302-0/+11
| | | | | | Problem: When using a cscope connection resizing the window may send SIGWINCH to cscope and it quits. Solution: Call setpgid(0, 0) in the child process. (Narendran Gopalakrishnan)
* Added tag v7-3-1275 for changeset 8875401008daBram Moolenaar2013-06-300-0/+0
|