summaryrefslogtreecommitdiff
path: root/src/option.h
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.4.314v7.4.314Bram Moolenaar2014-05-281-1/+2
| | | | | Problem: Completion messages can get in the way of a plugin. Solution: Add 'c' flag to 'shortmess' option. (Shougo Matsu)
* updated for version 7.4.212v7.4.212Bram Moolenaar2014-03-231-4/+0
| | | | | | Problem: Now that the +visual feature is always enabled the #ifdefs for it are not useful. Solution: Remove the checks for FEAT_VISUAL.
* updated for version 7.4.201v7.4.201Bram Moolenaar2014-03-121-0/+1
| | | | | Problem: 'lispwords' is a global option. Solution: Make 'lispwords' global-local. (Sung Pae)
* updated for version 7.4.138v7.4.138Bram Moolenaar2014-01-101-2/+2
| | | | | Problem: Directory change messages are not recognized. Solution: Fix using a character range literally. (Lech Lorens)
* updated for version 7.4.114v7.4.114Bram Moolenaar2013-12-111-2/+2
| | | | | | Problem: New GNU make outputs messages about changing directory in another format. Solution: Recognize the new format.
* updated for version 7.4.073v7.4.073Bram Moolenaar2013-11-061-0/+4
| | | | | Problem: Setting undolevels for one buffer changes undo in another. Solution: Make 'undolevels' a global-local option. (Christian Brabandt)
* updated for version 7.3.1248v7.3.1248Bram Moolenaar2013-06-261-0/+2
| | | | | | Problem: Still have old hacking code for Input Method. Solution: Add 'imactivatefunc' and 'imstatusfunc' as a generic solution to Input Method activation. (Yukihiro Nakadaira)
* updated for version 7.3.970v7.3.970Bram Moolenaar2013-05-191-0/+1
| | | | | | | 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)
* updated for version 7.3.872v7.3.872Bram Moolenaar2013-03-191-0/+1
| | | | | | | 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'.
* updated for version 7.3.632v7.3.632Bram Moolenaar2012-08-151-1/+2
| | | | | Problem: Cannot select beyond 222 columns with the mouse in xterm. Solution: Add support for SGR mouse tracking. (Hayaki Saito)
* updated for version 7.3.597v7.3.597Bram Moolenaar2012-07-101-0/+1
| | | | | | | | Problem: 'clipboard' "autoselect" only applies to the * register. (Sergey Vakulenko) Solution: Make 'autoselect' work for the + register. (Christian Brabant) Add the "autoselectplus" option in 'clipboard' and the "P" flag in 'guioptions'.
* updated for version 7.3.541v7.3.541Bram Moolenaar2012-06-061-1/+2
| | | | | Problem: When joining lines comment leaders need to be removed manually. Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
* updated for version 7.3.446v7.3.446Bram Moolenaar2012-02-201-0/+1
| | | | | Problem: Win32: External commands with special characters don't work. Solution: Add the 'shellxescape' option.
* updated for version 7.3.343v7.3.343Bram Moolenaar2011-10-201-1/+2
| | | | | | Problem: No mouse support for urxvt. Solution: Implement urxvt mouse support, also for > 252 columns. (Yiding Jia)
* updated for version 7.3.323v7.3.323Bram Moolenaar2011-09-301-1/+1
| | | | | | Problem: The default 'errorformat' does not ignore some "included from" lines. Solution: Add a few more patterns. (Ben Boeckel)
* updated for version 7.3.261v7.3.261Bram Moolenaar2011-07-271-1/+1
| | | | | | Problem: G++ error message errornously recognized as error. Solution: Ignore "In file included from" line also when it ends in a colon. (Fernando Castillo)
* updated for version 7.3.235v7.3.235Bram Moolenaar2011-06-261-2/+4
| | | | | Problem: ";" gets stuck on a "t" command, it's not useful. Solution: Add the ';' flag in 'cpo'. (Christian Brabandt)
* updated for version 7.3.215v7.3.215Bram Moolenaar2011-06-121-0/+1
| | | | | Problem: Wrong file names in previous patch. (Toothpik) Solution: Include the option changes.
* updated for version 7.3.191v7.3.191Bram Moolenaar2011-05-191-3/+0
| | | | | | Problem: Still some RISC OS stuff to remove. Solution: Remove files and lines. (Hong Xu) Remove the 'osfiletype' option code.
* updated for version 7.3.119v7.3.119Bram Moolenaar2011-02-121-1/+1
| | | | | Problem: Build problem on Mac. (Nicholas Stallard) Solution: Use "extern" instead of "EXTERN" for p_vfile.
* updated for version 7.3.114v7.3.114Bram Moolenaar2011-02-091-0/+4
| | | | | | Problem: Potential problem in initialization when giving an error message early. Solution: Initialize 'verbosefile' empty. (Ben Schmidt)
* updated for version 7.3.072v7.3.072Bram Moolenaar2010-12-021-0/+1
| | | | | Problem: Can't complete file names while ignoring case. Solution: Add 'wildignorecase'.
* Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)Bram Moolenaar2010-07-251-1/+2
|
* Add the 'undoreload' option to be able to undo a file reload.Bram Moolenaar2010-07-241-0/+1
|
* Add the 'c' flag to 'concealcursor'.Bram Moolenaar2010-07-241-1/+1
|
* Add the 'concealcursor' option to decide when the cursor line is to beBram Moolenaar2010-07-231-1/+4
| | | | | concealed or not. Rename 'conc' to 'cole' as the short name for 'conceallevel'.
* Change 'cryptmethod' from a number to a string option. Make it global-local.Bram Moolenaar2010-07-201-0/+3
|
* Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.Bram Moolenaar2010-07-141-0/+5
|
* Remove the old and not well supported GTK 1 code. (James Vega)Bram Moolenaar2010-06-251-2/+2
|
* Add the conceal patch from Vince Negri.Bram Moolenaar2010-06-051-0/+6
|
* Included patch for persistent undo. Lots of changes and added test.Bram Moolenaar2010-05-231-0/+2
|
* Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.Bram Moolenaar2010-05-161-0/+1
|
* Add 'relativenumber' patch from Markus Heidelberg.Bram Moolenaar2010-05-161-0/+1
|
* updated for version 7.2.373v7.2.373Bram Moolenaar2010-02-241-1/+1
| | | | | Problem: Gcc 4.5 adds more error messages. (Chris Indy) Solution: Update default 'errorformat'.
* updated for version 7.2aBram Moolenaar2008-06-241-0/+8
|
* updated for version 7.1-236v7.1.236Bram Moolenaar2008-01-191-0/+3
|
* updated for version 7.1bBram Moolenaar2007-05-101-1/+1
|
* updated for version 7.0-130v7.0.130Bram Moolenaar2006-10-101-0/+3
|
* updated for version 7.0fv7.0fBram Moolenaar2006-04-241-0/+3
|
* updated for version 7.0e05v7.0e05Bram Moolenaar2006-04-211-0/+1
|
* updated for version 7.0d02v7.0d02Bram Moolenaar2006-04-121-1/+2
|
* updated for version 7.0c11Bram Moolenaar2006-04-061-1/+1
|
* updated for version 7.0b01Bram Moolenaar2006-03-251-3/+5
|
* updated for version 7.0230Bram Moolenaar2006-03-201-0/+1
|
* updated for version 7.0228Bram Moolenaar2006-03-181-0/+3
|
* updated for version 7.0226Bram Moolenaar2006-03-161-1/+2
|
* updated for version 7.0225Bram Moolenaar2006-03-151-0/+1
|
* updated for version 7.0222Bram Moolenaar2006-03-121-6/+10
|
* updated for version 7.0216v7.0216Bram Moolenaar2006-03-061-0/+3
|
* updated for version 7.0211Bram Moolenaar2006-03-011-0/+1
|