Hi Bram and list,
I attached a patch to fix typo in the document.
Check it out please.
--
Best regards,
Hirohito Higashi (h_east)
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/693ee4ee-ba8a-40db-8c53-1624dae50028%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 549d27ba9..44a2fd836 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -11637,7 +11637,7 @@ text...
< This is useful if you want to make sure the variable
is not modified.
*E995*
- |:const| does not allow to for changing a variable. >
+ |:const| does not allow to for changing a variable: >
:let x = 1
:const x = 2 " Error!
< *E996*
diff --git a/runtime/doc/popup.txt b/runtime/doc/popup.txt
index 51b284904..e543c6700 100644
--- a/runtime/doc/popup.txt
+++ b/runtime/doc/popup.txt
@@ -123,7 +123,7 @@ Creating a popup window:
|popup_create()| centered in the screen
|popup_atcursor()| just above the cursor position, closes when
the cursor moves away
- |popup_notifiation()| show a notification for three seconds
+ |popup_notification()| show a notification for three seconds
|popup_dialog()| centered with padding and border
|popup_menu()| prompt for selecting an item from a list
@@ -216,7 +216,7 @@ popup_dialog({text}, {options}) *popup_dialog()*
popup_filter_menu({id}, {key}) *popup_filter_menu()*
Filter that can be used for a popup. These keys can be used:
- j <Down> select item below
+ j <Down> select item below
k <Up> select item above
<Space> <Enter> accept current selection
x Esc CTRL-C cancel the menu
@@ -390,7 +390,7 @@ manipulation is restricted:
- 'bufhidden' is "hide"
- 'buflisted' is off
- 'undolevels' is -1: no undo at all
-- all other buffer-local and window_local options are set to their Vim default
+- all other buffer-local and window-local options are set to their Vim default
value.
It is possible to change the specifically mentioned options, but anything
@@ -515,8 +515,8 @@ The second argument of |popup_create()| is a dictionary with options:
When the list has two characters the first is used for
the border lines, the second for the corners.
By default a double line is used all around when
- 'encoding' is "utf-8", otherwise ASCII characters are
- used.
+ 'encoding' is "utf-8" and 'ambiwidth' is "single",
+ otherwise ASCII characters are used.
zindex Priority for the popup, default 50. Minimum value is
1, maximum value is 32000.
time Time in milliseconds after which the popup will close.