-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Runtime: Fix typo in doc #17890
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Runtime: Fix typo in doc #17890
Conversation
M runtime/doc/builtin.txt
|
Why is this a typo? |
|
Does |
|
Hmm, I may have tested this incorrectly. |
I also wondered why this was required. But it needs to be escaped because of Thanks, I include it. |
|
Thanks! |
The '?' needs to be escaped, because the autocommand is using file-patterns (glob like) and not a regex). See :h file-pattern closes: vim/vim#17890 vim/vim@f7deb81 Co-authored-by: Girish Palya <girishji@gmail.com>
The '?' needs to be escaped, because the autocommand is using file-patterns (glob like) and not a regex). See :h file-pattern closes: vim/vim#17890 vim/vim@f7deb81 Co-authored-by: Girish Palya <girishji@gmail.com>
The '?' needs to be escaped, because the autocommand is using file-patterns (glob like) and not a regex). See :h file-pattern closes: vim#17890 Signed-off-by: Girish Palya <girishji@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
The '?' needs to be escaped, because the autocommand is using file-patterns (glob like) and not a regex). See :h file-pattern closes: vim/vim#17890 vim/vim@f7deb81 Co-authored-by: Girish Palya <girishji@gmail.com>
Fix typo.