Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS Code find result panel

Is there any way to print search results (Ctrl+Shift+F) to horizontal panel?

Current vertical view is really inconvenient for me as I see only small part of line. Thanks

vscode search results

like image 812
Sergiy Ostrovsky Avatar asked Mar 14 '17 18:03

Sergiy Ostrovsky


1 Answers

Update: see Visual studio code - how to copy search results? The new search editor makes seeing and copying the results much more user-friendly.

And now you can just drag the Search view into the Panel.


v1.21 has helped this problem. See Horizontal panel search

// Preview: controls if the search will be shown as a view in the sidebar or as a panel in the panel area for more horizontal space. Next release search in panel will have improved horizontal layout and this will no longer be a preview.

 "search.location": "panel",

I don't think you can print those results yet but at least the view is much improved. I don't think you meant actually "print" but nevertheless...

EDIT: Functionality added after the original answer:::

You can now right-click anywhere in the search results and select "Copy All" to get all the search results into the clipboard. That context menu has some other options as well.

like image 149
Mark Avatar answered Sep 24 '22 15:09

Mark