Bram Moolenaar
cde8854730
patch 7.4.822
...
Problem: More problems reported by coverity.
Solution: Avoid the warnings. (Christian Brabandt)
2015-08-11 19:14:00 +02:00
Bram Moolenaar
5d1bc78a2b
patch 7.4.782
...
Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode.
Solution: Fix the reported problems. (Christian Brabandt)
2015-07-17 13:03:48 +02:00
Bram Moolenaar
cad2fc9935
patch 7.4.716
...
Problem: When using the 'c' flag of ":substitute" and selecting "a" or "l"
at the prompt the flags are not remembered for ":&&". (Ingo
Karkat)
Solution: Save the flag values and restore them. (Hirohito Higashi)
2015-05-04 10:46:03 +02:00
Bram Moolenaar
d5f6933d5c
patch 7.4.700
...
Problem: Fold can't be opened after ":move". (Ein Brown)
Solution: Delete the folding information and update it afterwards.
(Christian Brabandt)
2015-04-15 12:43:50 +02:00
Bram Moolenaar
e5c421cfd7
updated for version 7.4.684
...
Problem: When starting several Vim instances in diff mode, the temp files
used may not be unique. (Issue 353)
Solution: Add an argument to vim_tempname() to keep the file.
2015-03-31 13:33:08 +02:00
Bram Moolenaar
eab316bdf9
updated for version 7.4.675
...
Problem: When a FileReadPost autocommand moves the cursor inside a line it
gets moved back.
Solution: When checking whether an autocommand moved the cursor store the
column as well. (Christian Brabandt)
2015-03-24 11:46:30 +01:00
Bram Moolenaar
8da9bbfd02
updated for version 7.4.645
...
Problem: When splitting the window in a BufAdd autocommand while still in
the first, empty buffer the window count is wrong.
Solution: Do not reset b_nwindows to zero and don't increment it.
2015-02-27 19:34:56 +01:00
Bram Moolenaar
eaa330e8e9
updated for version 7.4.632
...
Problem: 7.4.592 breaks the netrw plugin, because the autocommands are
skipped.
Solution: Roll back the change.
2015-02-17 12:17:14 +01:00
Bram Moolenaar
932d88662f
updated for version 7.4.596
...
Problem: Tiny build doesn't compile. (Ike Devolder)
Solution: Add #ifdef.
2015-01-27 13:33:23 +01:00
Bram Moolenaar
df5caa08f6
updated for version 7.4.592
...
Problem: When doing ":e foobar" when already editing "foobar" and 'buftype'
is "nofile" the buffer is cleared. (Xavier de Gaye)
Solution: Do no clear the buffer.
2015-01-27 11:26:15 +01:00
Bram Moolenaar
cc2b9d5dc0
updated for version 7.4.543
...
Problem: Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three.
(Eliseo Martínez) Issue 287
Solution: Correct the line count. (Christian Brabandt)
Also set the last used search pattern.
2014-12-13 03:17:11 +01:00
Bram Moolenaar
0b10541606
updated for version 7.4.538
...
Problem: Tests fail with small features plus Python.
Solution: Disallow weird combination of options. Do not set "fdm" when
folding is disabled.
2014-11-30 13:34:23 +01:00
Bram Moolenaar
54fb438134
updated for version 7.4.515
...
Problem: In a help buffer the global 'foldmethod' is used. (Paul Marshall)
Solution: Reset 'foldmethod' when starting to edit a help file. Move the
code to a separate function.
2014-11-12 19:28:16 +01:00
Bram Moolenaar
3fa57e0d50
updated for version 7.4.453
...
Problem: Still can't build with tiny features.
Solution: Add #ifdef.
2014-09-19 22:23:26 +02:00
Bram Moolenaar
eb21e4ccf5
updated for version 7.4.452
...
Problem: Can't build with tiny features. (Tony Mechelynck)
Solution: Use "return" instead of "break".
2014-09-19 22:05:53 +02:00
Bram Moolenaar
5bfa2ed6e4
updated for version 7.4.449
...
Problem: Can't easily close the help window. (Chris Gaal)
Solution: Add ":helpclose". (Christian Brabandt)
2014-09-19 19:39:34 +02:00
Bram Moolenaar
26f08b06b6
updated for version 7.4.418
...
Problem: When leaving ":append" the cursor shape is like in Insert mode.
(Jacob Niehus)
Solution: Do not have State set to INSERT when calling getline().
2014-08-29 09:02:27 +02:00
Bram Moolenaar
6b1ee34aa0
updated for version 7.4.396
...
Problem: When 'clipboard' is "unnamed", :g/pat/d is very slow. (Praful)
Solution: Only set the clipboard after the last delete. (Christian Brabandt)
2014-08-06 18:17:11 +02:00
Bram Moolenaar
3ed8b1332f
updated for version 7.4.364
...
Problem: When the viminfo file can't be renamed there is no error message.
(Vladimir Berezhnoy)
Solution: Check for the rename to fail.
2014-07-09 21:18:04 +02:00
Bram Moolenaar
050fe7ebad
updated for version 7.4.297
...
Problem: Memory leak from result of get_isolated_shell_name().
Solution: Free the memory. (Dominique Pelle)
2014-05-22 14:00:16 +02:00
Bram Moolenaar
d442ec7fe2
updated for version 7.4.283
...
Problem: Compiler warning about unused variable. (Charles Cooper)
Solution: Move the variable inside the #if block.
2014-05-09 20:33:04 +02:00
Bram Moolenaar
75a8d74cc2
updated for version 7.4.276
...
Problem: The fish shell is not supported.
Solution: Use begin/end instead of () for fish. (Andy Russell)
2014-05-07 15:10:21 +02:00
Bram Moolenaar
f4d7f167f3
updated for version 7.4.275
...
Problem: When changing the type of a sign that hasn't been placed ther is
no error message.
Solution: Add an error message. (Christian Brabandt)
2014-05-07 14:38:44 +02:00
Bram Moolenaar
d69bd9af3c
updated for version 7.4.267
...
Problem: The '[ mark is in the wrong position after "gq". (Ingo Karkat)
Solution: Add the setmark argument to do_join(). (Christian Brabandt)
2014-04-29 12:15:40 +02:00
Bram Moolenaar
4c7ab1bb57
updated for version 7.4.251
...
Problem: Crash when BufAdd autocommand wipes out the buffer.
Solution: Check for buffer to still be valid. Postpone freeing the buffer
structure. (Hirohito Higashi)
2014-04-06 20:45:43 +02:00
Bram Moolenaar
21e854e5ce
updated for version 7.4.245
...
Problem: Crash for "vim -u NONE -N -c '&&'".
Solution: Check for the pattern to be NULL. (Dominique Pelle)
2014-04-04 19:00:48 +02:00
Bram Moolenaar
fd3fe98b78
updated for version 7.4.232
...
Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin)
Solution: Turn this into a join command. (Christian Brabandt)
2014-04-01 17:49:44 +02:00
Bram Moolenaar
f7ff6e85e8
updated for version 7.4.212
...
Problem: Now that the +visual feature is always enabled the #ifdefs for it
are not useful.
Solution: Remove the checks for FEAT_VISUAL.
2014-03-23 15:13:05 +01:00
Bram Moolenaar
529d2d6369
updated for version 7.4.209
...
Problem: When repeating a filter command "%" and "#" are expanded.
Solution: Escape the command when storing for redo. (Christian Brabandt)
2014-03-19 17:41:23 +01:00
Bram Moolenaar
631abc35df
updated for version 7.4.185
...
Problem: Clang gives warnings.
Solution: Adjust how bigness is set. (Dominique Pelle)
2014-02-22 22:27:47 +01:00
Bram Moolenaar
c467d9b274
updated for version 7.4.170
...
Problem: Some help tags don't work with ":help". (Tim Chase)
Solution: Add exceptions.
2014-02-11 12:15:43 +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
3eead7c227
updated for version 7.4.049
...
Problem: In Ex mode, when line numbers are enabled the substitute prompt is
wrong.
Solution: Adjust for the line number size. (Benoit Pierre)
2013-10-02 18:43:06 +02:00
Bram Moolenaar
d82db6046c
updated for version 7.4b.017
...
Problem: ":he \^x" gives a strange error message. (glts)
Solution: Do not translate \^x to \_CTRL-x.
2013-08-07 15:24:41 +02:00
Bram Moolenaar
c528b1d1ed
updated for version 7.4b.011
...
Problem: ":he \%(\)" does not work. (ZyX)
Solution: Add an exception to the list.
2013-08-03 13:41:15 +02:00
Bram Moolenaar
542805a59d
updated for version 7.4b.005
...
Problem: Finding %s in shellpipe and shellredir does not ignore %%s.
Solution: Skip over %%. (lcd 47)
2013-08-02 14:15:13 +02:00
Bram Moolenaar
a2320f43ea
updated for version 7.4a.046
...
Problem: Can't build without mbyte feature.
Solution: Add #ifdefs.
2013-07-28 15:16:19 +02:00
Bram Moolenaar
ad875fb7ff
updated for version 7.4a.041
...
Problem: When using ":new ++ff=unix" and "dos" is first in 'fileformats'
then 'ff' is set to "dos" instead of "unix". (Ingo Karkat)
Solution: Create set_file_options() and invoke it from do_ecmd().
2013-07-24 15:02:03 +02:00
Bram Moolenaar
ff1806f8da
updated for version 7.3.1197
...
Problem: ":wviminfo!" does not write history previously read from a viminfo
file. (Roland Eggner)
Solution: When not merging history write all entries.
2013-06-15 16:31:47 +02:00
Bram Moolenaar
473de61b04
updated for version 7.3.1149
...
Problem: New regexp engine: Matching plain text could be faster.
Solution: Detect a plain text match and handle it specifically. Add
vim_regfree().
2013-06-08 18:19:48 +02:00
Bram Moolenaar
7e28384a9a
updated for version 7.3.1054
...
Problem: Can't build without the +autocmd feature. (Elimar Riesebieter)
Solution: Fix use of buf and curbuf.
2013-05-30 11:43:15 +02:00
Bram Moolenaar
e9ba516be2
updated for version 7.3.1042
...
Problem: Python: can't assign to vim.Buffer.name.
Solution: Python patch 3. (ZyX)
2013-05-29 22:02:22 +02:00
Bram Moolenaar
07219f911c
updated for version 7.3.892
...
Problem: Still mering problems for viminfo history.
Solution: Do not merge lines when writing, don't write old viminfo lines.
2013-04-14 23:19:36 +02:00
Bram Moolenaar
210f3704f7
updated for version 7.3.851
...
Problem: Using an empty pattern with :sort silently continues when there is
no previous search pattern.
Solution: Give an error message.
2013-03-07 16:41:30 +01:00
Bram Moolenaar
c389fd3a49
updated for version 7.3.849
...
Problem: ":g//" gives "Pattern not found error" with E486. Should not use
the error number, it's not a regular error message.
Solution: Use a normal message. (David Bürgin)
2013-03-07 16:08:35 +01:00
Bram Moolenaar
11cb6e6e13
updated for version 7.3.803
...
Problem: Substitute with confirmation and then "q" does not replace
anything. (John McGowan)
Solution: Do not break the loop, skip to the end.
2013-02-06 18:24:02 +01:00
Bram Moolenaar
04e5b5a228
updated for version 7.3.797
...
Problem: Compiler warning for size_t to int conversion. (Skeept)
Solution: Add type casts.
2013-01-30 21:56:21 +01:00
Bram Moolenaar
4bc8cf0e7c
updated for version 7.3.792
...
Problem: ":substitute" works differently without confirmation.
Solution: Do not change the text when asking for confirmation, only display
it.
2013-01-30 16:30:26 +01:00
Bram Moolenaar
8c4fbd1a15
updated for version 7.3.772
...
Problem: Cursor is at the wrong location and below the end of the file
after doing substitutions with confirm flag: %s/x/y/c
(Dominique Pelle)
Solution: Update the cursor position. (Christian Brabandt & Dominique)
2013-01-17 18:34:05 +01:00
Bram Moolenaar
117f2c4b91
updated for version 7.3.766
...
Problem: ":help cpo-*" jumps to the wrong place.
Solution: Make it equivalent to ":help cpo-star".
2013-01-17 14:09:44 +01:00