码迷,mamicode.com
首页 > 其他好文 > 详细

sublime插件开发教程4

时间:2019-12-01 15:16:48      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:中文   style   div   end   example   elf   code   man   alt   

写几个简单的例子详解下

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

标签:中文   style   div   end   example   elf   code   man   alt   

原文地址:https://www.cnblogs.com/newmiracle/p/11966090.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!