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)
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)
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)
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.
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.
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.
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)
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)
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)
2011-06-12 21:37:13 +02:00
Bram Moolenaar
03227eeb79
updated for version 7.3.211
...
Problem: Compiler warning.
Solution: Add type cast.
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)
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.
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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)
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.
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.
2011-05-19 13:41:14 +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)
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.
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.
2011-05-10 17:21:56 +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.
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)
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)
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)
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.
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.
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)
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)
2011-05-10 13:38:27 +02:00
Bram Moolenaar
aede6ceba3
updated for version 7.3.179
...
Problem: C-indent doesn't handle colon in string correctly.
Solution: Skip the string. (Lech Lorens)
2011-05-10 11:56:30 +02:00
Bram Moolenaar
4ae06c1fa5
updated for version 7.3.178
...
Problem: C-indent doesn't handle code right after { correctly.
Solution: Fix detecting unterminated line. (Lech Lorens)
2011-05-10 11:39:19 +02:00
Bram Moolenaar
3c9c99cb2c
updated for version 7.3.177
...
Problem: MS-Windows: mkdir() doesn't work properly when 'encoding' is
"utf-8".
Solution: Convert to utf-16. (Yukihiro Nakadaira)
2011-05-05 18:31:59 +02:00
Bram Moolenaar
948733a874
updated for version 7.3.176
...
Problem: Ruby linking doesn't work properly on Mac OS X.
Solution: Fix the configure check for Ruby. (Bjorn Winckler)
2011-05-05 18:10:16 +02:00
Bram Moolenaar
1701e4069b
updated for version 7.3.175
...
Problem: When 'colorcolumn' is set locally to a window, ":new" opens a
window with the same highlighting but 'colorcolumn' is empty.
(Tyru)
Solution: Call check_colorcolumn() after clearing and copying options.
(Christian Brabandt)
2011-05-05 17:32:44 +02:00
Bram Moolenaar
8f4ba6942d
updated for version 7.3.174
...
Problem: When Exuberant ctags binary is exctags it's not found.
Solution: Add configure check for exctags. (Hong Xu)
2011-05-05 17:24:27 +02:00