0
私は、正しいインデントレベルで、選択した行にテキストを挿入するSublime Text 3プラグインを作成しようとしています。サブライムテキスト3プラグインの正しいインデントレベルの位置を取得
誰でもこれを達成する方法を知っていますか?
これは私がこれまで持っているものです。
class HelloWorldCommand(sublime_plugin.TextCommand):
def run(self, edit):
for pos in self.view.sel():
line = self.view.line(pos)
# Get Correct indentation level and pass in instead of line.begin()
self.view.insert(edit, line.begin(), "Hello world;\n")