Skip to content

Commit e531d0a

Browse files
committed
update
1 parent 8ae5641 commit e531d0a

34 files changed

+2281
-1040
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.vscode/launch.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
// 使用 IntelliSense 了解相关属性。
3+
// 悬停以查看现有属性的描述。
4+
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"skipFiles": [
12+
"<node_internals>/**"
13+
],
14+
"program": "${workspaceFolder}\\build\\build.js",
15+
"outFiles": [
16+
"${workspaceFolder}/**/*.js"
17+
]
18+
}
19+
]
20+
}

Commands/Check Syntax.tmCommand

-59
This file was deleted.

Commands/Run Lua.plist

-53
This file was deleted.

Commands/Run Script (Terminal).tmCommand

-68
This file was deleted.

Preferences/Comments.tmPreferences

-36
This file was deleted.

Preferences/Folding.tmPreferences

-19
This file was deleted.

Preferences/Indent.tmPreferences

-19
This file was deleted.

README.mdown README.md

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
# Installation
2-
3-
You can install this bundle in TextMate by opening the preferences and going to the bundles tab. After installation it will be automatically updated for you.
4-
5-
# General
6-
7-
* [Bundle Styleguide](http://kb.textmate.org/bundle_styleguide)_before you make changes_
8-
* [Commit Styleguide](http://kb.textmate.org/commit_styleguide)_before you send a pull request_
9-
* [Writing Bug Reports](http://kb.textmate.org/writing_bug_reports)_before you report an issue_
10-
111
# License
122

133
If not otherwise specified (see below), files in this repository fall under the following license:
@@ -17,4 +7,4 @@ If not otherwise specified (see below), files in this repository fall under the
177
express or implied warranty, and with no claim as to its
188
suitability for any purpose.
199

20-
An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.
10+
An exception is made for files in readable text which contain their own license information, or files where an accompanying file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”.

Snippets/Anonymous Function.tmSnippet

-18
This file was deleted.

Snippets/If Else.tmSnippet

-20
This file was deleted.

Snippets/If Not Else.tmSnippet

-20
This file was deleted.

Snippets/If Not.tmSnippet

-18
This file was deleted.

0 commit comments

Comments
 (0)