summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-05-26 20:10:06 +0200
committerBram Moolenaar <Bram@vim.org>2019-05-26 20:10:06 +0200
commit51fe3b14f63da2b985bcd7b4c50fbe34ae84ea48 (patch)
tree9dc360f92eda48d982526415ba89385023d12f36 /runtime
parent076073950c44ea0e35bc39d539dc7ab41bf9c7ec (diff)
patch 8.1.1402: "timer" option of popup windows not supportedv8.1.1402
Problem: "timer" option of popup windows not supported. Solution: Implement the "timer" option. (Yasuhiro Matsumoto, closes #4439)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/popup.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/doc/popup.txt b/runtime/doc/popup.txt
index 8d3619acf7..af51885e4e 100644
--- a/runtime/doc/popup.txt
+++ b/runtime/doc/popup.txt
@@ -142,7 +142,7 @@ popup_notification({text}, {options}) *popup_notification()*
\ 'tab': -1,
\ 'zindex': 200,
\ 'highlight': 'WarningMsg',
- \ 'border: [],
+ \ 'border': [],
\ })
< Use {options} to change the properties.
@@ -339,7 +339,6 @@ The second argument of |popup_create()| is a dictionary with options:
zindex priority for the popup, default 50
time time in milliseconds after which the popup will close;
when omitted |popup_close()| must be used.
- {not implemented yet}
moved "cell": close the popup if the cursor moved at least
one screen cell; "word" allows for moving within
|<cword>|, "WORD" allows for moving within |<cWORD>|,