Skip to content

Commit

Permalink
Start refactoring extension.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
hubwriter committed Jan 11, 2024
1 parent 2adff50 commit f93f8ce
Show file tree
Hide file tree
Showing 71 changed files with 1,146 additions and 937 deletions.
Binary file added .DS_Store
Binary file not shown.
531 changes: 531 additions & 0 deletions code-description.md

Large diffs are not rendered by default.

147 changes: 32 additions & 115 deletions dist/extension.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/extension.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added node_modules/.DS_Store
Binary file not shown.
Binary file added node_modules/@eslint-community/.DS_Store
Binary file not shown.
Binary file added node_modules/@eslint/.DS_Store
Binary file not shown.
Binary file added node_modules/@humanwhocodes/.DS_Store
Binary file not shown.
Binary file added node_modules/@jridgewell/.DS_Store
Binary file not shown.
Binary file added node_modules/@nodelib/.DS_Store
Binary file not shown.
Binary file added node_modules/@types/.DS_Store
Binary file not shown.
Binary file added node_modules/@typescript-eslint/.DS_Store
Binary file not shown.
Binary file added node_modules/@vscode/.DS_Store
Binary file not shown.
Binary file added node_modules/@webassemblyjs/.DS_Store
Binary file not shown.
Binary file added node_modules/@webpack-cli/.DS_Store
Binary file not shown.
Binary file added node_modules/@xtuc/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file added node_modules/acorn/.DS_Store
Binary file not shown.
Binary file added node_modules/agent-base/.DS_Store
Binary file not shown.
Binary file added node_modules/ajv/.DS_Store
Binary file not shown.
Binary file added node_modules/caniuse-lite/.DS_Store
Binary file not shown.
Binary file added node_modules/chalk/.DS_Store
Binary file not shown.
Binary file added node_modules/chokidar/.DS_Store
Binary file not shown.
Binary file added node_modules/cliui/.DS_Store
Binary file not shown.
Binary file added node_modules/concat-map/.DS_Store
Binary file not shown.
Binary file added node_modules/deep-is/.DS_Store
Binary file not shown.
Binary file added node_modules/diff/.DS_Store
Binary file not shown.
Binary file added node_modules/es-module-lexer/.DS_Store
Binary file not shown.
Binary file added node_modules/escalade/.DS_Store
Binary file not shown.
Binary file added node_modules/eslint-scope/.DS_Store
Binary file not shown.
Binary file added node_modules/eslint-visitor-keys/.DS_Store
Binary file not shown.
Binary file added node_modules/eslint/.DS_Store
Binary file not shown.
Binary file added node_modules/espree/.DS_Store
Binary file not shown.
Binary file added node_modules/events/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file added node_modules/fastq/.DS_Store
Binary file not shown.
Binary file added node_modules/flatted/.DS_Store
Binary file not shown.
Binary file added node_modules/function-bind/.DS_Store
Binary file not shown.
Binary file added node_modules/he/.DS_Store
Binary file not shown.
Binary file added node_modules/immediate/.DS_Store
Binary file not shown.
Binary file added node_modules/jest-worker/.DS_Store
Binary file not shown.
Binary file added node_modules/js-yaml/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file added node_modules/jszip/.DS_Store
Binary file not shown.
Binary file added node_modules/lie/.DS_Store
Binary file not shown.
Binary file added node_modules/mocha/.DS_Store
Binary file not shown.
Binary file added node_modules/nanoid/.DS_Store
Binary file not shown.
Binary file added node_modules/pako/.DS_Store
Binary file not shown.
Binary file added node_modules/readable-stream/.DS_Store
Binary file not shown.
Binary file added node_modules/resolve/.DS_Store
Binary file not shown.
Binary file added node_modules/schema-utils/.DS_Store
Binary file not shown.
Binary file added node_modules/semver/.DS_Store
Binary file not shown.
Binary file added node_modules/source-map/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file added node_modules/terser-webpack-plugin/.DS_Store
Binary file not shown.
Binary file added node_modules/terser/.DS_Store
Binary file not shown.
Binary file added node_modules/text-table/.DS_Store
Binary file not shown.
Binary file added node_modules/type-fest/.DS_Store
Binary file not shown.
Binary file added node_modules/typescript/.DS_Store
Binary file not shown.
Binary file added node_modules/webpack-cli/.DS_Store
Binary file not shown.
Binary file added node_modules/webpack/.DS_Store
Binary file not shown.
Binary file added node_modules/wildcard/.DS_Store
Binary file not shown.
Binary file added node_modules/workerpool/.DS_Store
Binary file not shown.
Binary file added node_modules/yargs/.DS_Store
Binary file not shown.
32 changes: 21 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "my-test-extension",
"displayName": "My Test Extension",
"name": "versioning-identifier",
"displayName": "Versioning Identifier extension",
"description": "This is just for testing a VS Code extension written in TypeScript.",
"version": "0.0.1",
"engines": {
Expand All @@ -13,21 +13,31 @@
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "vsc-extension-version-tags.highlight-tags",
"title": "Version tags: Highlight tags"
}
{
"command": "extension.runExtensionModal",
"title": "Versioning identification (Modal)"
},
{
"command": "extension.runExtensionToast",
"title": "Versioning identification (Toast)"
}
],
"keybindings": [
{
"command": "vsc-extension-version-tags.highlight-tags",
"key": "ctrl+alt+v",
"mac": "ctrl+cmd+v",
"when": "editorTextFocus"
"command": "extension.runExtensionToast",
"key": "ctrl+cmd+v",
"mac": "ctrl+cmd+v",
"when": "editorTextFocus"
},
{
"command": "extension.runExtensionModal",
"key": "shift+ctrl+cmd+v",
"mac": "shift+ctrl+cmd+v",
"when": "editorTextFocus"
},
{
"key": "escape",
"command": "vsc-extension-version-tags.removeDecorations",
"command": "extension.removeDecorations",
"when": "editorTextFocus"
}
]
Expand Down
Loading

0 comments on commit f93f8ce

Please sign in to comment.