| /vim-8.2.3635/src/testdir/ |
| H A D | test_popupwin_textprop.vim | 5 CheckFeature textprop 25 \ textprop: 'popupMarker', 72 \ textprop: 'popupMarker', 78 \ textprop: 'popupMarker', 84 \ textprop: 'popupMarker', 90 \ textprop: 'popupMarker', 135 \ textprop: 'popupMarker', 142 \ textprop: 'popupMarker', 150 \ textprop: 'popupMarker', 158 \ textprop: 'popupMarker',
|
| H A D | test_popupwin.vim | 833 call prop_type_add('textprop', {}) 836 let opts = popup_create('', #{textprop: 'textprop'}) 844 call prop_type_delete('textprop') 3915 call prop_type_add('textprop', {}) 3917 let id = popup_create('TEST', #{textprop: 'textprop', highlight: 'ErrorMsg', tabpage: 1}) 3924 call prop_type_delete('textprop') 3934 let id = popup_create('TEST', #{textprop: 'textprop'}) 3936 call popup_setoptions(id, #{textprop: 'textprop', textpropwin: winid}) 3942 call prop_type_delete('textprop') 3956 textprop: 'someprop', [all …]
|
| H A D | test_textprop.vim | 5 CheckFeature textprop 1033 " screenshot test with textprop highlighting 1563 call popup_create('popup', {'textprop': 'testprop'})
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | popup.txt | 20 Position popup with textprop |popup-textprop-pos| 384 "textprop", "textpropid" and "textpropwin" are only present 385 when "textprop" was set. 609 When using "textprop" the number is relative to the 616 When using "textprop" the number is relative to the 629 textprop When present the popup is positioned next to a text 632 |popup-textprop-pos|. 635 when "textprop" is present. 636 textpropid Used to identify the text property when "textprop" is 810 POSITION POPUP WITH TEXTPROP *popup-textprop-pos* [all …]
|
| H A D | Makefile | 110 textprop.txt \ 254 textprop.html \
|
| H A D | textprop.txt | 1 *textprop.txt* For Vim version 8.2. Last change: 2021 Aug 16 7 Displaying text with properties attached. *textprop* *text-properties* 15 {not able to use text properties when the |+textprop| feature was
|
| H A D | tags | 1408 +textprop various.txt /*+textprop* 4163 E275 textprop.txt /*E275* 4780 E860 textprop.txt /*E860* 4894 E964 textprop.txt /*E964* 4895 E965 textprop.txt /*E965* 4896 E966 textprop.txt /*E966* 4897 E967 textprop.txt /*E967* 4898 E968 textprop.txt /*E968* 8569 popup-textprop-pos popup.txt /*popup-textprop-pos* 9803 textprop textprop.txt /*textprop* [all …]
|
| H A D | help.txt | 154 |textprop.txt| Attaching properties to text for highlighting or other
|
| H A D | version8.txt | 29697 Files: src/structs.h, src/textprop.c, src/proto/textprop.pro, 29922 Files: src/structs.h, src/textprop.c, src/proto/textprop.pro, 30013 Files: src/ex_cmds.c, src/textprop.c, src/proto/textprop.pro, 30031 Files: src/textprop.c 33688 Files: src/textprop.c 34151 Files: src/ops.c, src/textprop.c, src/proto/textprop.pro, 34265 src/textprop.c, src/proto/textprop.pro, src/change.c, src/edit.c, 34592 Files: src/textprop.c, src/proto/textprop.pro, src/popupwin.c, 38012 Files: runtime/doc/popup.txt, src/textprop.c, src/proto/textprop.pro, 43338 Files: src/textprop.c, runtime/doc/textprop.txt, [all …]
|
| H A D | various.txt | 471 N *+textprop* |text-properties|
|
| H A D | vi_diff.txt | 194 Text properties |textprop.txt|
|
| H A D | options.txt | 1427 {only when compiled with the |+textprop| feature} 1981 {only works when compiled with the |+textprop| feature} 1988 {only works when compiled with the |+textprop| feature} 2002 {not available when compiled without the |+textprop| 5852 {not available when compiled without the |+textprop|
|
| H A D | todo.txt | 140 Or Should we let the textprop highlight overrule other (e.g. diff) highlight 151 - See remarks at top of src/textprop.c
|
| H A D | eval.txt | 12472 textprop Compiled with support for |text-properties|.
|
| /vim-8.2.3635/src/ |
| H A D | textprop.c | 1039 static textprop_T textprop; // static because of alignment in f_prop_remove() local 1049 mch_memmove(&textprop, cur_prop, sizeof(textprop_T)); in f_prop_remove() 1050 if (both ? textprop.tp_id == id && textprop.tp_type == type_id in f_prop_remove() 1051 : textprop.tp_id == id || textprop.tp_type == type_id) in f_prop_remove()
|
| H A D | Make_ami.mak | 174 textprop.c \
|
| H A D | Makefile | 1690 textprop.c \ 1843 objects/textprop.o \ 2029 textprop.pro \ 3557 objects/textprop.o: textprop.c 3558 $(CCC) -o $@ textprop.c
|
| H A D | Make_mvc.mak | 830 $(OUTDIR)\textprop.obj \ 1813 $(OUTDIR)/textprop.obj: $(OUTDIR) textprop.c $(INCL) 2029 proto/textprop.pro \
|
| H A D | README.md | 91 textprop.c | text properties
|
| H A D | Make_vms.mms | 405 textprop.c \ 526 textprop.obj \ 1084 textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \
|
| H A D | Make_cyg_ming.mak | 820 $(OUTDIR)/textprop.o \
|
| /vim-8.2.3635/src/proto/ |
| H A D | textprop.pro | 1 /* textprop.c */
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | javascriptcomplete.vim | 272 let textprop = ['accept', 'accessKey', 'align', 'alt', 'defaultValue', 278 let texts = textprop + textmeth
|
| /vim-8.2.3635/ |
| H A D | Filelist | 151 src/textprop.c \ 313 src/proto/textprop.pro \
|