ui: Don't truncate search output when inside Emacs.
* guix/ui.scm (display-search-results): Loop over all results when INSIDE_EMACS is set.
This commit is contained in:
parent
672d3d4a87
commit
9b7f9e6f9b
@ -1473,7 +1473,8 @@ them. If PORT is a terminal, print at most a full screen of results."
|
||||
#:hyperlinks? links?
|
||||
#:extra-fields
|
||||
`((relevance . ,score)))))))
|
||||
(if (and max-rows
|
||||
(if (and (not (getenv "INSIDE_EMACS"))
|
||||
max-rows
|
||||
(> (port-line port) first-line) ;print at least one result
|
||||
(> (+ 4 (line-count text) (port-line port))
|
||||
max-rows))
|
||||
|
Loading…
x
Reference in New Issue
Block a user