├── .gitattributes ├── .gitignore ├── .prettierrc ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── img ├── logo_256.png ├── main-header.gif ├── solid-line.gif └── sub-header.gif ├── package.json ├── src ├── actions.ts ├── builders.ts ├── commands.ts ├── config.ts ├── constants.ts ├── errors.ts ├── extension.ts ├── limiters.ts ├── renders.ts ├── transforms.ts └── types.ts ├── tsconfig.json └── tslint.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/README.md -------------------------------------------------------------------------------- /img/logo_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/img/logo_256.png -------------------------------------------------------------------------------- /img/main-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/img/main-header.gif -------------------------------------------------------------------------------- /img/solid-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/img/solid-line.gif -------------------------------------------------------------------------------- /img/sub-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/img/sub-header.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/package.json -------------------------------------------------------------------------------- /src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/actions.ts -------------------------------------------------------------------------------- /src/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/builders.ts -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/limiters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/limiters.ts -------------------------------------------------------------------------------- /src/renders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/renders.ts -------------------------------------------------------------------------------- /src/transforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/transforms.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackbreak/comment-divider/HEAD/tslint.json --------------------------------------------------------------------------------