We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df167dc commit b0bec50Copy full SHA for b0bec50
ivy-file-preview.el
@@ -189,7 +189,8 @@ FN is the file path. POS can either be one of the following type:
189
190
(defun ivy-file-preview--after-select (&rest _)
191
"Execution after selection."
192
- (if (or (string-empty-p ivy-text) (ivy-file-preview--no-candidates-p))
+ (if (and ivy-file-preview-details
193
+ (or (string-empty-p ivy-text) (ivy-file-preview--no-candidates-p)))
194
(progn
195
(ivy-file-preview--delete-overlays)
196
(ivy-file-preview--back-to-pos))
0 commit comments