lua学习笔记——2在sublime中配置Lua运行环境
Posted ariboy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lua学习笔记——2在sublime中配置Lua运行环境相关的知识,希望对你有一定的参考价值。
一、让Sublime可以运行lua脚本
打开sublime
{
"cmd": ["lua", "$file"],
"file_regex": "^(?:lua:)?[\t ](...*?):([0-9]*):?([0-9]*)",
"selector": "source.lua"
}
保存,名称为lua,保存在默认位置
二、如何添加作者的信息---类似插件功能
Tools → New Plugin:
import datetime
import sublime_plugin
class AddInfoCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.run_command("insert_snippet",
{
"contents": "/**""\n"
" * @Author: name""\n"
" * @DateTime: " "%s" %datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") +"\n"
" * @Description: Description""\n"
" */"
}
)
保存为Sublime Text3\Packages\User\addAuthorInfo.py
三 如何创建快捷键
Preference → Key Bindings - User:
[
{
"command": "add_info",
"keys": [
"ctrl+shift+,"]
}
]
以上是关于lua学习笔记——2在sublime中配置Lua运行环境的主要内容,如果未能解决你的问题,请参考以下文章