Hi Bram,
2016-3-14(Mon) 18:28:44 UTC+9 h_east:
> Hi Bram and list,
>
> Sometimes tag-jump failed in the help.
> Because, the help's 'iskeyword' option contains `(`.
>
> Failed case #1:
> :h E29
> /textwidth
> <C-]>
>
> E149: Sorry, no help for ('textwidth'
>
>
> Failed case #2:
> :h viminfo-%
> /buflisted
> <C-]>
>
> E149: Sorry, no help for ('buflisted'),
>
>
> I wrote a patch.
> When tag starts `('` skip `(` at ":help".
> It is very useful :-)
> Please include an attached patch.
If you include the above patch, please include this patch too.
(Workaround inserted space is deleted)
thanks
--
Best regards,
Hirohito Higashi (a.k.a. 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].
For more options, visit https://groups.google.com/d/optout.
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 26a7b3a..7a1d2f9 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1002,7 +1002,7 @@ A jump table for the options with a short description can be found at |Q_op|.
- The backup file will be created in the first directory in the list
where this is possible. The directory must exist, Vim will not
create it for you.
- - Empty means that no backup file will be created ( 'patchmode' is
+ - Empty means that no backup file will be created ('patchmode' is
impossible!). Writing may fail because of this.
- A directory "." means to put the backup file in the same directory
as the edited file.
@@ -1836,7 +1836,7 @@ A jump table for the options with a short description can be found at |Q_op|.
when CTRL-P or CTRL-N are used. It is also used for whole-line
completion |i_CTRL-X_CTRL-L|. It indicates the type of completion
and the places to scan. It is a comma separated list of flags:
- . scan the current buffer ( 'wrapscan' is ignored)
+ . scan the current buffer ('wrapscan' is ignored)
w scan buffers from other windows
b scan other loaded buffers that are in the buffer list
u scan the unloaded buffers that are in the buffer list
@@ -7536,7 +7536,7 @@ A jump table for the options with a short description can be found at |Q_op|.
{not in Vi}
Encoding used for the terminal. This specifies what character
encoding the keyboard produces and the display will understand. For
- the GUI it only applies to the keyboard ( 'encoding' is used for the
+ the GUI it only applies to the keyboard ('encoding' is used for the
display). Except for the Mac when 'macatsui' is off, then
'termencoding' should be "macroman".
*E617*