sublime插件开发教程4
Posted newmiracle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sublime插件开发教程4相关的知识,希望对你有一定的参考价值。
写几个简单的例子详解下
import sublime import sublime_plugin class ExampleCommand(sublime_plugin.TextCommand): def run(self, edit): sels = self.view.sel(); for sel in sels: print(sel);
然后选中文字 输出看到如下
从第8个字符到第3个字符 为什么不是(3,8)呢 因为我是从后面往前面选的
import sublime import sublime_plugin class ExampleCommand(sublime_plugin.TextCommand): def run(self, edit): sels = self.view.sel(); for sel in sels: print(sel.end());
那么输出的就是8 了
以上是关于sublime插件开发教程4的主要内容,如果未能解决你的问题,请参考以下文章