summaryrefslogtreecommitdiffstats
path: root/src/option.c
AgeCommit message (Collapse)Author
2016-03-12patch 7.4.1552v7.4.1552Bram Moolenaar
Problem: ":colorscheme" does not use 'packpath'. Solution: Also use in "start" and "opt" directories in 'packpath'.
2016-02-23patch 7.4.1399v7.4.1399Bram Moolenaar
Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code.
2016-02-21patch 7.4.1384v7.4.1384Bram Moolenaar
Problem: It is not easy to use a set of plugins and their dependencies. Solution: Add packages, ":loadopt", 'packpath'.
2016-02-20patch 7.4.1375v7.4.1375Bram Moolenaar
Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
2016-02-20patch 7.4.1364v7.4.1364Bram Moolenaar
Problem: The Win 16 code is not maintained and unused. Solution: Remove the Win 16 support.
2016-02-16patch 7.4.1334v7.4.1334Bram Moolenaar
Problem: Many compiler warnings with MingW. Solution: Add type casts. (Yasuhiro Matsumoto)
2016-01-30patch 7.4.1211v7.4.1211Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-29patch 7.4.1199v7.4.1199Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-20patch 7.4.1147v7.4.1147Bram Moolenaar
Problem: Conflict for "chartab". (Kazunobu Kuriyama) Solution: Rename the global one to something less obvious. Move it into src/chartab.c.
2016-01-19patch 7.4.1142v7.4.1142Bram Moolenaar
Problem: Cannot define keyword characters for a syntax file. Solution: Add the ":syn iskeyword" command. (Christian Brabandt)
2016-01-09patch 7.4.1070v7.4.1070Bram Moolenaar
Problem: The Tcl interface can't be loaded dynamically on Unix. Solution: Make it possible to load it dynamically. (Ken Takata)
2016-01-09patch 7.4.1065v7.4.1065Bram Moolenaar
Problem: Cannot use the "dll" options on MS-Windows. Solution: Support the options on all platforms. Use the built-in name as the default, so that it's clear what Vim is looking for.
2016-01-02patch 7.4.1027v7.4.1027Bram Moolenaar
Problem: No support for binary numbers. Solution: Add "bin" to nrformats. (Jason Schulz)
2016-01-01patch 7.4.1017v7.4.1017Bram Moolenaar
Problem: When there is a backslash in an option ":set -=" doesn't work. Solution: Handle a backslash better. (Jacob Niehus) Add a new test, merge in old test.
2015-12-31patch 7.4.1009v7.4.1009Bram Moolenaar
Problem: There are still #ifdefs for ARCHIE. Solution: Remove references to ARCHIE, the code was removed in Vim 5.
2015-12-31patch 7.4.1008v7.4.1008Bram Moolenaar
Problem: The OS/2 code pollutes the source while nobody uses it these days. Solution: Drop the support for OS/2.
2015-12-13patch 7.4.972v7.4.972Bram Moolenaar
Problem: Memory leak when there is an error in setting an option. Solution: Free the saved value (Christian Brabandt)
2015-12-11patch 7.4.969v7.4.969Bram Moolenaar
Problem: Compiler warnings on Windowx x64 build. Solution: Add type casts. (Mike Williams)
2015-11-24patch 7.4.941v7.4.941Bram Moolenaar
Problem: There is no way to ignore case only for tag searches. Solution: Add the 'tagcase' option. (Gary Johnson)
2015-11-10patch 7.4.918v7.4.918Bram Moolenaar
Problem: A digit in an option name has problems. Solution: Rename 'python3dll' to 'pythonthreedll'.
2015-11-10patch 7.4.915v7.4.915Bram Moolenaar
Problem: When removing from 'path' and then adding, a comma may go missing. (Malcolm Rowe) Solution: Fix the check for P_ONECOMMA. (closes #471)
2015-11-10patch 7.4.911v7.4.911Bram Moolenaar
Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi) Solution: Define the options.
2015-11-02patch 7.4.907v7.4.907Bram Moolenaar
Problem: Libraries for dynamically loading interfaces can only be defined at compile time. Solution: Add options to specify the dll names. (Kazuki Sakamoto, closes #452)
2015-09-15patch 7.4.868v7.4.868Bram Moolenaar
Problem: 'smarttab' is also effective when 'paste' is enabled. (Alexander Monakov) Solution: Disable 'smarttab' when 'paste' is set. (Christian Brabandt) Do the same for 'expandtab'.
2015-08-26patch 7.4.841v7.4.841Bram Moolenaar
Problem: Can't compile without the multi-byte feature. (John Marriott) Solution: Add more #ifdef's.
2015-08-25patch 7.4.838v7.4.838Bram Moolenaar
Problem: Can't compile without the crypt feature. (John Marriott) Solution: Add #ifdef.
2015-08-25patch 7.4.833v7.4.833Bram Moolenaar
Problem: More side effects of ":set all&" are missing. (Björn Linse) Solution: Call didset_options() and add didset_options2() to collect more side effects to take care of. Still not everything...
2015-08-25patch 7.4.830v7.4.830Bram Moolenaar
Problem: Resetting 'encoding' when doing ":set all&" causes problems. (Bjorn Linse) Display is not updated. Solution: Do not reset 'encoding'. Do a full redraw.
2015-08-11patch 7.4.821v7.4.821Bram Moolenaar
Problem: Coverity reports a few problems. Solution: Avoid the warnings. (Christian Brabandt)
2015-07-22patch 7.4.795v7.4.795Bram Moolenaar
Problem: The 'fixeol' option is not copied to a new window. Solution: Copy the option value. (Yasuhiro Matsumoto)
2015-07-21patch 7.4.793v7.4.793Bram Moolenaar
Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt)
2015-07-19patch 7.4.789v7.4.789Bram Moolenaar
Problem: Using freed memory and crash. (Dominique Pellej) Solution: Correct use of pointers. (Hirohito Higashi)
2015-07-17patch 7.4.788v7.4.788Bram Moolenaar
Problem: Can't build without the crypt feature. (John Marriott) Solution: Add #ifdef's.
2015-07-17patch 7.4.787v7.4.787Bram Moolenaar
Problem: snprintf() isn't available everywhere. Solution: Use vim_snprintf(). (Ken Takata)
2015-07-17patch 7.4.786v7.4.786Bram Moolenaar
Problem: It is not possible for a plugin to adjust to a changed setting. Solution: Add the OptionSet autocommand event. (Christian Brabandt)
2015-07-17patch 7.4.785v7.4.785Bram Moolenaar
Problem: On some systems automatically adding the missing EOL causes problems. Setting 'binary' has too many side effects. Solution: Add the 'fixeol' option, default on. (Pavel Samarkin)
2015-07-17patch 7.4.782v7.4.782Bram Moolenaar
Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode. Solution: Fix the reported problems. (Christian Brabandt)
2015-07-10patch 7.4.775v7.4.775Bram Moolenaar
Problem: It is not possible to avoid using the first item of completion. Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo Matsu)
2015-06-25patch 7.4.761v7.4.761Bram Moolenaar
Problem: The request-background termcode implementation is incomplete. Solution: Add the missing pieces.
2015-06-20patch 7.4.749v7.4.749Bram Moolenaar
Problem: For some options two consecutive commas are OK. (Nikolay Pavlov) Solution: Add the P_ONECOMMA flag.
2015-06-19patch 7.4.741v7.4.741Bram Moolenaar
Problem: When using += with ":set" a trailing comma is not recognized. (Issue 365) Solution: Don't add a second comma. Add a test. (partly by Christian Brabandt)
2015-06-09patch 7.4.730v7.4.730Bram Moolenaar
Problem: When setting the crypt key and using a swap file, text may be encrypted twice or unencrypted text remains in the swap file. (Issue 369) Solution: Call ml_preserve() before re-encrypting. Set correct index for next pointer block.
2015-04-21patch 7.4.711v7.4.711Bram Moolenaar
Problem: Missing change in one file. Solution: Also change option.c
2015-03-31updated for version 7.4.687v7.4.687Bram Moolenaar
Problem: There is no way to use a different in Replace mode for a terminal. Solution: Add t_SR. (Omar Sandoval)
2015-03-13updated for version 7.4.659v7.4.659Bram Moolenaar
Problem: When 'ruler' is set the preferred column is reset. (Issue 339) Solution: Don't set curswant when redrawing the status lines.
2015-02-10updated for version 7.4.627v7.4.627Bram Moolenaar
Problem: The last screen cell is not updated. Solution: Respect the "tn" termcap feature. (Hayaki Saito)
2015-02-03updated for version 7.4.610v7.4.610Bram Moolenaar
Problem: Some function headers may be missing from generated .pro files. Solution: Add PROTO to the #ifdef.
2015-01-27updated for version 7.4.602v7.4.602Bram Moolenaar
Problem: ":set" does not accept hex numbers as documented. Solution: Use vim_str2nr(). (ZyX)
2014-11-30updated for version 7.4.538v7.4.538Bram Moolenaar
Problem: Tests fail with small features plus Python. Solution: Disallow weird combination of options. Do not set "fdm" when folding is disabled.
2014-11-19updated for version 7.4.524v7.4.524Bram Moolenaar
Problem: When using ":ownsyntax" spell checking is messed up. (Issue 78) Solution: Use the window-local option values. (Christian Brabandt)