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
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
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
b453a53b59
updated for version 7.3.169
...
Problem: Freeing memory already freed, warning from static code analyzer.
Solution: Initialize pointers to NULL, correct use of "mustfree". (partly by
Dominique Pelle)
2011-04-28 17:48:44 +02:00
Bram Moolenaar
8d2d71d4bb
updated for version 7.3.164
...
Problem: C-indenting: a preprocessor statement confuses detection of a
function delcaration.
Solution: Ignore preprocessor lines. (Lech Lorens) Also recognize the style
to put a comma before the argument name.
2011-04-28 13:02:09 +02:00
Bram Moolenaar
ef9d6aa70d
updated for version 7.3.160
...
Problem: Unsafe string copying.
Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead
of strcat().
2011-04-11 16:56:35 +02:00
Bram Moolenaar
4aa97427be
updated for version 7.3.158
...
Problem: Might use uninitialized memory in C indenting.
Solution: Init arrays to empty.
2011-04-11 14:27:38 +02:00
Bram Moolenaar
367bec852e
updated for version 7.3.157
...
Problem: Superfluous assignment.
Solution: Remove assignment.
2011-04-11 14:26:19 +02:00
Bram Moolenaar
fd30cd41dc
updated for version 7.3.139
...
Problem: When 'lazyredraw' is set ":ver" output can't be read.
Solution: Don't redraw the screen when at a prompt or command line.
2011-03-22 13:07:26 +01:00
Bram Moolenaar
6eb634ef1f
updated for version 7.3.137
...
Problem: When 'lazyredraw' is set the screen may not be updated. (Ivan
Krasilnikov)
Solution: Call update_screen() before waiting for input.
2011-03-03 15:04:08 +01:00
Bram Moolenaar
164c60f5b1
updated for version 7.3.103
...
Problem: Changing 'fileformat' and then using ":w" in an empty file sets
the 'modified' option.
Solution: In unchanged() don't ignore 'ff' for an empty file.
2011-01-22 00:11:50 +01:00
Bram Moolenaar
946ffd4606
updated for version 7.3.091
...
Problem: "vim -w foo" writes special key codes for removed escape
sequences. (Josh Triplett)
Solution: Don't write K_IGNORE codes.
2010-12-30 12:30:31 +01:00
Bram Moolenaar
94950a9ee0
updated for version 7.3.072
...
Problem: Can't complete file names while ignoring case.
Solution: Add 'wildignorecase'.
2010-12-02 16:01:29 +01:00
Bram Moolenaar
da9836cfa9
updated for version 7.3.002
...
Problem: ":find" completion doesn't work when halfway an environment
variable. (Dominique Pelle)
Solution: Only use in-path completion when expanding file names. (Nazri
Ramliy)
2010-08-16 21:53:27 +02:00
Bram Moolenaar
d732f9aee0
Two fixes for :find completion and more testing. (Nazri Ramliy)
2010-08-15 13:29:11 +02:00
Bram Moolenaar
cda000e97f
Fix: strcat() on overlapping string. (Dominique Pelle)
2010-08-14 13:34:39 +02:00
Bram Moolenaar
dc685aba75
Cleanup in :find completion code. Make it work for "./subdir" in 'path'.
2010-08-13 21:16:49 +02:00
Bram Moolenaar
31710268ed
More fixes for :find completion. (mostly by Nazri Ramliy)
2010-08-13 13:36:15 +02:00
Bram Moolenaar
0be992e347
Improvements for :find completion.
2010-08-12 21:50:51 +02:00
Bram Moolenaar
9bc040c8e1
Fixes for :find completion.
2010-08-11 22:05:57 +02:00
Bram Moolenaar
2d7c47de45
Make :find completion work better with the DJGPP build. (Nazri Ramliy)
2010-08-10 19:50:26 +02:00
Bram Moolenaar
09092155a6
Remove unused code.
2010-08-08 16:38:42 +02:00
Bram Moolenaar
84f888a5b3
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
2010-08-05 21:40:16 +02:00
Bram Moolenaar
80a7dcf8b5
Make :find completion consistent between Unix and MS-Windows. Add a test.
...
(Nazri Ramliy)
2010-08-04 17:07:20 +02:00
Bram Moolenaar
006d2b036b
Fix crash when no item in 'path' is used for :find completion.
2010-08-04 12:39:44 +02:00
Bram Moolenaar
7f0f621c4c
Fix crash in :find completion. (Nazri Ramliy)
2010-08-03 22:21:00 +02:00
Bram Moolenaar
57adda1e90
Fix: With 'path' set to relative directory ":find" completion didn't work.
...
(Nazri Ramliy)
2010-08-03 22:11:29 +02:00
Bram Moolenaar
bdc975cdfe
Improvements for :find completion. (Nazri Ramliy)
2010-08-02 21:33:37 +02:00
Bram Moolenaar
1a509df322
Remove unused variable and STRLEN(). (Dominique Pelle)
2010-08-01 17:59:57 +02:00
Bram Moolenaar
30a8635b56
Fix a few compile warnings. (Mike Williams)
2010-07-29 23:10:40 +02:00
Bram Moolenaar
1587a1e37d
Add completion for ":ownsyntax" and improve completion for ":filetype".
...
(Dominique Pelle)
2010-07-29 20:59:59 +02:00
Bram Moolenaar
162bd91564
Improvements for ":find" completion. (Nazri Ramliy)
2010-07-28 22:29:10 +02:00
Bram Moolenaar
8d9b40e71a
Add support for horizontal scroll wheel. (Bjorn Winckler)
2010-07-25 15:49:07 +02:00
Bram Moolenaar
b31e4383cd
Fix memory leak in :find completion. (Dominique Pelle)
2010-07-24 16:01:56 +02:00
Bram Moolenaar
cb9d45cb84
Fix some duplicates in ":find" completion. (Nazri Ramliy)
2010-07-20 18:10:15 +02:00
Bram Moolenaar
9e193ac732
Fixed: crash with ":find " completion, using uninitialized count.
2010-07-19 23:11:27 +02:00
Bram Moolenaar
02c707a87d
Add the 'L' item to 'cinoptions'. (Manuel Konig)
2010-07-17 17:12:06 +02:00
Bram Moolenaar
624c7aa691
Avoid compiler warnings for size_t to int conversions.
2010-07-16 20:38:52 +02:00
Bram Moolenaar
b28ebbca84
Fix using freed memory in :find completion.
2010-07-14 16:59:57 +02:00
Bram Moolenaar
cc448b373d
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
2010-07-14 16:52:17 +02:00
Bram Moolenaar
a9dc375744
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
...
Toft)
2010-07-11 20:46:53 +02:00
Bram Moolenaar
3acfc30409
Improve Javascript indenting. Add "J" flag to 'cino'. (Hari Kumar G)
2010-07-11 17:23:02 +02:00
Bram Moolenaar
b0b508808f
Apply patch 7.2.445.
2010-07-07 18:26:28 +02:00
Bram Moolenaar
b26e6327e6
Add :nbstart and :nbclose.
2010-05-22 21:34:09 +02:00
Bram Moolenaar
64486671c3
Add 'relativenumber' patch from Markus Heidelberg.
2010-05-16 15:46:46 +02:00
Bram Moolenaar
fc2d5bdfc6
After recovery check if the text changed. If it did mark the buffer as
...
modified.
2010-05-15 17:06:53 +02:00
Bram Moolenaar
dfdf3c446f
updated for version 7.2.411
...
Problem: When parsing 'cino' a comma isn't skipped properly.
Solution: Skip the comma. (Lech Lorens)
2010-03-23 18:22:46 +01:00
Bram Moolenaar
1a89bbe849
updated for version 7.2.378
...
Problem: C function declaration indented too much. (Rui)
Solution: Don't see a line containing { or } as a type. (Matt Wozniski)
2010-03-02 12:38:22 +01:00