gpt4 book ai didi

python - 在 sublime 3 api 中将文本插入 View

转载 作者:太空宇宙 更新时间:2023-11-03 11:49:52 25 4
gpt4 key购买 nike

我现在在 sublime 中有 4 个 View 。我想在一个 View 中插入一些文本。我正在尝试这样。但没有运气。

getAllViews = self.window.views()
jobView = getAllViews[1]
jobEdit = jobView.begin_edit()
jobView.insert(jobEdit, 0, 'Hello')
jobView.end_edit(jobEdit)

有没有更好的想法来做到这一点?

更新我的问题

我正在将我当前的 View 布局编辑为 4 Pane 布局,我想将一些差异数据放入我新创建的布局中。我现在有了这段代码。

import sublime
import sublime_plugin
import os, subprocess

class SpliterCommand(sublime_plugin.TextCommand):
def on_done(self, Regex):
self.window.set_layout({
"cols": [0, 0.5, 1],
"rows": [0.0, 0.33, 0.66, 1.0],
"cells": [ [0, 0, 1, 3], [1, 0, 2, 1], [1, 1, 2, 2], [1, 2, 2, 3]]
})

def run(self, edit):
self.editview = edit
self.window = sublime.active_window()
self.window.show_input_panel('User Input', "Hello",self.on_done,None,None)
getAllViews = self.window.layouts()

这会将 ui 分成 4 个布局。但无法将数据设置为新布局。

最佳答案

问题是当您创建一个新组时,该组是空的(不包含 View ),因此如果没有 View 则您无法插入文本。您需要在每个空组中创建一个新 View 以在其中插入字符。我已经更新了您的 on_done 方法,以便在每个空组中创建一个 View ,并在新 View 中插入一些文本。这在代码注释中进行了解释。

def on_done(self, Regex):
self.window.set_layout({
"cols": [0, 0.5, 1],
"rows": [0.0, 0.33, 0.66, 1.0],
"cells": [ [0, 0, 1, 3], [1, 0, 2, 1], [1, 1, 2, 2], [1, 2, 2, 3]]
})
# For each of the new groups call putHello (self.window.num_groups() = 4)
for numGroup in range(self.window.num_groups()):
# If the group is empty (has no views) then we create a new file (view) and insert the text hello
if len(self.window.views_in_group(numGroup)) == 0:
self.window.focus_group(numGroup) # Focus in group
createdView = self.window.new_file() # New view in group
createdView.run_command("insert",{"characters": "Hello"}) # Insert in created view

之前:

Before

之后:

After

关于python - 在 sublime 3 api 中将文本插入 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30443820/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com