加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.py 596 Bytes
一键复制 编辑 原始数据 按行查看 历史
g8up 提交于 2018-03-03 12:34 . 设置编码;更新备注
# coding=utf-8
# 将当前目录的 Vue 组件分散的 html/es(js)/less 合并成单文件(.vue)
# 依赖这个 vw 命令行工具:http://git.oschina.net/g8up/Vue-widget
# 用法:在打开的某一分散文件(html/es(js)/less)中右键菜单中触发
import os, sublime_plugin, sublime
from . import util
class VueCommand(sublime_plugin.TextCommand):
def run(self, edit):
filePath = self.view.file_name()
currentDirectory = util.getFileCurrentPath( filePath )
commands = [
"vw -c"
]
util.runCommand( currentDirectory, commands)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化