Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Use forward-line instead of next-line
  • Loading branch information
zonuexe committed Dec 5, 2017
commit 45fcae5910acf91c9f8d93053e482a804d5e3c9d
2 changes: 1 addition & 1 deletion phpunit.el
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
(goto-char (point-min))
(search-forward "Available test group")
(move-beginning-of-line 1)
(next-line)
(forward-line)
(cl-loop
for line in (s-split "\n" (buffer-substring-no-properties (point) (point-max)))
if (s-starts-with? " - " line)
Expand Down