summaryrefslogtreecommitdiff
path: root/src/option.c
AgeCommit message (Collapse)Author
2015-12-31patch 7.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.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.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.969Bram Moolenaar
Problem: Compiler warnings on Windowx x64 build. Solution: Add type casts. (Mike Williams)
2015-11-24patch 7.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.918Bram Moolenaar
Problem: A digit in an option name has problems. Solution: Rename 'python3dll' to 'pythonthreedll'.
2015-11-10patch 7.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.911Bram Moolenaar
Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi) Solution: Define the options.
2015-11-02patch 7.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.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.841Bram Moolenaar
Problem: Can't compile without the multi-byte feature. (John Marriott) Solution: Add more #ifdef's.
2015-08-25patch 7.4.838Bram Moolenaar
Problem: Can't compile without the crypt feature. (John Marriott) Solution: Add #ifdef.
2015-08-25patch 7.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.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.821Bram Moolenaar
Problem: Coverity reports a few problems. Solution: Avoid the warnings. (Christian Brabandt)
2015-07-22patch 7.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.793Bram Moolenaar
Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt)
2015-07-19patch 7.4.789Bram Moolenaar
Problem: Using freed memory and crash. (Dominique Pellej) Solution: Correct use of pointers. (Hirohito Higashi)
2015-07-17patch 7.4.788Bram Moolenaar
Problem: Can't build without the crypt feature. (John Marriott) Solution: Add #ifdef's.
2015-07-17patch 7.4.787Bram Moolenaar
Problem: snprintf() isn't available everywhere. Solution: Use vim_snprintf(). (Ken Takata)
2015-07-17patch 7.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.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.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.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.761Bram Moolenaar
Problem: The request-background termcode implementation is incomplete. Solution: Add the missing pieces.
2015-06-20patch 7.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.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.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.711Bram Moolenaar
Problem: Missing change in one file. Solution: Also change option.c
2015-03-31updated for version 7.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.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.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.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.602Bram Moolenaar
Problem: ":set" does not accept hex numbers as documented. Solution: Use vim_str2nr(). (ZyX)
2014-11-30updated for version 7.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.524Bram Moolenaar
Problem: When using ":ownsyntax" spell checking is messed up. (Issue 78) Solution: Use the window-local option values. (Christian Brabandt)
2014-11-05updated for version 7.4.502Bram Moolenaar
Problem: Language mapping also applies to mapped characters. Solution: Add the 'langnoremap' option, when on 'langmap' does not apply to mapped characters. (Christian Brabandt)
2014-09-29updated for version 7.4.462Bram Moolenaar
Problem: Setting the local value of 'backupcopy' empty gives an error. (Peter Mattern) Solution: When using an empty value set the flags to zero. (Hirohito Higashi)
2014-09-23updated for version 7.4.456Bram Moolenaar
Problem: 'backupcopy' is global, cannot write only some files in a different way. Solution: Make 'backupcopy' global-local. (Christian Brabandt)
2014-09-09updated for version 7.4.438Bram Moolenaar
Problem: Cached values for 'cino' not reset for ":set all&". Solution: Call parse_cino(). (Yukihiro Nakadaira)
2014-08-24updated for version 7.4.417Bram Moolenaar
Problem: After splitting a window and setting 'breakindent' the default minimum with is not respected. Solution: Call briopt_check() when copying options to a new window.
2014-08-13updated for version 7.4.403Bram Moolenaar
Problem: Valgrind reports errors when running test 72. (Dominique Pelle) Solution: Reset the local 'cryptmethod' option before storing the seed. Set the seed in the memfile even when there is no block0 yet.
2014-08-10updated for version 7.4.399Bram Moolenaar
Problem: Encryption implementation is messy. Blowfish encryption has a weakness. Solution: Refactor the encryption, store the state in an allocated struct instead of using a save/restore mechanism. Introduce the "blowfish2" method, which does not have the weakness and encrypts the whole undo file. (largely by David Leadbeater)
2014-08-06updated for version 7.4.393Bram Moolenaar
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-06-25updated for version 7.4.339Bram Moolenaar
Problem: Local function is available globally. Solution: Add "static".
2014-06-25updated for version 7.4.338Bram Moolenaar
Problem: Cannot wrap lines taking indent into account. Solution: Add the 'breakindent' option. (many authors, final improvements by Christian Brabandt)
2014-06-25updated for version 7.4.336Bram Moolenaar
Problem: Setting 'history' to a big value causes out-of-memory errors. Solution: Limit the value to 10000. (Hirohito Higashi)
2014-05-13updated for version 7.4.284Bram Moolenaar
Problem: Setting 'langmap' in the modeline can cause trouble. E.g. mapping ":" breaks many commands. (Jens-Wolfhard Schicke-Uffmann) Solution: Disallow setting 'langmap' from the modeline.
2014-05-07updated for version 7.4.276Bram Moolenaar
Problem: The fish shell is not supported. Solution: Use begin/end instead of () for fish. (Andy Russell)
2014-03-23updated for version 7.4.212Bram Moolenaar
Problem: Now that the +visual feature is always enabled the #ifdefs for it are not useful. Solution: Remove the checks for FEAT_VISUAL.