0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

3342 Commits

Author SHA1 Message Date
Bram Moolenaar
5f8949656a updated for version 7.3.224
Problem:    Can't pass dict to sort function.
Solution:   Add the optional {dict} argument to sort(). (ZyX)
v7.3.224
2011-06-19 02:55:37 +02:00
Bram Moolenaar
c16756d829 updated for version 7.3.223
Problem:    MingW cross compilation doesn't work with tiny features.
Solution:   Move acp_to_enc(), enc_to_utf16() and utf16_to_enc() outside of
            "#ifdef CLIPBOARD".  Fix typo in makefile.
v7.3.223
2011-06-19 01:30:07 +02:00
Bram Moolenaar
26f3c637fc updated for version 7.3.222
Problem:    Warning for building GvimExt.
Solution:   Comment-out the DESCRIPTION line. (Mike Williams)
v7.3.222
2011-06-19 01:27:34 +02:00
Bram Moolenaar
d44347f1e7 updated for version 7.3.221
Problem:    Text from the clipboard is sometimes handled as linewise, but not
            consistently.
Solution:   Assume the text is linewise when it ends in a CR or NL.
v7.3.221
2011-06-19 01:14:29 +02:00
Bram Moolenaar
19e6094378 updated for version 7.3.220
Problem:    Python 3: vim.error is a 'str' instead of an 'Exception' object,
            so 'except' or 'raise' it causes a 'SystemError' exception.
            Buffer objects do not support slice assignment.
            When exchanging text between Vim and Python, multibyte texts become
            gabage or cause Unicode Expceptions, etc.
            'py3file' tries to read in the file as Unicode, sometimes causes
            UnicodeDecodeException
Solution:   Fix the problems. (lilydjwg)
v7.3.220
2011-06-19 00:27:51 +02:00
Bram Moolenaar
f85dae3c34 Add files added by recent patches. 2011-06-13 21:21:22 +02:00
Bram Moolenaar
9a4d7fd214 updated for version 7.3.219
Problem:    Can't compile with GTK on Mac.
Solution:   Add some #ifdef trickery. (Ben Schmidt)
v7.3.219
2011-06-13 02:04:00 +02:00
Bram Moolenaar
015de43f70 updated for version 7.3.218
Problem:    Tiny configuration problem with Python 3.
Solution:   Add abiflags in one more place. (Andreas Behr)
v7.3.218
2011-06-13 01:32:46 +02:00
Bram Moolenaar
12bde494a5 updated for version 7.3.217
Problem:    Inside an "if" a ":wincmd" causes problems.
Solution:   When skipping commands let ":wincmd" skip over its argument.
v7.3.217
2011-06-13 01:19:56 +02:00
Bram Moolenaar
986a0039cb updated for version 7.3.216
Problem:    When recovering a file a range of lines is missing. (Charles Jie)
Solution:   Reset the index when advancing to the next pointer block.  Add a
            test to verify recovery works.
v7.3.216
2011-06-13 01:07:27 +02:00
Bram Moolenaar
f7befa9f1d updated for version 7.3.215
Problem:    Wrong file names in previous patch. (Toothpik)
Solution:   Include the option changes.
v7.3.215
2011-06-12 22:13:40 +02:00
Bram Moolenaar
d9758e37ee updated for version 7.3.214
Problem:    The text displayed by ":z-" isn't exactly like old Vi.
Solution:   Add one to the start line number. (ChangZhuo Chen)
v7.3.214
2011-06-12 22:03:23 +02:00
Bram Moolenaar
6ec154b57d updated for version 7.3.213
Problem:    Javascript object literal is not indented correctly.
Solution:   Make a special case for when "J1" is in 'cino'. (Luc Deschenaux)
v7.3.213
2011-06-12 21:51:08 +02:00
Bram Moolenaar
456f2bb24f updated for version 7.3.212
Problem:    With Python 3.2 ":py3" fails.
Solution:   Move PyEval_InitThreads() to after Py_Initialize(). (Roland
            Puntaier)  Check abiflags in configure. (Andreas Behr)
v7.3.212
2011-06-12 21:37:13 +02:00
Bram Moolenaar
03227eeb79 updated for version 7.3.211
Problem:    Compiler warning.
Solution:   Add type cast.
v7.3.211
2011-06-12 21:25:00 +02:00
Bram Moolenaar
2f982e4fab updated for version 7.3.210
Problem:    Can't always find the file when using cscope.
Solution:   Add the 'cscoperelative' option. (Raghavendra D Prabhu)
v7.3.210
2011-06-12 20:42:22 +02:00
Bram Moolenaar
536d95f617 updated for version 7.3.209
Problem:    MSVC Install instructions point to wrong batch file.
Solution:   Add a batch file for use with MSVC 10.
v7.3.209
2011-06-12 20:36:09 +02:00
Bram Moolenaar
d8644bd646 updated for version 7.3.208
Problem:    Early terminated if statement.
Solution:   Remove the semicolon. (Lech Lorens)
v7.3.208
2011-06-12 20:33:38 +02:00
Bram Moolenaar
3ed16dc6b7 updated for version 7.3.207
Problem:    Can't compile with MSVC with pentium4 and 64 bit.
Solution:   Only use SSE2 for 32 bit. (Mike Williams)
v7.3.207
2011-06-12 20:31:31 +02:00
Bram Moolenaar
7154b326d0 updated for version 7.3.206
Problem:    64bit MS-Windows compiler warning.
Solution:   Use HandleToLong() instead of type cast. (Mike Williams)
v7.3.206
2011-05-25 21:18:06 +02:00
Bram Moolenaar
6fa46363ad updated for version 7.3.205
Problem:    Syntax "extend" doesn't work correctly.
Solution:   Avoid calling check_state_ends() recursively (Ben Schmidt)
v7.3.205
2011-05-25 17:56:27 +02:00
Bram Moolenaar
9b83c2f979 updated for version 7.3.204
Problem:    Compiler warning.
Solution:   Add type cast. (Mike Williams)
v7.3.204
2011-05-25 17:29:44 +02:00
Bram Moolenaar
bd8608d979 updated for version 7.3.203
Problem:    MS-Windows: Can't run an external command without a console window.
Solution:   Support ":!start /b cmd". (Xaizek)
v7.3.203
2011-05-25 17:06:22 +02:00
Bram Moolenaar
ed38b0ac41 updated for version 7.3.202
Problem:    Cannot influence the indent inside a namespace.
Solution:   Add the "N" 'cino' parameter. (Konstantin Lepa)
v7.3.202
2011-05-25 15:16:18 +02:00
Bram Moolenaar
334adf0ae5 updated for version 7.3.201
Problem:    "} else" still causes following lines to be indented too much.
Solution:   Better detection for the "else" block. (Lech Lorens)
v7.3.201
2011-05-25 13:34:04 +02:00
Bram Moolenaar
a660dc8f30 updated for version 7.3.200
Problem:    CTRL-D doesn't complete :lang.
Solution:   Add the missing part of the change. (Dominique Pelle)
v7.3.200
2011-05-25 12:51:22 +02:00
Bram Moolenaar
72952de239 updated for version 7.3.199
Problem:    MS-Windows: Compilation problem of OLE with MingW compiler.
Solution:   Put #ifdef around declarations. (Guopeng Wen)
v7.3.199
2011-05-25 12:09:50 +02:00
Bram Moolenaar
9b486ca391 updated for version 7.3.198
Problem:    No completion for ":lang".
Solution:   Get locales to complete from. (Dominique Pelle)
v7.3.198
2011-05-19 18:26:40 +02:00
Bram Moolenaar
efa8e80c0b updated for version 7.3.197
Problem:    When a QuickfixCmdPost event removes all errors, Vim still tries
            to jump to the first error, resulting in E42.
Solution:   Get the number of error after the autocmd event. (Mike Lundy)
v7.3.197
2011-05-19 17:42:59 +02:00
Bram Moolenaar
e659c95b01 updated for version 7.3.196
Problem:    Can't intercept a character that is going to be inserted.
Solution:   Add the InsertCharPre autocommand event. (Jakson A. Aquino)
v7.3.196
2011-05-19 17:25:41 +02:00
Bram Moolenaar
496f9517cb updated for version 7.3.195
Problem:    "} else" causes following lines to be indented too much. (Rouben
            Rostamian)
Solution:   Better detection for the "else". (Lech Lorens)
v7.3.195
2011-05-19 16:35:09 +02:00
Bram Moolenaar
1385c3ee7f updated for version 7.3.194
Problem:    When "b" is a symlink to directory "a", resolve("b/") doesn't
            result in "a/".  (ZyX)
Solution:   Remove the trailing slash. (Jean-Rene David)
v7.3.194
2011-05-19 14:59:10 +02:00
Bram Moolenaar
9bd1a7ea28 updated for version 7.3.193
Problem:    In the command line window ":close" doesn't work properly. (Tony
            Mechelynck)
Solution:   Use Ctrl_C instead of K_IGNORE for cmdwin_result. (Jean-Rene
            David)
v7.3.193
2011-05-19 14:50:54 +02:00
Bram Moolenaar
0df1102698 updated for version 7.3.192
Problem:    Ex command ":s/ \?/ /g" splits multi-byte characters into bytes.
            (Dominique Pelle)
Solution:   Advance over whole character instead of one byte.
v7.3.192
2011-05-19 14:30:16 +02:00
Bram Moolenaar
2d5204ff88 Updated message translations. 2011-05-19 13:44:07 +02:00
Bram Moolenaar
b07269a548 updated for version 7.3.191
Problem:    Still some RISC OS stuff to remove.
Solution:   Remove files and lines. (Hong Xu)
            Remove the 'osfiletype' option code.
v7.3.191
2011-05-19 13:41:14 +02:00
Bram Moolenaar
20f90cf99a Updated runtime files. 2011-05-19 12:22:51 +02:00
Bram Moolenaar
3a7d8c3adb updated for version 7.3.190
Problem:    When there is a "containedin" syntax argument highlighting may be
            wrong. (Radek)
Solution:   Reset current_next_list. (Ben Schmidt)
v7.3.190
2011-05-19 12:14:10 +02:00
Bram Moolenaar
e2bdce3f5c updated for version 7.3.189
Problem:    Can't build without +clipboard feature. (Christian Ebert)
Solution:   Add the missing #ifdef.
v7.3.189
2011-05-10 17:29:33 +02:00
Bram Moolenaar
1bfb61e80b updated for version 7.3.188
Problem:    More RISC OS files to remove.
Solution:   Remove them.  Update the file list.
v7.3.188
2011-05-10 17:21:56 +02:00
Bram Moolenaar
446beb48d9 Updated runtime files. 2011-05-10 17:18:44 +02:00
Bram Moolenaar
1c2b2c12bb Remove the deleted RISC OS files. 2011-05-10 16:42:00 +02:00
Bram Moolenaar
e60acc180b updated for version 7.3.187
Problem:    The RISC OS port has obvious errors and is not being maintained.
Solution:   Remove the RISC OS files and code.
v7.3.187
2011-05-10 16:41:25 +02:00
Bram Moolenaar
536681be5d updated for version 7.3.186
Problem:    When 'clipboard' contains "unnamed" or "unnamedplus" the value of
            v:register is wrong for operators without a specific register.
Solution:   Adjust the register according to 'clipboard'. (Ingo Karkat)
v7.3.186
2011-05-10 16:12:45 +02:00
Bram Moolenaar
bb99322ef9 updated for version 7.3.185
Problem:    ":windo g/pattern/q" closes windows and reports "N more lines".
            (Tim Chase)
Solution:   Remember what buffer ":global" started in. (Jean-Rene David)
v7.3.185
2011-05-10 16:00:47 +02:00
Bram Moolenaar
18e0bfb07c updated for version 7.3.184
Problem:    Static code analysis errors in riscOS.
Solution:   Make buffer size bigger. (Dominique Pelle)
v7.3.184
2011-05-10 15:52:15 +02:00
Bram Moolenaar
5897e0c470 updated for version 7.3.183
Problem:    When Exuberant ctags binary is exuberant-ctags it's not found.
Solution:   Add configure check for exuberant-ctags.
v7.3.183
2011-05-10 15:42:03 +02:00
Bram Moolenaar
05da428462 updated for version 7.3.182
Problem:    Compiler warning for uninitialized variable.
Solution:   Add dummy initializer.
v7.3.182
2011-05-10 14:44:11 +02:00
Bram Moolenaar
9c520cb544 updated for version 7.3.181
Problem:    When repeating the insert of CTRL-V or a digraph the display may
            not be updated correctly.
Solution:   Only call edit_unputchar() after edit_putchar(). (Lech Lorens)
v7.3.181
2011-05-10 14:22:16 +02:00
Bram Moolenaar
a4271d598b updated for version 7.3.180
Problem:    When both a middle part of 'comments' matches and an end part, the
            middle part was used errornously.
Solution:   After finding the middle part match continue looking for a better
            end part match. (partly by Lech Lorens)
v7.3.180
2011-05-10 13:38:27 +02:00