sublime 插件编写

ref

https://www.cnblogs.com/qiyeboy/p/5966353.html

code

在这里插入图片描述

import sublime
import sublime_plugin


class ExampleCommand(sublime_plugin.TextCommand):
	def run(self, edit):
		self.view.insert(edit, 0, "Hello, World!")

在这里插入图片描述

三、绑定快捷键

在这里插入图片描述

official doc:

http://www.sublimetext.com/docs/3/api_reference.html

发布了216 篇原创文章 · 获赞 33 · 访问量 9万+

猜你喜欢

转载自blog.csdn.net/paulkg12/article/details/104931039