本文整理匯總了Python中sublime.CLASS_WORD_END屬性的典型用法代碼示例。如果您正苦於以下問題:Python sublime.CLASS_WORD_END屬性的具體用法?Python sublime.CLASS_WORD_END怎麽用?Python sublime.CLASS_WORD_END使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類sublime
的用法示例。
在下文中一共展示了sublime.CLASS_WORD_END屬性的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: get_name_candidate
# 需要導入模塊: import sublime [as 別名]
# 或者: from sublime import CLASS_WORD_END [as 別名]
def get_name_candidate(view, point):
point_region = view.sel()[0]
if point is not None:
point_region = sublime.Region(point, point)
name = view.substr(point_region).strip()
if not name:
cursor_region = view.expand_by_class(
point_region,
sublime.CLASS_WORD_START
| sublime.CLASS_LINE_START
| sublime.CLASS_PUNCTUATION_START
| sublime.CLASS_WORD_END
| sublime.CLASS_PUNCTUATION_END
| sublime.CLASS_LINE_END,
)
name = view.substr(cursor_region)
return name
示例2: left_word
# 需要導入模塊: import sublime [as 別名]
# 或者: from sublime import CLASS_WORD_END [as 別名]
def left_word(cls, view, region, repeat=1):
return cls._expand_words(
view,
region,
classes=sublime.CLASS_WORD_END,
repeat=repeat,
forward=False,
)
示例3: on_hover_provider
# 需要導入模塊: import sublime [as 別名]
# 或者: from sublime import CLASS_WORD_END [as 別名]
def on_hover_provider(self, view, point):
seperators = "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?."
word = view.expand_by_class(point, sublime.CLASS_WORD_START | sublime.CLASS_WORD_END, separators=seperators)
word_string = word and view.substr(word)
if not word_string:
return None
match = re.search("\\$[a-zA-Z0-9_]*", word_string)
if not match:
return None
word_string = match.group()
return (match.group(), word)
示例4: get_previous_character
# 需要導入模塊: import sublime [as 別名]
# 或者: from sublime import CLASS_WORD_END [as 別名]
def get_previous_character(view, position):
if view.substr(position - 1) in [" ", "\t", "\n"]:
position = view.find_by_class(
position, False, sublime.CLASS_WORD_END | sublime.CLASS_PUNCTUATION_END
)
return position - 1
示例5: get_dot_context
# 需要導入模塊: import sublime [as 別名]
# 或者: from sublime import CLASS_WORD_END [as 別名]
def get_dot_context(view, dot_position):
context = []
if view.substr(dot_position) != ".":
return context
if view.substr(dot_position - 1) in [" ", "\t", "\n"]:
dot_position = view.find_by_class(
dot_position, False, sublime.CLASS_WORD_END | sublime.CLASS_PUNCTUATION_END
)
base_scope_count = view.scope_name(dot_position).count("meta.function-call")
scope_to_find = " ".join(["meta.function-call"] * (base_scope_count + 1))
if view.match_selector(dot_position - 1, scope_to_find):
function_name, name_region, function_args_region = get_function_call(
view, dot_position - 1
)
context.append(
Symbol(function_name, True, name_region, function_args_region, name_region)
)
elif view.match_selector(
dot_position - 1, "variable, meta.property, meta.instance.constructor"
):
name_region = view.word(dot_position)
context.append(
Symbol(view.substr(name_region).lower(), False, None, None, name_region)
)
if len(context) > 0:
context.extend(get_dot_context(view, name_region.begin() - 1))
return context
示例6: expand_selection
# 需要導入模塊: import sublime [as 別名]
# 或者: from sublime import CLASS_WORD_END [as 別名]
def expand_selection(view, point_or_region, aliases={}):
region = view.expand_by_class(point_or_region,
sublime.CLASS_WORD_START |
sublime.CLASS_WORD_END, ' (){},[]%&')
selection = view.substr(region).strip()
if aliases:
parts = selection.split('.')
for alias, canonical in aliases.items():
if alias == parts[0]:
parts[0] = canonical
return '.'.join(parts)
return selection