summaryrefslogtreecommitdiffstats
path: root/runtime/doc/popup.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-16 22:35:02 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-16 22:35:02 +0200
commit2e693a88b24dc6b12883fad78ff2cb9cd4469c98 (patch)
tree51532c78977a6ef8307d2c290a5627d7fc32753c /runtime/doc/popup.txt
parent4f2f61a014e80217a2d6ac476c8f94e250a3d0ff (diff)
Update runtime files.
Diffstat (limited to 'runtime/doc/popup.txt')
-rw-r--r--runtime/doc/popup.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/doc/popup.txt b/runtime/doc/popup.txt
index 04fa0a6786..a438ce64e9 100644
--- a/runtime/doc/popup.txt
+++ b/runtime/doc/popup.txt
@@ -361,7 +361,7 @@ popup_getpos({id}) *popup_getpos()*
core_width width of the text box in screen cells
core_height height of the text box in screen cells
firstline line of the buffer at top (1 unless scrolled)
- (not the value of the "firstline" property)
+ (not the value of the "firstline" property)
scrollbar non-zero if a scrollbar is displayed
visible one if the popup is displayed, zero if hidden
Note that these are the actual screen positions. They differ
@@ -744,22 +744,22 @@ is inserted or deleted. The popup functions like a tooltip.
These steps are needed to make this work:
- Define a text property type, it defines the name. >
- call prop_type_add('popupMarker', {})
+ call prop_type_add('popupMarker', {})
- Place a text property at the desired text: >
let lnum = {line of the text}
let col = {start column of the text}
let len = {length of the text}
let propId = {arbitrary but unique number}
- call prop_add(lnum, col, #{
+ call prop_add(lnum, col, #{
\ length: len,
\ type: 'popupMarker',
\ id: propId,
\ })
- Create a popup: >
- let winid = popup_create('the text', #{
- \ pos: 'botleft',
+ let winid = popup_create('the text', #{
+ \ pos: 'botleft',
\ textprop: 'popupMarker',
\ textpropid: propId,
\ border: [],
@@ -799,7 +799,7 @@ Some hints:
a click, as in the example above, helps for that.
- If the text property is removed the popup is closed. Use something like
this: >
- call prop_remove(#{type: 'popupMarker', id: propId})
+ call prop_remove(#{type: 'popupMarker', id: propId})
POPUP FILTER *popup-filter*