summaryrefslogtreecommitdiff
path: root/src/textprop.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.0252: cursor in wrong place after virtual textv9.0.0252Bram Moolenaar2022-08-241-1/+2
* patch 9.0.0247: cannot add padding to virtual text without highlightv9.0.0247Bram Moolenaar2022-08-231-2/+108
* patch 9.0.0233: removing multiple text properties takes many callsv9.0.0233Ben Jackson2022-08-201-10/+65
* patch 9.0.0214: splitting a line may duplicate virtual textv9.0.0214Bram Moolenaar2022-08-151-0/+9
* patch 9.0.0206: redraw flags are not named specificallyv9.0.0206Bram Moolenaar2022-08-141-4/+4
* patch 9.0.0205: cursor in wrong position when inserting after virtual textv9.0.0205Bram Moolenaar2022-08-141-1/+3
* patch 9.0.0200: cursor wrong if 'nowrap' and two right aligned text propsv9.0.0200Bram Moolenaar2022-08-131-2/+15
* patch 9.0.0194: cursor displayed in wrong position after removing text propv9.0.0194Bram Moolenaar2022-08-121-0/+2
* patch 9.0.0188: strange effects when using "text_align" with non-zero columnv9.0.0188Bram Moolenaar2022-08-101-0/+5
* patch 9.0.0172: trying to allocate zero bytesv9.0.0172Bram Moolenaar2022-08-081-1/+1
* patch 9.0.0169: insufficient testing for line2byte() with text propertiesv9.0.0169Bram Moolenaar2022-08-081-4/+0
* patch 9.0.0167: checking for text properties could be a bit more efficientv9.0.0167Bram Moolenaar2022-08-071-6/+3
* patch 9.0.0165: looking up a text property type by ID is slowv9.0.0165Bram Moolenaar2022-08-071-35/+81
* patch 9.0.0154: text properties wrong after splitting a linev9.0.0154Bram Moolenaar2022-08-061-10/+18
* patch 9.0.0151: a "below" aligned text property does not work with 'nowrap'v9.0.0151Bram Moolenaar2022-08-061-0/+23
* patch 9.0.0145: substitute that joins lines drops text propertiesv9.0.0145Bram Moolenaar2022-08-051-1/+23
* patch 9.0.0144: text property cannot override 'cursorline' highlightv9.0.0144Bram Moolenaar2022-08-051-2/+12
* patch 9.0.0133: virtual text after line moves to joined linev9.0.0133Bram Moolenaar2022-08-011-10/+15
* patch 9.0.0131: virtual text with Tab is not displayed correctlyv9.0.0131Bram Moolenaar2022-08-011-1/+7
* patch 9.0.0121: cannot put virtual text after or below a linev9.0.0121Bram Moolenaar2022-07-311-22/+76
* patch 9.0.0117: text of removed textprop with text is not freedv9.0.0117Bram Moolenaar2022-07-301-3/+30
* patch 9.0.0067: cannot show virtual textv9.0.0067Bram Moolenaar2022-07-251-22/+80
* patch 9.0.0063: too many type casts for dict_get functionsv9.0.0063Bram Moolenaar2022-07-231-16/+16
* patch 9.0.0013: reproducing memory access errors can be difficultv9.0.0013Bram Moolenaar2022-06-301-4/+13
* patch 8.2.5107: some callers of rettv_list_alloc() check for not OKv8.2.5107Bram Moolenaar2022-06-161-1/+1
* patch 8.2.5014: byte offsets are wrong when using text propertiesv8.2.5014Paul Ollis2022-05-241-2/+9
* patch 8.2.4954: inserting line breaks text property spanning two linesv8.2.4954LemonBoy2022-05-141-4/+5
* patch 8.2.4787: prop_find() does not find the right propertyv8.2.4787LemonBoy2022-04-181-13/+17
* patch 8.2.4683: verbose check with dict_find() to see if a key is presentv8.2.4683Yegappan Lakshmanan2022-04-041-11/+11
* patch 8.2.4012: error messages are spread outv8.2.4012Bram Moolenaar2022-01-051-9/+7
* patch 8.2.4010: error messages are spread outv8.2.4010Bram Moolenaar2022-01-051-2/+2
* patch 8.2.3977: error messages are spread outv8.2.3977Bram Moolenaar2022-01-011-1/+1
* patch 8.2.3967: error messages are spread outv8.2.3967Bram Moolenaar2022-01-011-10/+10
* patch 8.2.3961: error messages are spread outv8.2.3961Bram Moolenaar2021-12-311-9/+9
* patch 8.2.3916: no error for passing an invalid line number to append()v8.2.3916Bram Moolenaar2021-12-271-6/+4
* patch 8.2.3652: can only get text properties one line at a timev8.2.3652Yegappan Lakshmanan2021-11-231-25/+232
* patch 8.2.3356: adding many text properties requires a lot of function callsv8.2.3356Yegappan Lakshmanan2021-08-161-76/+171
* patch 8.2.3272: cannot use id zero with prop_find()v8.2.3272Bram Moolenaar2021-08-011-1/+1
* patch 8.2.3270: prop_find() finds property with ID -2v8.2.3270Bram Moolenaar2021-08-011-6/+7
* patch 8.2.3257: calling prop_find() with -1 for ID gives errornous errorv8.2.3257Bram Moolenaar2021-07-311-0/+4
* patch 8.2.3233: prop_list() and prop_find() do not indicate the bufferv8.2.3233Martin Tournoij2021-07-281-3/+16
* patch 8.2.3229: Vim9: runtime and compile time type checks are not the samev8.2.3229Yegappan Lakshmanan2021-07-271-1/+25
* patch 8.2.3188: Vim9: argument types are not checked at compile timev8.2.3188Yegappan Lakshmanan2021-07-201-4/+26
* patch 8.2.3162: Vim9: argument types are not checked at compile timev8.2.3162Yegappan Lakshmanan2021-07-151-1/+8
* patch 8.2.3135: Vim9: builtin function arguments not checked at compile timev8.2.3135Yegappan Lakshmanan2021-07-101-1/+1
* patch 8.2.3069: error messages are spread outv8.2.3069Bram Moolenaar2021-06-271-4/+4
* patch 8.2.2863: removing a text property does not redraw optimallyv8.2.2863Bram Moolenaar2021-05-171-8/+8
* patch 8.2.2862: removing a text property causes the whole window to be redawnv8.2.2862Bram Moolenaar2021-05-171-1/+9
* patch 8.2.2860: adding a text property causes the whole window to be redawnv8.2.2860Bram Moolenaar2021-05-161-1/+2
* patch 8.2.2667: prop_find() cannot find item matching both id and typev8.2.2667Bram Moolenaar2021-03-271-1/+9