├── .eslintrc ├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE ├── README-CN.md ├── README.md ├── package.json ├── playground ├── .vscode │ └── settings.json ├── csharp.cs ├── go.go ├── java.java ├── javascript.js ├── php.php ├── python.py ├── rust.rs └── tsx.tsx ├── pnpm-workspace.yaml ├── res ├── comment-all-statements.gif ├── create-statement-after.gif ├── create-statement-before.gif ├── custom-language-statement.gif ├── find-scope-boundary.gif ├── icon.png ├── merged-multi-cursor-insert.gif ├── multi-cursor-insert.gif ├── remove-all-statements.gif └── uncomment-all-statements.gif ├── src ├── commands │ ├── comments.ts │ ├── create.ts │ ├── index.ts │ ├── remove.ts │ └── update.ts ├── extension.ts ├── features │ ├── comment-symbol.ts │ ├── file-depth.ts │ ├── number-line.ts │ ├── output.ts │ ├── quote.ts │ ├── random-emoji.ts │ └── variable-completion.ts ├── global.d.ts └── utils │ ├── block-scope.ts │ ├── get-symbol.ts │ ├── shared.ts │ └── smart-editor.ts ├── tsconfig.json └── tsup.config.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-workspace-root-check=true 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/package.json -------------------------------------------------------------------------------- /playground/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/playground/.vscode/settings.json -------------------------------------------------------------------------------- /playground/csharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/playground/csharp.cs -------------------------------------------------------------------------------- /playground/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/playground/go.go -------------------------------------------------------------------------------- /playground/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/playground/java.java -------------------------------------------------------------------------------- /playground/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/playground/javascript.js -------------------------------------------------------------------------------- /playground/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/playground/php.php -------------------------------------------------------------------------------- /playground/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/playground/python.py -------------------------------------------------------------------------------- /playground/rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/playground/rust.rs -------------------------------------------------------------------------------- /playground/tsx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/playground/tsx.tsx -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /res/comment-all-statements.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/comment-all-statements.gif -------------------------------------------------------------------------------- /res/create-statement-after.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/create-statement-after.gif -------------------------------------------------------------------------------- /res/create-statement-before.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/create-statement-before.gif -------------------------------------------------------------------------------- /res/custom-language-statement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/custom-language-statement.gif -------------------------------------------------------------------------------- /res/find-scope-boundary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/find-scope-boundary.gif -------------------------------------------------------------------------------- /res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/icon.png -------------------------------------------------------------------------------- /res/merged-multi-cursor-insert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/merged-multi-cursor-insert.gif -------------------------------------------------------------------------------- /res/multi-cursor-insert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/multi-cursor-insert.gif -------------------------------------------------------------------------------- /res/remove-all-statements.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/remove-all-statements.gif -------------------------------------------------------------------------------- /res/uncomment-all-statements.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/res/uncomment-all-statements.gif -------------------------------------------------------------------------------- /src/commands/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/commands/comments.ts -------------------------------------------------------------------------------- /src/commands/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/commands/create.ts -------------------------------------------------------------------------------- /src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/commands/index.ts -------------------------------------------------------------------------------- /src/commands/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/commands/remove.ts -------------------------------------------------------------------------------- /src/commands/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/commands/update.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/features/comment-symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/features/comment-symbol.ts -------------------------------------------------------------------------------- /src/features/file-depth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/features/file-depth.ts -------------------------------------------------------------------------------- /src/features/number-line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/features/number-line.ts -------------------------------------------------------------------------------- /src/features/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/features/output.ts -------------------------------------------------------------------------------- /src/features/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/features/quote.ts -------------------------------------------------------------------------------- /src/features/random-emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/features/random-emoji.ts -------------------------------------------------------------------------------- /src/features/variable-completion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/features/variable-completion.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | import type { window } from 'vscode' 2 | 3 | declare global { 4 | } 5 | -------------------------------------------------------------------------------- /src/utils/block-scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/utils/block-scope.ts -------------------------------------------------------------------------------- /src/utils/get-symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/utils/get-symbol.ts -------------------------------------------------------------------------------- /src/utils/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/utils/shared.ts -------------------------------------------------------------------------------- /src/utils/smart-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/src/utils/smart-editor.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libondev/debugger-for-console/HEAD/tsup.config.ts --------------------------------------------------------------------------------