Skip to content

Commit

Permalink
Merge pull request #381 from conwnet/master
Browse files Browse the repository at this point in the history
release 0.6.3
  • Loading branch information
conwnet authored Dec 31, 2021
2 parents 1d66c1d + 7eae943 commit 39a63d0
Show file tree
Hide file tree
Showing 22 changed files with 43,537 additions and 13 deletions.
6 changes: 3 additions & 3 deletions api/github-auth-callback/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ mimic-response@^3.1.0:
integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==

normalize-url@^4.1.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129"
integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==
version "4.5.1"
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a"
integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==

once@^1.3.1, once@^1.4.0:
version "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion extensions/github1s/src/helpers/func.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const debounce = <T extends (...args: any[]) => any>(
let timer = null;
return function (...args: Parameters<T>): void {
timer && clearTimeout(timer);
timer = setTimeout(() => func.call(this, ...args), timer);
timer = setTimeout(() => func.call(this, ...args), wait);
};
};

Expand Down
5 changes: 5 additions & 0 deletions extensions/vscode-anycode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# This is the prebuilt version of [vscode-anycode](https://github.com/microsoft/vscode-anycode)

## we prebuilt it because of [this bug](https://github.com/conwnet/github1s/issues/373)

## we will remove this after the latest version of the official extension released
101 changes: 101 additions & 0 deletions extensions/vscode-anycode/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
{
"name": "anycode",
"displayName": "anycode",
"publisher": "ms-vscode",
"description": "",
"version": "0.0.55",
"enabledApiProposals": [
"languageStatus"
],
"preview": true,
"repository": {
"url": "https://github.com/microsoft/vscode-anycode"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:csharp",
"onLanguage:go",
"onLanguage:java",
"onLanguage:php",
"onLanguage:python",
"onLanguage:rust",
"onLanguage:javascript",
"onLanguage:typescript",
"onCommand:workbench.action.showAllSymbols"
],
"browser": "./prebuilt/anycode.extension.js",
"contributes": {
"configuration": {
"title": "Anycode",
"properties": {
"anycode.symbolIndexSize": {
"type": "number",
"default": 500,
"minimum": 0,
"markdownDescription": "Size of the index that is used for features like symbol search and go to definition."
},
"anycode.language.features": {
"markdownDescription": "Control the language features that anycode offers. This can be configured for each supported language: [Learn How to Do That](https://code.visualstudio.com/docs/getstarted/settings#_languagespecific-editor-settings)",
"type": "object",
"scope": "language-overridable",
"additionalProperties": false,
"properties": {
"definitions": {
"type": "boolean",
"description": "Go to Definition based on identifiers and local variables"
},
"references": {
"type": "boolean",
"description": "Find References based on identifiers and local variables"
},
"workspaceSymbols": {
"type": "boolean",
"description": "Add symbols to workspace symbol search"
},
"highlights": {
"type": "boolean",
"description": "Highlight Occurrences of identifiers and local variables"
},
"outline": {
"type": "boolean",
"description": "Populate Outline, Quick-outline, and Breadcrumbs"
},
"completions": {
"type": "boolean",
"description": "Completions based on identifiers and symbol names"
},
"folding": {
"type": "boolean",
"description": "Fold sections of codes to a single line"
},
"diagnostics": {
"type": "boolean",
"description": "(experimental) Parse errors show as problems"
}
},
"default": {
"completions": true,
"definitions": true,
"references": true,
"highlights": true,
"outline": true,
"workspaceSymbols": true,
"folding": false,
"diagnostics": false
}
}
}
}
},
"scripts": {
"compile": "echo done",
"watch": "echo done"
}
}
Loading

1 comment on commit 39a63d0

@vercel
Copy link

@vercel vercel bot commented on 39a63d0 Dec 31, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.