Sublime Text 3 API : Get all text from a file

纵然是瞬间 提交于 2019-11-29 12:18:05

问题



I am trying to create a plugin for sublime text 3.
For now I only get possible to select all text in a window and copy it in another window.
Code :

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)

Do you know a better/simpler method to do so ?
Thanks!


回答1:


You can get the contents of the current doc with:

contents = self.view.substr(sublime.Region(0, self.view.size()))


来源:https://stackoverflow.com/questions/20182008/sublime-text-3-api-get-all-text-from-a-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!