summaryrefslogtreecommitdiff
path: root/src/fold.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.2293v7.4.2293Bram Moolenaar2016-08-291-1/+1
| | | | | Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
* patch 7.4.2152v7.4.2152Bram Moolenaar2016-08-031-4/+8
| | | | | Problem: No proper translation of messages with a count. Solution: Use ngettext(). (Sergey Alyoshin)
* patch 7.4.1976v7.4.1976Bram Moolenaar2016-07-011-1/+1
| | | | | Problem: Number variables are not 64 bits while they could be. Solution: Add the num64 feature. (Ken Takata)
* patch 7.4.1909v7.4.1909Bram Moolenaar2016-06-081-1/+1
| | | | | Problem: Doubled semicolons. Solution: Reduce to one. (Dominique Pelle)
* patch 7.4.1732v7.4.1732Bram Moolenaar2016-04-141-0/+3
| | | | | | Problem: Folds may close when using autocomplete. (Anmol Sethi) Solution: Increment/decrement disable_fold. (Christian Brabandt, closes #643)
* patch 7.4.1207v7.4.1207Bram Moolenaar2016-01-301-232/+142
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1200v7.4.1200Bram Moolenaar2016-01-291-3/+3
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* patch 7.4.1197v7.4.1197Bram Moolenaar2016-01-291-34/+34
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* patch 7.4.822v7.4.822Bram Moolenaar2015-08-111-2/+2
| | | | | Problem: More problems reported by coverity. Solution: Avoid the warnings. (Christian Brabandt)
* patch 7.4.700v7.4.700Bram Moolenaar2015-04-151-2/+2
| | | | | | Problem: Fold can't be opened after ":move". (Ein Brown) Solution: Delete the folding information and update it afterwards. (Christian Brabandt)
* patch 7.4.699v7.4.699Bram Moolenaar2015-04-131-0/+2
| | | | | | Problem: E315 when trying to delete a fold. (Yutao Yuan) Solution: Make sure the fold doesn't go beyond the last buffer line. (Christian Brabandt)
* updated for version 7.4.212v7.4.212Bram Moolenaar2014-03-231-6/+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.069v7.4.069Bram Moolenaar2013-11-051-1/+1
| | | | | | | Problem: Cannot right shift lines starting with #. Solution: Allow the right shift when 'cino' contains #N with N > 0. (Christian Brabandt) Refactor parsing 'cino', store the values in the buffer.
* updated for version 7.3.1199v7.3.1199Bram Moolenaar2013-06-151-9/+36
| | | | | | | Problem: When evaluating 'foldexpr' causes an error this is silently ignored and evaluation is retried every time. Solution: Set emsg_silent instead of emsg_off. Stop evaluating 'foldexpr' is it is causing errors. (Christian Brabandt)
* updated for version 7.3.641v7.3.641Bram Moolenaar2012-08-291-2/+2
| | | | | Problem: ":mkview" uses ":normal" instead of ":normal!" for folds. (Dan) Solution: Add the bang. (Christian Brabandt)
* updated for version 7.3.629v7.3.629Bram Moolenaar2012-08-081-1/+1
| | | | | | Problem: There is no way to make 'shiftwidth' follow 'tabstop'. Solution: When 'shiftwidth' is zero use the value of 'tabstop'. (Christian Brabandt)
* updated for version 7.3.462v7.3.462Bram Moolenaar2012-02-291-11/+47
| | | | | Problem: When using ":loadview" folds may be closed unexpectedly. Solution: Take into account foldlevel. (Xavier de Gaye)
* updated for version 7.3.400v7.3.400Bram Moolenaar2012-01-101-3/+3
| | | | | Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
* updated for version 7.3.286v7.3.286Bram Moolenaar2011-08-261-3/+6
| | | | | | Problem: Crash when using "zd" on a large number of folds. (Sam King) Solution: Recompute pointer after reallocating array. Move fewer entries when making room.
* Fix compiler warnings for shadowed variables. Make 'conceal' a long insteadBram Moolenaar2010-06-221-7/+7
| | | | of int.
* updated for version 7.2.397v7.2.397Bram Moolenaar2010-03-171-9/+8
| | | | | Problem: Redundant check for w_lines_valid. Solution: Remove the if. (Lech Lorens)
* updated for version 7.2.370v7.2.370Bram Moolenaar2010-02-241-6/+0
| | | | | Problem: A redraw may cause folds to be closed. Solution: Revert part of the previous patch. Add a test. (Lech Lorens)
* updated for version 7.2.356v7.2.356Bram Moolenaar2010-02-031-1/+7
| | | | | | Problem: When 'foldmethod' is changed not all folds are closed as expected. Solution: In foldUpdate() correct the start position and reset fd_flags when w_foldinvalid is set. (Lech Lorens)
* updated for version 7.2.340v7.2.340Bram Moolenaar2010-01-191-2/+2
| | | | | Problem: Gcc warning for condition that can never be true. (James Vega) Solution: Use start_lvl instead flp->lvl.
* updated for version 7.2-282v7.2.282Bram Moolenaar2009-11-031-0/+2
|
* updated for version 7.2-278v7.2.278Bram Moolenaar2009-11-031-3/+3
|
* updated for version 7.2-274v7.2.274Bram Moolenaar2009-11-031-0/+34
|
* updated for version 7.2-261v7.2.261Bram Moolenaar2009-09-181-4/+8
|
* updated for version 7.2-078v7.2.078Bram Moolenaar2009-01-061-6/+12
|
* updated for version 7.2-055v7.2.055Bram Moolenaar2008-11-281-4/+4
|
* updated for version 7.2c-000v7.2c.000Bram Moolenaar2008-08-061-1/+1
|
* updated for version 7.2av7.2aBram Moolenaar2008-06-241-1/+1
|
* updated for version 7.1-267v7.1.267Bram Moolenaar2008-03-061-1/+1
|
* updated for version 7.1-228v7.1.228Bram Moolenaar2008-01-131-0/+1
|
* updated for version 7.1-139v7.1.139Bram Moolenaar2007-10-141-0/+7
|
* updated for version 7.1bBram Moolenaar2007-05-101-4/+4
|
* updated for version 7.0-154v7.0.154Bram Moolenaar2006-11-011-0/+4
|
* updated for version 7.0e06v7.0e06Bram Moolenaar2006-04-221-1/+2
|
* updated for version 7.0e01v7.0e01Bram Moolenaar2006-04-171-5/+5
|
* updated for version 7.0204v7.0204Bram Moolenaar2006-02-221-1/+1
|
* updated for version 7.0191v7.0191Bram Moolenaar2006-02-011-1/+1
|
* updated for version 7.0183v7.0183Bram Moolenaar2006-01-201-1/+2
|
* updated for version 7.0127v7.0127Bram Moolenaar2005-08-101-1/+1
|
* updated for version 7.0109v7.0109Bram Moolenaar2005-07-181-4/+1
|
* updated for version 7.0027Bram Moolenaar2004-12-311-7/+17
|
* updated for version 7.0025v7.0025Bram Moolenaar2004-12-271-10/+0
|
* updated for version 7.0023v7.0023Bram Moolenaar2004-12-191-6/+1
|
* updated for version 7.0021v7.0021Bram Moolenaar2004-12-091-1/+3
|
* updated for version 7.0020Bram Moolenaar2004-10-241-1/+2
|
* updated for version 7.0018v7.0018Bram Moolenaar2004-10-111-0/+87
|