Skip to content

Commit

Permalink
Add accidentally removed inline tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
phikal committed Jul 30, 2020
1 parent b931b8b commit f5c2503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dumb-jump.el
Original file line number Diff line number Diff line change
Expand Up @@ -794,15 +794,15 @@ or most optimal searcher."
:tests ("function test()" "function test ()"))

(:type "function" :supports ("ag" "grep" "rg" "git-grep") :language "php"
:regex "\\*\\s@method\\s+[^ ]+\\s+JJJ\\("
:regex "\\*\\s@method\\s+[^ \t]+\\s+JJJ\\("
:tests ("/** @method string|false test($a)" " * @method bool test()"))

(:type "variable" :supports ("ag" "grep" "rg" "git-grep") :language "php"
:regex "(\\s|->|\\$|::)JJJ\\s*=\\s*"
:tests ("$test = 1234" "$foo->test = 1234"))

(:type "variable" :supports ("ag" "grep" "rg" "git-grep") :language "php"
:regex "\\*\\s@property(-read|-write)?\\s+([^ ]+\\s+)&?\\$JJJ(\\s+|$)"
:regex "\\*\\s@property(-read|-write)?\\s+([^ \t]+\\s+)&?\\$JJJ(\\s+|$)"
:tests ("/** @property string $test" "/** @property string $test description for $test property" " * @property-read bool|bool $test" " * @property-write \\ArrayObject<string,resource[]> $test"))
(:type "trait" :supports ("ag" "grep" "rg" "git-grep") :language "php"
:regex "trait\\s*JJJ\\s*\\\{"
Expand Down

0 comments on commit f5c2503

Please sign in to comment.