summaryrefslogtreecommitdiff
path: root/src/feature.h
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1976v7.4.1976Bram Moolenaar2016-07-011-0/+4
| | | | | Problem: Number variables are not 64 bits while they could be. Solution: Add the num64 feature. (Ken Takata)
* patch 7.4.1799v7.4.1799Bram Moolenaar2016-04-291-2/+2
| | | | | Problem: 'guicolors' is a confusing option name. Solution: Use 'termguicolors' instead. (Hirohito Higashi)
* patch 7.4.1784v7.4.1784Bram Moolenaar2016-04-241-0/+7
| | | | | | | Problem: The termtruecolor feature is enabled differently from many other features. Solution: Enable the termtruecolor feature for the big build, not through configure.
* patch 7.4.1611v7.4.1611Bram Moolenaar2016-03-191-13/+4
| | | | | | Problem: The versplit feature makes the code uneccessary complicated. Solution: Remove FEAT_VERTSPLIT, always support vertical splits when FEAT_WINDOWS is defined.
* patch 7.4.1578v7.4.1578Bram Moolenaar2016-03-151-0/+7
| | | | | Problem: There is no way to invoke a function later or periodically. Solution: Add timer support.
* patch 7.4.1537v7.4.1537Bram Moolenaar2016-03-111-9/+2
| | | | | Problem: Too many feature flags for pipes, jobs and channels. Solution: Only use FEAT_JOB_CHANNEL.
* patch 7.4.1433v7.4.1433Bram Moolenaar2016-02-271-1/+0
| | | | | | Problem: The Sniff interface is no longer useful, the tool has not been available for may years. Solution: Delete the Sniff interface and related code.
* patch 7.4.1399v7.4.1399Bram Moolenaar2016-02-231-10/+5
| | | | | Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code.
* patch 7.4.1375v7.4.1375Bram Moolenaar2016-02-201-2/+2
| | | | | Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
* patch 7.4.1364v7.4.1364Bram Moolenaar2016-02-201-4/+3
| | | | | Problem: The Win 16 code is not maintained and unused. Solution: Remove the Win 16 support.
* patch 7.4.1318v7.4.1318Bram Moolenaar2016-02-141-1/+1
| | | | | Problem: Channel with pipes doesn't work in GUI. Solution: Register input handlers for pipes.
* patch 7.4.1283v7.4.1283Bram Moolenaar2016-02-071-2/+2
| | | | | | Problem: The job feature isn't available on MS-Windows. Solution: Add the job feature. Fix argument of job_stop(). (Yasuhiro Matsumoto)
* patch 7.4.1274v7.4.1274Bram Moolenaar2016-02-071-1/+8
| | | | | | Problem: Cannot run a job. Solution: Add job_start(), job_status() and job_stop(). Currently only works for Unix.
* patch 7.4.1222v7.4.1222Bram Moolenaar2016-01-311-7/+0
| | | | | Problem: ":normal" command and others missing in tiny build. Solution: Graduate FEAT_EX_EXTRA.
* patch 7.4.1217v7.4.1217Bram Moolenaar2016-01-301-1/+1
| | | | | Problem: Execution of command on channel doesn't work yet. Solution: Implement the "ex" and "normal" commands.
* patch 7.4.1169v7.4.1169Bram Moolenaar2016-01-241-0/+8
| | | | | | Problem: The socket I/O is intertwined with the netbeans code. Solution: Start refactoring the netbeans communication to split off the socket I/O. Add the +channel feature.
* patch 7.4.1145v7.4.1145Bram Moolenaar2016-01-201-7/+13
| | | | | Problem: Default features are conservative. Solution: Make the default feature set for most of todays systems "huge".
* patch 7.4.1008v7.4.1008Bram Moolenaar2015-12-311-2/+2
| | | | | Problem: The OS/2 code pollutes the source while nobody uses it these days. Solution: Drop the support for OS/2.
* patch 7.4.913v7.4.913Bram Moolenaar2015-11-101-4/+0
| | | | | Problem: No utf-8 support for the hangul input feature. Solution: Add utf-8 support. (Namsh)
* updated for version 7.4.538v7.4.538Bram Moolenaar2014-11-301-7/+0
| | | | | | Problem: Tests fail with small features plus Python. Solution: Disallow weird combination of options. Do not set "fdm" when folding is disabled.
* updated for version 7.4.212v7.4.212Bram Moolenaar2014-03-231-5/+1
| | | | | | 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.200v7.4.200Bram Moolenaar2014-03-121-10/+4
| | | | | Problem: Too many #ifdefs in the code. Solution: Enable FEAT_VISUAL always, await any complaints
* updated for version 7.4.188v7.4.188Bram Moolenaar2014-02-231-3/+3
| | | | | Problem: SIZEOF_LONG clashes with similar defines in header files. Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
* updated for version 7.3.968v7.3.968Bram Moolenaar2013-05-181-1/+1
| | | | | | Problem: Multi-byte support is only available when compiled with "big" features. Solution: Include multi-byte by default, with "normal" features.
* updated for version 7.3.925v7.3.925Bram Moolenaar2013-05-061-1/+1
| | | | | Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
* updated for version 7.3.900v7.3.900Bram Moolenaar2013-04-151-0/+7
| | | | | Problem: Not obvious that some mouse features are mutual-exclusive. Solution: Add a comment.
* updated for version 7.3.836v7.3.836Bram Moolenaar2013-02-261-0/+5
| | | | | | Problem: Clipboard does not work on Win32 when compiled with Cygwin. Solution: Move the Win32 clipboard code to a separate file and use it when building with os_unix.c. (Frodak Baksik, Ken Takata)
* updated for version 7.3.819v7.3.819Bram Moolenaar2013-02-141-0/+7
| | | | | Problem: Compiling without +eval and with Python isn't working. Solution: Add the eval feature when building with Python.
* updated for version 7.3.774v7.3.774Bram Moolenaar2013-01-231-0/+12
| | | | | Problem: Tiny GUI version misses console dialog feature. Solution: Define FEAT_CON_DIALOG when apprpriate. (Christian Brabandt)
* updated for version 7.3.700v7.3.700Bram Moolenaar2012-10-211-0/+2
| | | | | Problem: Cannot detect URXVT and SGR mouse support. Solution: add +mouse_urxvt and +mouse_sgr. (Hayaki Saito)
* updated for version 7.3.632v7.3.632Bram Moolenaar2012-08-151-1/+10
| | | | | 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.505v7.3.505Bram Moolenaar2012-04-251-0/+8
| | | | | | | Problem: Test 11 fails on MS-Windows in some versions. Solution: Fix #ifdefs for whether filtering through a pipe is possible. Move setting b_no_eol_lnum back to where it was before patch 7.3.124. (David Pope)
* updated for version 7.3.343v7.3.343Bram Moolenaar2011-10-201-4/+17
| | | | | | Problem: No mouse support for urxvt. Solution: Implement urxvt mouse support, also for > 252 columns. (Yiding Jia)
* updated for version 7.3.191v7.3.191Bram Moolenaar2011-05-191-9/+0
| | | | | | Problem: Still some RISC OS stuff to remove. Solution: Remove files and lines. (Hong Xu) Remove the 'osfiletype' option code.
* Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)Bram Moolenaar2010-07-271-1/+2
|
* Add the 'concealcursor' option to decide when the cursor line is to beBram Moolenaar2010-07-231-2/+5
| | | | | concealed or not. Rename 'conc' to 'cole' as the short name for 'conceallevel'.
* Whitespace cleanup.Bram Moolenaar2010-07-171-1/+1
|
* Added Lua interfae. (Luis Carvalho)Bram Moolenaar2010-07-141-0/+1
|
* Change remaining HAVE_GTK2 to FEAT_GUI_GTK.Bram Moolenaar2010-06-261-3/+3
|
* Fix a few compiler warnings. Fix crash with encrypted undo file.Bram Moolenaar2010-06-061-1/+1
|
* Add the conceal patch from Vince Negri.Bram Moolenaar2010-06-051-3/+18
|
* Add patch to improve support of z/OS (OS/390). (Ralf Schandl)Bram Moolenaar2010-06-031-5/+14
|
* A bit of cleanup and simplification for undofile.Bram Moolenaar2010-05-301-1/+1
|
* Included patch for persistent undo. Lots of changes and added test.Bram Moolenaar2010-05-231-0/+8
|
* Included the patch to support netbeans in a terminal.Bram Moolenaar2010-05-221-4/+2
|
* Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.Bram Moolenaar2010-05-161-1/+1
|
* updated for version 7.2-269v7.2.269Bram Moolenaar2009-11-031-3/+7
|
* updated for version 7.2-031v7.2.031Bram Moolenaar2008-11-091-2/+6
|
* updated for version 7.2c-000v7.2c.000Bram Moolenaar2008-08-061-1/+1
|
* updated for version 7.2aBram Moolenaar2008-06-241-5/+17
|