├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── allman.png ├── doc │ ├── allman.png │ ├── kr.png │ ├── no-private.png │ ├── usage-01.gif │ ├── usage-02.gif │ └── usage-03.gif ├── icon.png ├── icon.svg ├── kr.png ├── no-private.png ├── usage-01.gif ├── usage-02.gif └── usage-03.gif ├── package.json ├── snippets └── snippets.json ├── src ├── extension.ts ├── model.ts ├── options.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── templates ├── attributes.json ├── calls.json ├── classes.json ├── experimentalAttributes.json └── methods.json └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/README.md -------------------------------------------------------------------------------- /images/allman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/allman.png -------------------------------------------------------------------------------- /images/doc/allman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/doc/allman.png -------------------------------------------------------------------------------- /images/doc/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/doc/kr.png -------------------------------------------------------------------------------- /images/doc/no-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/doc/no-private.png -------------------------------------------------------------------------------- /images/doc/usage-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/doc/usage-01.gif -------------------------------------------------------------------------------- /images/doc/usage-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/doc/usage-02.gif -------------------------------------------------------------------------------- /images/doc/usage-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/doc/usage-03.gif -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/icon.svg -------------------------------------------------------------------------------- /images/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/kr.png -------------------------------------------------------------------------------- /images/no-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/no-private.png -------------------------------------------------------------------------------- /images/usage-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/usage-01.gif -------------------------------------------------------------------------------- /images/usage-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/usage-02.gif -------------------------------------------------------------------------------- /images/usage-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/images/usage-03.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/snippets/snippets.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/src/model.ts -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/src/options.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /templates/attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/templates/attributes.json -------------------------------------------------------------------------------- /templates/calls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/templates/calls.json -------------------------------------------------------------------------------- /templates/classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/templates/classes.json -------------------------------------------------------------------------------- /templates/experimentalAttributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/templates/experimentalAttributes.json -------------------------------------------------------------------------------- /templates/methods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/templates/methods.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleber-swf/vscode-unity-code-snippets/HEAD/tsconfig.json --------------------------------------------------------------------------------