Is there a way in Sublime Text to display find results in a panel at the bottom of the current window?

21,572

Solution 1

I had the same question as you and solved it with anazimok's comment in the link below.

https://stackoverflow.com/questions/15929527/search-results-panel-for-sublimetext-2:

You could use Find All and then Cmd+F2 to set bookmarks.

The Find Result Panel is for Find In Files. Cmd+Shift+F uncheck "Use Buffer" option and you would see the Find Result Panel.

Solution 2

I'm having the same problem with Sublime.

Ctrl + F will only display one result at a time, and you need to hit enter to get the next result

Combination of Ctrl + Shift + F is the right answer.

A new tab will open with the all search result just like notepad++

Share:
21,572

Related videos on Youtube

Captain Lepton
Author by

Captain Lepton

Updated on September 18, 2022

Comments

  • Captain Lepton
    Captain Lepton over 1 year

    This is a highly useful feature in other editors eg. Eclipse and Notepad++

    You get to see the list of find results printed as all the containing lines with their lines in the buffer, which gives you some context, and shows you how the results are grouped by file and line number.

    Another absolute killer feature would be "find all in current file".

    Eclipse example: Example Eclipse view of search in current file with results in a panel at the bottom. (c) Avi Silver 2014

    Notepad+ Example: Example Notepad++ view of search in current file with results in a panel at the bottom. (c) Avi Silver 2014

  • fixer1234
    fixer1234 over 9 years
    Link only answers are discouraged because if the link disappears or is unavailable, your answer would have no value. On these kinds of answers, please post a synopsis of the key points and add the link for further reference. In this case, that answer was a single sentence. I'll go ahead and add it to your answer.
  • John Siu
    John Siu about 9 years
    The question have nothing to do with the "build" tool.
  • Felix Bayer
    Felix Bayer over 8 years
    Just had exactly the same issue finding the "find all results pane" available only for "find in files". Saved my day. ;) Anyway its pretty confusing to not get a list when hitting the Find all button but using CTRL+F restricting to <current file> in Where serves pretty much the wanted output.
  • Felix Bayer
    Felix Bayer over 8 years
    CTRL+SHIFT+F of course, sorry
  • buzz3791
    buzz3791 almost 7 years
    Note when using the "Find in Files" approach, clicking the ... (ellipse) button next to the "Where" field allows you to "Add current file". Thanks to elecjack for the idea: stackoverflow.com/a/42127720/110126