當前位置: 首頁>>代碼示例>>Python>>正文


Python View.substr方法代碼示例

本文整理匯總了Python中sublime.View.substr方法的典型用法代碼示例。如果您正苦於以下問題:Python View.substr方法的具體用法?Python View.substr怎麽用?Python View.substr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sublime.View的用法示例。


在下文中一共展示了View.substr方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: on_modified

# 需要導入模塊: from sublime import View [as 別名]
# 或者: from sublime.View import substr [as 別名]
    def on_modified(self, view: sublime.View) -> None:
        """Called after changes has been made to a view
        """

        if view.command_history(0)[0] in ("expand_tabs", "unexpand_tabs"):
            return

        if not is_python(view) or not get_settings(view, 'display_signatures'):
            return

        try:
            location = view.rowcol(view.sel()[0].begin())
            if view.substr(view.sel()[0].begin()) in ['(', ')']:
                location = (location[0], location[1] - 1)

            data = prepare_send_data(location, 'doc', 'jedi')
            use_tooltips = get_settings(
                view, 'enable_signatures_tooltip', True
            )
            st_version = int(sublime.version())
            if st_version >= 3070:
                data['html'] = use_tooltips

            currying = partial(self.prepare_data_status, view)
            if use_tooltips and st_version >= 3070:
                currying = partial(self.prepare_data_tooltip, view)
            Worker().execute(currying, **data)
        except Exception as error:
            logging.error(error)
開發者ID:Cesar456,項目名稱:Sublime_Text3_Properties-Pacage,代碼行數:31,代碼來源:signatures.py

示例2: modified_buffer

# 需要導入模塊: from sublime import View [as 別名]
# 或者: from sublime.View import substr [as 別名]
    def modified_buffer(self, view: sublime.View) -> str:
        """Guru needs this to use unsaved buffers instead of files
        """

        code = view.substr(sublime.Region(0, view.size()))
        return '\n'.join([
            view.file_name(), str(len(code.encode('utf8'))), code
        ])
開發者ID:DamnWidget,項目名稱:anaconda_go,代碼行數:10,代碼來源:doc.py

示例3: on_modified

# 需要導入模塊: from sublime import View [as 別名]
# 或者: from sublime.View import substr [as 別名]
    def on_modified(self, view: sublime.View) -> None:
        """Called after changes has been made to a view.
        """

        if not is_python(view, autocomplete_ignore_repl=True):
            return

        global JUST_COMPLETED

        if (view.substr(view.sel()[0].begin() - 1) == '('
                and view.substr(view.sel()[0].begin()) == ')'):
            if JUST_COMPLETED:
                view.run_command('anaconda_complete_funcargs')

            JUST_COMPLETED = False
        elif view.substr(sublime.Region(
                view.sel()[0].begin() - 7, view.sel()[0].end())) == 'import ':
            self._run_auto_complete()
開發者ID:lpig,項目名稱:sublime-backup,代碼行數:20,代碼來源:completion.py

示例4: notify_did_change

# 需要導入模塊: from sublime import View [as 別名]
# 或者: from sublime.View import substr [as 別名]
def notify_did_change(view: sublime.View):
    file_name = view.file_name()
    window = view.window()
    if window and file_name:
        if view.buffer_id() in pending_buffer_changes:
            del pending_buffer_changes[view.buffer_id()]
        config = config_for_scope(view)
        client = client_for_view(view)
        if client and config:
            uri = filename_to_uri(file_name)
            languageId = config.get_language_id(view)
            ds = get_document_state(window, file_name)
            if ds.languageId == languageId:
                params = {
                    "textDocument": {
                        "uri": uri,
                        "version": ds.inc_version(),
                    },
                    "contentChanges": [{
                        "text": view.substr(sublime.Region(0, view.size()))
                    }]
                }
                client.send_notification(Notification.didChange(params))
            else:
                # The languageId has changed, reopen file
                ds.languageId = languageId
                params = {"textDocument": {"uri": uri}}
                client.send_notification(Notification.didClose(params))
                params = {
                    "textDocument": {
                        "uri": uri,
                        "languageId": ds.languageId,
                        "text": view.substr(sublime.Region(0, view.size())),
                        "version": ds.inc_version(),
                    }
                }
                client.send_notification(Notification.didOpen(params))
開發者ID:Kronuz,項目名稱:SublimeCodeIntel,代碼行數:39,代碼來源:documents.py

示例5: notify_did_open

# 需要導入模塊: from sublime import View [as 別名]
# 或者: from sublime.View import substr [as 別名]
def notify_did_open(view: sublime.View):
    config = config_for_scope(view)
    client = client_for_view(view)
    if client and config:
        view.settings().set("show_definitions", False)
        window = view.window()
        view_file = view.file_name()
        if window and view_file:
            if not has_document_state(window, view_file):
                ds = get_document_state(window, view_file)
                ds.languageId = config.get_language_id(view)
                if settings.show_view_status:
                    view.set_status("code_intel_clients", config.name)
                params = {
                    "textDocument": {
                        "uri": filename_to_uri(view_file),
                        "languageId": ds.languageId,
                        "text": view.substr(sublime.Region(0, view.size())),
                        "version": ds.version
                    }
                }
                client.send_notification(Notification.didOpen(params))
開發者ID:Kronuz,項目名稱:SublimeCodeIntel,代碼行數:24,代碼來源:documents.py

示例6: do_skip_args_and_spaces

# 需要導入模塊: from sublime import View [as 別名]
# 或者: from sublime.View import substr [as 別名]
def do_skip_args_and_spaces(view: sublime.View, point: int) -> bool:
    if view.substr(point).isspace() or view.match_selector(point, ARGUMENT):
        return True
    return False
開發者ID:equiva1ence,項目名稱:ConTeXtTools,代碼行數:6,代碼來源:scopes.py


注:本文中的sublime.View.substr方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。