作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试为 sublime text 3 创建一个插件。
现在我只能选择一个窗口中的所有文本并将其复制到另一个窗口中。
代码:
import sublime, sublime_plugin
class PrintCodeCommand(sublime_plugin.WindowCommand):
def run(self):
# for each caracter, add it to a string with the substr method
s = ""
for x in range(0,self.window.active_view().size()):
s += self.window.active_view().substr(x)
newFile = self.window.new_file()
newFile.run_command("test",{"textBuffer": s})
class Test(sublime_plugin.TextCommand):
def run(self, edit, textBuffer):
self.view.insert(edit, 0, textBuffer)
你知道更好/更简单的方法吗?
谢谢!
最佳答案
您可以通过以下方式获取当前文档的内容:
contents = self.view.substr(sublime.Region(0, self.view.size()))
关于python - 崇高文本 3 API : Get all text from a file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20182008/
我是一名优秀的程序员,十分优秀!