Skip to content

Patch from @mexpolk to fix doc file to be able to call pathogen#helptags() #3

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/dbext.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2985,12 +2985,12 @@ To specify the type of database you connect to most often, you can place the
a file somewhere under a directory called MyProjectDir. If so, it sets
dbext's current variable_def_regex for this buffer. This |autocmd| can be
added to your |.vimrc|: >
autocmd BufRead */MyProjectDir/* DBSetOption variable_def_regex=\<\(p_\|lv_\)\w\+\>
autocmd BufRead /MyProjectDir/ DBSetOption variable_def_regex=\<\(p_\|lv_\)\w\+\>
<
Or if you simply wanted to extended the existing defaults, you can
retrieve the existing setting using dbext's DB_listOption function and
concatenate the new regex separated by a comma: >
autocmd BufRead */MyProjectDir/* DBSetOption variable_def_regex=,\<\(p_\|lv_\)\w\+\>
autocmd BufRead /MyProjectDir/ DBSetOption variable_def_regex=,\<\(p_\|lv_\)\w\+\>
<


Expand Down