How to navigate between instances of selected text in Sublime Text 3?

后端 未结 4 2213
自闭症患者
自闭症患者 2020-12-29 07:08

Sublime Text 3 highlights all instances of currently selected text. Is there any shortcut to navigate cursor to the next / previous instance (copy) of selected text?

4条回答
  •  爱一瞬间的悲伤
    2020-12-29 07:53

    Yes, all you need to do is edit your key bindings (Sublime Text -> Preferences -> Key Bindings User) for "find_under". Copy & paste this into your bindings and set your keys (defaults are "alt+super+g" and shift+alt+super+g)

    { "keys": ["alt+super+g"], "command": "find_under" },
    { "keys": ["shift+alt+super+g"], "command": "find_under_prev" },
    

提交回复
热议问题