Bram Moolenaar
5a31b46bff
updated for version 7.4.415
...
Problem: Cannot build. Warning for shadowed variable. (John Little)
Solution: Add missing change. Remove declaration.
2014-08-23 14:16:20 +02:00
Bram Moolenaar
b5a7a8b545
updated for version 7.4.393
...
Problem: Text drawing on newer MS-Windows systems is suboptimal. Some
multi-byte characters are not displayed, even though the same font
in Notepad can display them. (Srinath Avadhanula)
Solution: Add the 'renderoptions' option to enable Direct-X drawing. (Taro
Muraoka)
2014-08-06 14:52:30 +02:00
Bram Moolenaar
b7cb42bc38
updated for version 7.4.242
...
Problem: getreg() does not distinguish between a NL used for a line break
and a NL used for a NUL character.
Solution: Add another argument to return a list. (ZyX)
2014-04-02 19:55:10 +02:00
Bram Moolenaar
a1706c958e
updated for version 7.4.234
...
Problem: Can't get the command that was used to start Vim.
Solution: Add v:progpath. (Viktor Kojouharov)
2014-04-01 19:55:49 +02:00
Bram Moolenaar
03305f396f
updated for version 7.4.214
...
Problem: Compilation problems on HP_nonStop (Tandem).
Solution: Add #defines. (Joachim Schmitz)
2014-03-24 19:44:09 +01:00
Bram Moolenaar
a2aa31a926
updated for version 7.4.188
...
Problem: SIZEOF_LONG clashes with similar defines in header files.
Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
2014-02-23 22:52:40 +01:00
Bram Moolenaar
1028f4d75e
updated for version 7.4.152
...
Problem: Python: Cannot iterate over options.
Solution: Add options iterator. (ZyX)
2014-01-14 16:55:00 +01:00
Bram Moolenaar
45d3b1454c
updated for version 7.4.082
...
Problem: Using "gf" in a changed buffer suggests adding "!", which is not
possible. (Tim Chase)
Solution: Pass a flag to check_changed() wether adding ! make sense.
2013-11-09 03:31:51 +01:00
Bram Moolenaar
8050efa07d
updated for version 7.4.079
...
Problem: A script cannot detect whether 'hlsearch' highlighting is actually
displayed.
Solution: Add the "v:hlsearch" variable. (ZyX)
2013-11-08 04:30:20 +01:00
Bram Moolenaar
aee1f4a5b5
updated for version 7.4b.007
...
Problem: On 32 bit MS-Windows :perldo does not work.
Solution: Make sure time_t uses 32 bits. (Ken Takata)
2013-08-02 16:10:32 +02:00
Bram Moolenaar
3437b91102
updated for version 7.3.1300
...
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)
2013-07-03 19:52:53 +02:00
Bram Moolenaar
cd9c46265e
updated for version 7.3.1148
...
Problem: No command line completion for ":syntime".
Solution: Implement the completion. (Dominique Pelle)
2013-06-08 15:24:48 +02:00
Bram Moolenaar
018acca3bd
updated for version 7.3.1068
...
Problem: Python: Script is auto-loaded on function creation.
Solution: Python patch 27. (ZyX)
2013-05-30 13:37:28 +02:00
Bram Moolenaar
84e0f6ca9a
updated for version 7.3.924
...
Problem: Python interface can't easily access options.
Solution: Add vim.options, vim.window.options and vim.buffer.options. (ZyX)
2013-05-06 03:52:55 +02:00
Bram Moolenaar
71afbfe6cd
updated for version 7.3.872
...
Problem: On some systems case of file names is always ignored, on others
never.
Solution: Add the 'fileignorecase' option to control this at runtime.
Implies 'wildignorecase'.
2013-03-19 16:49:16 +01:00
Bram Moolenaar
186628f671
updated for version 7.3.867
...
Problem: Matchparen does not update match when using auto-indenting.
(Marc Aldorasi)
Solution: Add the TextChanged and TextChangedI autocommand events.
2013-03-19 13:33:23 +01:00
Bram Moolenaar
693e40c2cd
updated for version 7.3.836
...
Problem: Clipboard does not work on Win32 when compiled with Cygwin.
Solution: Move the Win32 clipboard code to a separate file and use it when
building with os_unix.c. (Frodak Baksik, Ken Takata)
2013-02-26 14:56:42 +01:00
Bram Moolenaar
08ed30eca7
updated for version 7.3.770
...
Problem: Vim.h indentation is inconsistent.
Solution: Adjust the indentation. (Elias Diem)
2013-01-17 17:17:26 +01:00
Bram Moolenaar
2430586629
updated for version 7.3.631
...
Problem: Cannot complete user names.
Solution: Add user name completion. (Dominique Pelle)
2012-08-15 14:05:05 +02:00
Bram Moolenaar
cfa3caec0c
updated for version 7.3.598
...
Problem: Cannot act upon end of completion. (Taro Muraoka)
Solution: Add an autocommand event that is triggered when completion has
finished. (Idea by Florian Klein)
2012-07-10 17:14:56 +02:00
Bram Moolenaar
77c604d3ff
updated for version 7.3.593
...
Problem: No easy way to decide if b:browsefilter will work.
Solution: Add the browsefilter feature.
2012-07-10 13:41:14 +02:00
Bram Moolenaar
bfe3bf806a
updated for version 7.3.552
...
Problem: Formatting inside comments does not use the "2" flag in
'formatoptions'.
Solution: Support the "2" flag. (Tor Perkins)
2012-06-13 17:28:55 +02:00
Bram Moolenaar
3b53dfb3b0
updated for version 7.3.544
...
Problem: There is no good way to close a quickfix window when closing the
last ordinary window.
Solution: Add the QuitPre autocommand.
2012-06-06 18:03:07 +02:00
Bram Moolenaar
9a920d8c31
updated for version 7.3.535
...
Problem: Many #ifdefs for MB_MAXBYTES.
Solution: Also define MB_MAXBYTES without the +multi_byte feature. Fix
places where the buffer didn't include space for a NUL byte.
2012-06-01 15:21:02 +02:00
Bram Moolenaar
5ae636b9bb
updated for version 7.3.514
...
Problem: No completion for :history command.
Solution: Add the completion and update the docs. Also fix ":behave"
completion. (Dominique Pelle)
2012-04-30 18:48:53 +02:00
Bram Moolenaar
06ca513e2c
updated for version 7.3.479
...
Problem: When 'cursorline' is set the line number highlighting can't be set
separately.
Solution: Add "CursorLineNr". (Howard Buchholz)
2012-03-23 16:25:17 +01:00
Bram Moolenaar
146e9c3886
updated for version 7.3.465
...
Problem: Cannot get file name with newline from glob().
Solution: Add argument to glob() and expand() to indicate they must return a
list. (Christian Brabandt)
2012-03-07 19:18:23 +01:00
Bram Moolenaar
0b573a58e6
updated for version 7.3.264
...
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-27 17:31:47 +02:00
Bram Moolenaar
b560983d2f
updated for version 7.3.255
...
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-20 15:04:58 +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
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
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
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
1c32dff7d6
updated for version 7.3.172
...
Problem: MS-Windows: rename() might delete the file if the name differs but
it's actually the same file.
Solution: Use the file handle to check if it's the same file. (Yukihiro
Nakadaira)
2011-05-05 16:41:24 +02:00
Bram Moolenaar
d9462e394a
updated for version 7.3.161
...
Problem: Items on the stack may be too big.
Solution: Make items static or allocate them.
2011-04-11 21:35:11 +02: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
b57aa92d2c
updated for version 7.3.087
...
Problem: EINTR is not always defined.
Solution: Include errno.h in vim.h.
2010-12-17 20:24:01 +01:00
Bram Moolenaar
9c26303293
updated for version 7.3.085
...
Problem: Inconsistency with preproc symbols. void * computation.
Solution: Include vimio.h from vim.h. Add type cast.
2010-12-17 18:06:06 +01:00
Bram Moolenaar
540fc6fbdb
updated for version 7.3.083
...
Problem: When a read() or write() is interrupted by a signal it fails.
Solution: Add read_eintr() and write_eintr().
2010-12-17 16:27:16 +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
727c876b78
updated for version 7.3.031
...
Problem: Can't pass the X window ID to another application.
Solution: Add v:windowid. (Christian J. Robinson, Lech Lorens)
2010-10-20 19:17:48 +02:00
Bram Moolenaar
423f97277d
updated for version 7.3.021
...
Problem: Conflict for defining Boolean in Mac header files.
Solution: Define NO_X11_INCLUDES. (Rainer Muller)
2010-10-10 17:08:43 +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
8d9b40e71a
Add support for horizontal scroll wheel. (Bjorn Winckler)
2010-07-25 15:49:07 +02:00
Bram Moolenaar
59f931ef54
Add the 'undoreload' option to be able to undo a file reload.
2010-07-24 20:27:03 +02:00
Bram Moolenaar
55d5c0348c
Whitespace cleanup.
2010-07-17 23:52:29 +02:00
Bram Moolenaar
bd5e15fd5c
Added support for Python 3. (Roland Puntaier)
2010-07-17 21:19:38 +02:00
Bram Moolenaar
1a38442dbc
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
2010-07-14 19:53:30 +02:00
Bram Moolenaar
cc448b373d
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
2010-07-14 16:52:17 +02:00
Bram Moolenaar
164fca39bd
Add clipboard support in Mac console. (Bjorn Winckler)
2010-07-14 13:58:07 +02:00