sublimetext3 - Vim like jump-to-word in Sublime Text -
i'm not familiar vim, there's particular feature like.
the / search command.
type / , string of text, ex: /text , cursor moved beginning of first occurrence of word.
sublime text has ctrl+; that's not i'm looking for, selects words , doesn't start cursor is.
is there sublime text, either plugin or keybinding missed?
i found package right.
it's on package control , it's called jumpto
use ctrl+e (i rebound ctrl+shift+/ because of emmets ctrl+e binding) start searching. works perfectly.
if want select word wel, use ctrl+shift+e
edit: actually, no it's not same, searches in current line of text. make current cursor position to end of file, source , line
line = self.view.substr(sublime.region(pt, lr.b)) (line 27)
and replace with
line = self.view.substr(sublime.region(pt, self.view.size()))
Comments
Post a Comment