3 Star 0 Fork 0

g8up / sublimetext3-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
fis3.py 758 Bytes
一键复制 编辑 原始数据 按行查看 历史
g8up 提交于 2017-06-28 14:48 . update invoke
# SublimeText3 Plugin Doc:http://www.sublimetext.com/docs/3/api_reference.html
# python doc: http://www.runoob.com/python/python-tutorial.html
# OS doc: https://docs.python.org/3/library/os.html#os.system
# 给右键菜单提供一个命令,点击弹出 cmd 并切换目录到 fis 工程根目录
import os, sublime_plugin
from . import util # https://github.com/odyssomay/sublime-lispindent/issues/25
class Fis3Command(sublime_plugin.WindowCommand):
def run(self):
file_name = self.window.active_view().file_name()
path = file_name.split("\\")
current_directory = util.getFisProjectPath( path )
commands = [
"fis3 release -r"
]
util.runCommand( current_directory, commands)
return;
Python
1
https://gitee.com/g8up/sublimetext3-plugin.git
git@gitee.com:g8up/sublimetext3-plugin.git
g8up
sublimetext3-plugin
sublimetext3-plugin
master

搜索帮助