0
我似乎無法插入,我通過「OPEN_FILE」創建的視圖:崇高API:set_read_only不工作
import sublime, sublime_plugin, re, os.path
class ExtractToViewCommand(sublime_plugin.TextCommand):
def run(self, edit):
view = sublime.active_window().open_file("/path/to/some/file/that/doesnt/exist/yet")
view.set_read_only(False)
print(view.is_read_only()) # prints True!
e = view.begin_edit()
view.insert(e, 0, "hello world") # returns 0!
view.end_edit(e)
我的目標是創建一個插件來選定的文本中提取到一個新文件。插入工作正常,當我改變它使用new_file
而不是open_file
。任何想法我失蹤?