Sublime Text: How to jump to file from Find Results using keyboard?

后端 未结 6 1882
北恋
北恋 2020-12-23 10:50

If you File > Find in Files... ++F you\'re brought to the Find Results, listing the files and highl

6条回答
  •  醉话见心
    2020-12-23 11:19

    on SublimeText 3 I had to use F4(for going to the current result file) and Shift +F4 (for previous result).

    From the default keymap...

    { "keys": ["super+shift+f"], "command": "show_panel", "args": {"panel": "find_in_files"} },
    { "keys": ["f4"], "command": "next_result" },
    { "keys": ["shift+f4"], "command": "prev_result" },
    

    I hope this post helps.

    SP

提交回复
热议问题