Bram Moolenaar
abab85a499
updated for version 7.3.1248
...
Problem: Still have old hacking code for Input Method.
Solution: Add 'imactivatefunc' and 'imstatusfunc' as a generic solution to
Input Method activation. (Yukihiro Nakadaira)
2013-06-26 19:18:05 +02:00
Bram Moolenaar
427d51c23f
updated for version 7.3.1208
...
Problem: Compiler warnings on MS-Windows.
Solution: Add type cast. Move variable declaration. (Mike Williams)
2013-06-16 16:01:25 +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
5ebc09b450
updated for version 7.3.1115
...
Problem: Many users don't like the cursor line number when 'relativenumber'
is set.
Solution: Have four combinations with 'number' and 'relativenumber'.
(Christian Brabandt)
2013-06-04 22:13:50 +02:00
Bram Moolenaar
c96ebe75e5
updated for version 7.3.1004
...
Problem: No error when option could not be set.
Solution: Report an error. (ZyX)
2013-05-21 22:38:18 +02:00
Bram Moolenaar
fbc0d2ea1e
updated for version 7.3.970
...
Problem: Syntax highlighting can be slow.
Solution: Include the NFA regexp engine. Add the 'regexpengine' option to
select which one is used. (various authors, including Ken Takata,
Andrei Aiordachioaie, Russ Cox, Xiaozhou Liua, Ian Young)
2013-05-19 19:40:29 +02:00
Bram Moolenaar
6800186a03
updated for version 7.3.932
...
Problem: Compiler warning for uninitialized variable. (Tony Mechelynck)
Solution: Initialize the variable.
2013-05-11 13:45:05 +02:00
Bram Moolenaar
51ac8a27e5
updated for version 7.3.929
...
Problem: Compiler warning for unused variable. Not freeing unused string.
Solution: Remove the variable. Clear the options.
2013-05-06 06:45:47 +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
20754027b3
updated for version 7.3.861
...
Problem: ":setlocal number" clears global value of 'relativenumber'.
Solution: Do it properly. (Markus Heidelberg)
2013-03-13 20:42:32 +01:00
Bram Moolenaar
9584b31aae
updated for version 7.3.859
...
Problem: 'ambiwidth' must be set by the user.
Solution: Detects East Asian ambiguous width (UAX #11 ) state of the terminal
at the start-up time and 'ambiwidth' accordingly. (Hayaki Saito)
2013-03-13 19:29:28 +01:00
Bram Moolenaar
f4e5e86627
updated for version 7.3.810
...
Problem: 'relativenumber is reset unexpectedly. (François Ingelrest)
Solution: After an option was reset also reset the global value. Add a test.
(Christian Brabandt)
2013-02-13 15:44:26 +01:00
Bram Moolenaar
0936502538
updated for version 7.3.771
...
Problem: Uninitialized variable. (Yasuhiro Matsumoto)
Solution: Set x2 to -1.
2013-01-17 17:37:35 +01:00
Bram Moolenaar
8c7694a864
updated for version 7.3.769
...
Problem: 'matchpairs' does not work with multi-byte characters.
Solution: Make it work. (Christian Brabandt)
2013-01-17 17:02:05 +01:00
Bram Moolenaar
15d55dec03
updated for version 7.3.745
...
Problem: Automatically setting 'ttymouse' doesn't work.
Solution: Reset the "option was set" flag when using the default.
2012-12-05 14:43:02 +01:00
Bram Moolenaar
e8d8fd2add
updated for version 7.3.703
...
Problem: When 'undofile' is reset the hash is computed unnecessarily.
Solution: Only compute the hash when the option was set. (Christian Brabandt)
2012-10-21 03:46:05 +02:00
Bram Moolenaar
9f340fa57b
updated for version 7.3.693
...
Problem: Can't make 'softtabstop' follow 'shiftwidth'.
Solution: When 'softtabstop' is negative use the value of 'shiftwidth'.
(so8res)
2012-10-21 00:10:39 +02:00
Bram Moolenaar
14f2474147
updated for version 7.3.629
...
Problem: There is no way to make 'shiftwidth' follow 'tabstop'.
Solution: When 'shiftwidth' is zero use the value of 'tabstop'. (Christian
Brabandt)
2012-08-08 18:01:05 +02:00
Bram Moolenaar
89af439409
updated for version 7.3.599
...
Problem: Missing change in one file.
Solution: Patch for changed clip_autoselect().
2012-07-10 18:31:54 +02:00
Bram Moolenaar
11b73d668f
updated for version 7.3.577
...
Problem: Size of memory does not fit in 32 bit unsigned.
Solution: Use Kbyte instead of byte. Call GlobalMemoryStatusEx() instead of
GlobalMemoryStatus() when available.
2012-06-29 15:51:30 +02:00
Bram Moolenaar
913077c37c
updated for version 7.3.487
...
Problem: When setting 'timeoutlen' or 'ttimeoutlen' the column for vertical
movement is reset unnecessarily.
Solution: Do not set w_set_curswant for every option. Add a test for this.
(Kana Natsuno) Add the P_CURSWANT flag for options.
2012-03-28 19:59:04 +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
7f29f7a2f4
updated for version 7.3.458
...
Problem: Crash when calling smsg() during startup.
Solution: Don't use 'shortmess' when it is not set yet.
2012-02-29 13:51:37 +01:00
Bram Moolenaar
f66b3fcf6c
updated for version 7.3.446
...
Problem: Win32: External commands with special characters don't work.
Solution: Add the 'shellxescape' option.
2012-02-20 22:18:30 +01:00
Bram Moolenaar
034b115568
updated for version 7.3.445
...
Problem: Can't properly escape commands for cmd.exe.
Solution: Default 'shellxquote' to '('. Append ')' to make '(command)'.
No need to use "/s" for 'shellcmdflag'.
2012-02-19 18:19:30 +01:00
Bram Moolenaar
a64ba220f0
updated for version 7.3.443
...
Problem: MS-Windows: 'shcf' and 'shellxquote' defaults are not very good.
Solution: Make a better guess when 'shell' is set to "cmd.exe". (Ben Fritz)
2012-02-12 23:23:31 +01:00
Bram Moolenaar
3c70f33440
updated for version 7.3.421
...
Problem: Get E832 when setting 'undofile' in vimrc and there is a file to
be edited on the command line. (Toothpik)
Solution: Do not try reading the undo file for a file that wasn't loaded.
2012-01-28 18:03:35 +01:00
Bram Moolenaar
70b2a56d5a
updated for version 7.3.400
...
Problem: Compiler warnings for shadowed variables.
Solution: Remove or rename the variables.
2012-01-10 22:26:17 +01:00
Bram Moolenaar
374d32d70f
updated for version 7.3.392
...
Problem: When setting 'undofile' while the file is already loaded but
unchanged, try reading the undo file. (Andy Wokula)
Solution: Compute a checksum of the text when 'undofile' is set. (Christian
Brabandt)
2012-01-04 19:34:37 +01:00
Bram Moolenaar
49e4ec6eee
updated for version 7.3.355
...
Problem: GTK warnings when using netrw.vim. (Ivan Krasilnikov)
Solution: Do not remove the beval event handler twice.
2011-11-30 11:31:30 +01:00
Bram Moolenaar
4e5ccfa5c7
updated for version 7.3.354
...
Problem: ":set backspace+=eol" doesn't work when 'backspace' has a
backwards compatible value of 2.
Solution: Convert the number to a string. (Hirohito Higashi)
2011-11-30 11:15:47 +01:00
Bram Moolenaar
725a962194
updated for version 7.3.335
...
Problem: When 'imdisable' is reset from an autocommand in Insert mode it
doesn't take effect.
Solution: Call im_set_active() in Insert mode. (Taro Muraoka)
2011-10-12 16:57:13 +02:00
Bram Moolenaar
50f834dfb2
updated for version 7.3.316
...
Problem: Crash when 'colorcolumn' is set and closing buffer.
Solution: Check for w_buffer to be NULL. (Yasuhiro Matsumoto)
2011-09-21 13:40:17 +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
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
f844147747
updated for version 7.3.166
...
Problem: Buffer on the stack may be too big
Solution: Allocate the space.
2011-04-28 17:24:58 +02:00
Bram Moolenaar
f1fda2d6e5
updated for version 7.3.163
...
Problem: For the default of 'shellpipe' "mksh" and "pdksh" are not
recognized.
Solution: Recognize these shell names.
2011-04-28 12:57:36 +02:00
Bram Moolenaar
0b2f94db23
updated for version 7.3.141
...
Problem: When a key code is not set get a confusing error message.
Solution: Change the error message to say the key code is not set.
2011-03-22 14:35:05 +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
bf9680e441
updated for version 7.3.074
...
Problem: Can't use the "+ register like "* for yank and put.
Solution: Add "unnamedplus" to the 'clipboard' option. (Ivan Krasilnikov)
2010-12-02 21:43: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
4161dccada
updated for version 7.3.071
...
Problem: Editing a file in a window that's in diff mode resets 'diff'
but not cursor binding.
Solution: Reset cursor binding in two more places.
2010-12-02 15:33:21 +01:00
Bram Moolenaar
d5784f9fc4
updated for version 7.3.022
...
Problem: When opening a new window the 'spellcapcheck' option is cleared.
Solution: Copy the correct option value. (Christian Brabandt)
2010-10-13 14:05:35 +02:00
Bram Moolenaar
5c3bd0a0fb
Disallow setting 'ambiwidth' to "double" when 'listchars' or 'fillchars'
...
contains a character that would become double width.
2010-08-04 20:55:44 +02:00
Bram Moolenaar
a539df01f8
No need to redraw cursorline when 'modifiable' is changed. (Dominique Pelle)
2010-08-01 14:35:05 +02:00
Bram Moolenaar
a9d52e3b79
Fixes for coverity warnings.
2010-07-31 16:44:19 +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
d497a30cbe
Window split didn't copy the value of 'conceallevel'.
2010-07-23 22:27:03 +02:00
Bram Moolenaar
f5963f719e
Add the 'concealcursor' option to decide when the cursor line is to be
...
concealed or not.
Rename 'conc' to 'cole' as the short name for 'conceallevel'.
2010-07-23 22:10:27 +02:00