summaryrefslogtreecommitdiffstats
path: root/runtime/doc/options.txt
AgeCommit message (Collapse)Author
2018-12-16patch 8.1.0606: 'cryptmethod' defaults to a very old methodv8.1.0606Bram Moolenaar
Problem: 'cryptmethod' defaults to a very old method. Solution: Default to "blowfish2", it is now widely available.
2018-12-09Update runtime files.Bram Moolenaar
2018-11-25Update runtime filesBram Moolenaar
2018-11-20patch 8.1.0539: cannot build without the sandboxv8.1.0539Bram Moolenaar
Problem: Cannot build without the sandbox. Solution: Set the secure option instead of using the sandbox. Also restrict the characters from 'spelllang' that are used for LANG.vim. (suggested by Yasuhiro Matsumoto)
2018-11-16Update runtime files.Bram Moolenaar
2018-11-04Update runtime filesBram Moolenaar
2018-10-19Update runtime filesBram Moolenaar
2018-10-02Update runtime files.Bram Moolenaar
2018-09-10patch 8.1.0363: internal diff isn't used by default as advertisedv8.1.0363Bram Moolenaar
Problem: Internal diff isn't used by default as advertised. Solution: Add "internal" to the default value of 'diffopt'. Also add couple of files missing from the distribution.
2018-09-10patch 8.1.0360: using an external diff program is slow and inflexiblev8.1.0360Bram Moolenaar
Problem: Using an external diff program is slow and inflexible. Solution: Include the xdiff library. (Christian Brabandt, closes #2732) Use it by default.
2018-09-10Update runtime files.Bram Moolenaar
2018-09-02Update runtime files.Bram Moolenaar
2018-08-28Update runtime files.Bram Moolenaar
2018-08-11Update runtime files.Bram Moolenaar
2018-08-07patch 8.1.0251: using full path is not supported for 'backupdir'v8.1.0251Bram Moolenaar
Problem: Using a full path is supported for 'directory' but not for 'backupdir'. (Mikolaj Machowski) Solution: Support 'backupdir' as well. (Christian Brabandt, closes #179)
2018-07-29Update runtime files.Bram Moolenaar
2018-07-21Update runtime files.Bram Moolenaar
2018-07-07Update runtime files, add Danish translations.Bram Moolenaar
2018-07-03Updated runtime and language files.Bram Moolenaar
2018-06-23patch 8.1.0105: all tab stops are the samev8.1.0105Bram Moolenaar
Problem: All tab stops are the same. Solution: Add the variable tabstop feature. (Christian Brabandt, closes #2711)
2018-06-03patch 8.1.0027: difficult to make a plugin that feeds a line to a jobv8.1.0027Bram Moolenaar
Problem: Difficult to make a plugin that feeds a line to a job. Solution: Add the nitial code for the "prompt" buftype.
2018-05-22Update runtime files.Bram Moolenaar
2018-05-17Vim 8.1 releasev8.1.0000Bram Moolenaar
Update version number and information. Fix a couple of tests.
2018-05-15patch 8.0.1845: various comment updates needed, missing white spacev8.0.1845Bram Moolenaar
Problem: Various comment updates needed, missing white space. Solution: Update comments, add white space.
2018-04-30Update runtime files and translationsBram Moolenaar
2018-04-21patch 8.0.1743: terminal window options are named inconsistentlyv8.0.1743Bram Moolenaar
Problem: Terminal window options are named inconsistently. Solution: prefix terminal window options with "termwin". Keep the old names for now as an alias.
2018-04-20Update runtime files.Bram Moolenaar
2018-04-15patch 8.0.1722: cannot specify a minimal size for a terminal windowv8.0.1722Bram Moolenaar
Problem: Cannot specify a minimal size for a terminal window. Solution: Support the "rows*cols" format for 'winsize'.
2018-04-14patch 8.0.1712: terminal scrollback is not limitedv8.0.1712Bram Moolenaar
Problem: Terminal scrollback is not limited. Solution: Add the 'terminalscroll' option.
2018-04-12patch 8.0.1704: 'backupskip' default doesn't work for Macv8.0.1704Bram Moolenaar
Problem: 'backupskip' default doesn't work for Mac. Solution: Use "/private/tmp". (Rainer Müller, closes #2793)
2018-03-18Update runtime files. Convert a couple of help files to utf-8.Bram Moolenaar
2018-03-16patch 8.0.1609: shell commands in the GUI use a dumb terminalv8.0.1609Bram Moolenaar
Problem: Shell commands in the GUI use a dumb terminal. Solution: Add the "!" flag to 'guioptions' to execute system commands in a special terminal window. Only for Unix now.
2018-03-09Update runtime files.Bram Moolenaar
2018-02-27Updated runtime files.Bram Moolenaar
Add Serbian translations and spell checking.
2018-02-22patch 8.0.1531: cannot use 24 bit colors in MS-Windows consolev8.0.1531Bram Moolenaar
Problem: Cannot use 24 bit colors in MS-Windows console. Solution: Add support for vcon. (Nobuhiro Takasaki, Ken Takasaki, fixes #1270, fixes #2060)
2018-02-10patch 8.0.1491: the minimum width of the popup menu is hard codedv8.0.1491Bram Moolenaar
Problem: The minimum width of the popup menu is hard coded. Solution: Add the 'pumwidth' option. (Christian Brabandt, James McCoy, closes #2314)
2018-02-09Update runtime files.Bram Moolenaar
2018-02-03patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrectv8.0.1455Bram Moolenaar
Problem: If $SHELL contains a space then the default value of 'shell' is incorrect. (Matthew Horan) Solution: Escape spaces in $SHELL. (Christian Brabandt, closes #459)
2018-01-31patch 8.0.1451: difficult to set the python home directories properlyv8.0.1451Bram Moolenaar
Problem: It is difficult to set the python home directory properly for Python 2.7 and 3.5 since both use $PYTHONHOME. Solution: Add the 'pythonhome' and 'pythonthreehome' options. (Kazuki Sakamoto, closes #1266)
2018-01-31patch 8.0.1449: slow redrawing with DirectXv8.0.1449Bram Moolenaar
Problem: Slow redrawing with DirectX. Solution: Avoid calling gui_mch_flush() unnecessarily, especially when updating the cursor. (Ken Takata, closes #2560)
2017-12-24update a few runtime filesBram Moolenaar
2017-12-17Update runtime filesBram Moolenaar
2017-12-05patch 8.0.1369: MS-Windows: drawing underline slow, mFallbackDC not updatedv8.0.1369Bram Moolenaar
Problem: MS-Windows: drawing underline, curl and strike-throw is slow, mFallbackDC not properly updated. Solution: Several performance improvements. (Ken Takata, Taro Muraoka, Yasuhiro Matsumoto, closes #2401)
2017-12-01patch 8.0.1361: some users don't want to diff with hidden buffersv8.0.1361Bram Moolenaar
Problem: Some users don't want to diff with hidden buffers. Solution: Add the "hiddenoff" item to 'diffopt'. (Alisue, closes #2394)
2017-11-30Update runtime filesBram Moolenaar
2017-11-26patch 8.0.1344: using 'imactivatefunc' in the GUI does not workv8.0.1344Bram Moolenaar
Problem: Using 'imactivatefunc' in the GUI does not work. Solution: Do not use 'imactivatefunc' and 'imstatusfunc' in the GUI.
2017-11-26patch 8.0.1343: MS-Windows: does not show colored emojisv8.0.1343Bram Moolenaar
Problem: MS-Windows: does not show colored emojis. Solution: Implement colored emojis. Improve drawing speed. Make 'taamode' work. (Taro Muraoka, Yasuhiro Matsumoto, Ken Takata, close #2375)
2017-11-25patch 8.0.1341: 'imactivatefunc' test fails on MS-Windowsv8.0.1341Bram Moolenaar
Problem: 'imactivatefunc' test fails on MS-Windows. Solution: Skip the text.
2017-11-25patch 8.0.1336: cannot use imactivatefunc() unless compiled with +ximv8.0.1336Bram Moolenaar
Problem: Cannot use imactivatefunc() unless compiled with +xim. Solution: Allow using imactivatefunc() when not compiled with +xim. (Yasuhiro Matsumoto, closes #2349)
2017-11-18patch 8.0.1309: cannot use 'balloonexpr' in a terminalv8.0.1309Bram Moolenaar
Problem: Cannot use 'balloonexpr' in a terminal. Solution: Add 'balloonevalterm' and add code to handle mouse movements in a terminal. Initial implementation for Unix with GUI.