├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── README.md ├── action.gif ├── package.json ├── src ├── extension.ts ├── init.ts ├── packageJson.ts └── types.ts ├── test ├── extension.test.ts └── index.ts ├── tsconfig.json ├── vsc-extension-quickstart.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/.vscodeignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/README.md -------------------------------------------------------------------------------- /action.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/action.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/src/init.ts -------------------------------------------------------------------------------- /src/packageJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/src/packageJson.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/test/extension.test.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seunlanlege/vscode-action-buttons/HEAD/yarn.lock --------------------------------------------------------------------------------