Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | patch 9.0.0438: cannot put virtual text above a linev9.0.0438 | Bram Moolenaar | 2022-09-10 | 1 | -1/+0 |
| | | | | | Problem: Cannot put virtual text above a line. Solution: Add the "above" value for "text_align". | ||||
* | patch 9.0.0179: cursor pos wrong with wrapping virtual text in empty linev9.0.0179 | Bram Moolenaar | 2022-08-09 | 1 | -0/+1 |
| | | | | | Problem: Cursor position wrong with wrapping virtual text in empty line. Solution: Adjust handling of an empty line. (closes #10875) | ||||
* | patch 9.0.0139: truncating virtual text after a line not implementedv9.0.0139 | Bram Moolenaar | 2022-08-04 | 1 | -0/+1 |
| | | | | | | | Problem: Truncating virtual text after a line not implemented. Cursor positioning wrong with Newline in the text. Solution: Implement truncating. Disallow control characters in the text. (closes #10842) | ||||
* | patch 9.0.0138: not enough characters accepted for 'spellfile'v9.0.0138 | Bram Moolenaar | 2022-08-04 | 1 | -0/+1 |
| | | | | | Problem: Not enough characters accepted for 'spellfile'. Solution: Add vim_is_fname_char() and use it for 'spellfile'. | ||||
* | patch 9.0.0067: cannot show virtual textv9.0.0067 | Bram Moolenaar | 2022-07-25 | 1 | -4/+6 |
| | | | | | Problem: Cannot show virtual text. Solution: Initial changes for virtual text support, using text properties. | ||||
* | patch 8.2.4418: crash when using special multi-byte characterv8.2.4418 | Bram Moolenaar | 2022-02-19 | 1 | -1/+1 |
| | | | | | Problem: Crash when using special multi-byte character. Solution: Don't use isalpha() for an arbitrary character. | ||||
* | patch 8.2.3815: Vim9: cannot have a multi-line dict inside a blockv8.2.3815 | Bram Moolenaar | 2021-12-15 | 1 | -0/+1 |
| | | | | | | Problem: Vim9: cannot have a multi-line dict inside a block. Solution: Do not split the command at a line break, handle NL characters as white space. | ||||
* | patch 8.2.3694: cannot use quotes in the count of an Ex commandv8.2.3694 | Bram Moolenaar | 2021-11-29 | 1 | -0/+1 |
| | | | | | | Problem: Cannot use quotes in the count of an Ex command. Solution: Add getdigits_quoted(). Give an error when misplacing a quote in a range. (closes #9240) | ||||
* | patch 8.2.2728: special key names don't work if 'isident' is clearedv8.2.2728 | Bram Moolenaar | 2021-04-06 | 1 | -0/+1 |
| | | | | | | Problem: Special key names don't work if 'isident' is cleared. Solution: Add vim_isNormalIDc() and use it for special key names. (closes #2389) | ||||
* | patch 8.2.0943: displaying ^M or ^J depends on current bufferv8.2.0943 | Bram Moolenaar | 2020-06-10 | 1 | -1/+2 |
| | | | | | Problem: Displaying ^M or ^J depends on current buffer. Solution: Pass the displayed buffer to transchar(). (closes #6225) | ||||
* | patch 8.1.1891: functions used in one file are globalv8.1.1891 | Bram Moolenaar | 2019-08-20 | 1 | -1/+0 |
| | | | | | Problem: Functions used in one file are global. Solution: Add "static". (Yegappan Lakshmanan, closes #4840) | ||||
* | patch 8.1.1355: obvious mistakes are accepted as valid expressionsv8.1.1355 | Bram Moolenaar | 2019-05-19 | 1 | -1/+1 |
| | | | | | | Problem: Obvious mistakes are accepted as valid expressions. Solution: Be more strict about parsing numbers. (Yasuhiro Matsumoto, closes #3981) | ||||
* | patch 8.0.1041: bogus characters when indenting during visual-block appendv8.0.1041 | Bram Moolenaar | 2017-09-02 | 1 | -0/+2 |
| | | | | | | Problem: Bogus characters appear when indenting kicks in while doing a visual-block append. Solution: Recompute when indenting is done. (Christian Brabandt) | ||||
* | patch 7.4.1976v7.4.1976 | Bram Moolenaar | 2016-07-01 | 1 | -1/+1 |
| | | | | | Problem: Number variables are not 64 bits while they could be. Solution: Add the num64 feature. (Ken Takata) | ||||
* | patch 7.4.1133v7.4.1133 | Bram Moolenaar | 2016-01-19 | 1 | -60/+60 |
| | | | | | Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS(). | ||||
* | patch 7.4.1027v7.4.1027 | Bram Moolenaar | 2016-01-02 | 1 | -1/+4 |
| | | | | | Problem: No support for binary numbers. Solution: Add "bin" to nrformats. (Jason Schulz) | ||||
* | patch 7.4.782v7.4.782 | Bram Moolenaar | 2015-07-17 | 1 | -1/+1 |
| | | | | | Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode. Solution: Fix the reported problems. (Christian Brabandt) | ||||
* | updated for version 7.4.338v7.4.338 | Bram Moolenaar | 2014-06-25 | 1 | -4/+4 |
| | | | | | | Problem: Cannot wrap lines taking indent into account. Solution: Add the 'breakindent' option. (many authors, final improvements by Christian Brabandt) | ||||
* | updated for version 7.3.776v7.3.776 | Bram Moolenaar | 2013-01-23 | 1 | -1/+2 |
| | | | | | Problem: ml_get error when searching, caused by curwin not matching curbuf. Solution: Avoid changing curbuf. (Lech Lorens) | ||||
* | Added strdisplaywidth() function. | Bram Moolenaar | 2010-07-18 | 1 | -0/+1 |
| | |||||
* | updated for version 7.2c-000v7.2c.000 | Bram Moolenaar | 2008-08-06 | 1 | -5/+5 |
| | |||||
* | updated for version 7.1-084v7.1.084 | Bram Moolenaar | 2007-08-21 | 1 | -0/+1 |
| | |||||
* | updated for version 7.1a | Bram Moolenaar | 2007-05-05 | 1 | -54/+54 |
| | |||||
* | updated for version 7.0gv7.0g | Bram Moolenaar | 2006-04-30 | 1 | -54/+54 |
| | |||||
* | updated for version 7.0f02v7.0f02 | Bram Moolenaar | 2006-04-27 | 1 | -54/+54 |
| | |||||
* | updated for version 7.0b | Bram Moolenaar | 2006-03-24 | 1 | -54/+54 |
| | |||||
* | updated for version 7.0135 | Bram Moolenaar | 2005-08-23 | 1 | -0/+4 |
| | |||||
* | updated for version 7.0081 | Bram Moolenaar | 2005-06-06 | 1 | -7/+0 |
| | |||||
* | updated for version 7.0079 | Bram Moolenaar | 2005-06-04 | 1 | -0/+1 |
| | |||||
* | updated for version 7.0077 | Bram Moolenaar | 2005-05-31 | 1 | -0/+2 |
| | |||||
* | updated for version 7.0070 | Bram Moolenaar | 2005-04-23 | 1 | -0/+5 |
| | |||||
* | updated for version 7.0063 | Bram Moolenaar | 2005-03-22 | 1 | -0/+2 |
| | |||||
* | updated for version 7.0044 | Bram Moolenaar | 2005-01-25 | 1 | -1/+1 |
| | |||||
* | updated for version 7.0001v7.0001 | Bram Moolenaar | 2004-06-13 | 1 | -0/+49 |