Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

Commit

Permalink
feat(code-completion): Add the code completion back with testing (#416)
Browse files Browse the repository at this point in the history
Add the code completion back. Remove old code. Fixes #388.
  • Loading branch information
buehler committed Mar 6, 2018
1 parent a83c410 commit 3651cbc
Show file tree
Hide file tree
Showing 128 changed files with 431 additions and 8,976 deletions.
6 changes: 2 additions & 4 deletions .vscode/launch.json
Expand Up @@ -57,8 +57,7 @@
"sourceMaps": true,
"smartStep": true,
"outFiles": [
"${workspaceRoot}/out/src/**/*.js",
"${workspaceRoot}/out/test/tests/**/*.js"
"${workspaceRoot}/out/**/*.js"
]
},
{
Expand All @@ -81,8 +80,7 @@
"sourceMaps": true,
"smartStep": true,
"outFiles": [
"${workspaceRoot}/out/src/**/*.js",
"${workspaceRoot}/out/test/tests/**/*.js"
"${workspaceRoot}/out/**/*.js"
]
}
],
Expand Down
3 changes: 0 additions & 3 deletions config/tsconfig.base.json
Expand Up @@ -19,8 +19,5 @@
},
"include": [
"../src/**/*"
],
"exclude": [
"../src/_old"
]
}
2 changes: 0 additions & 2 deletions config/tsconfig.test-multi-workspace.json
Expand Up @@ -8,8 +8,6 @@
"../test/**/*"
],
"exclude": [
"../src/_old",
"../test/_old",
"../test/etc",
"../test/**/*.single.test.ts"
]
Expand Down
2 changes: 0 additions & 2 deletions config/tsconfig.test-single-workspace.json
Expand Up @@ -8,8 +8,6 @@
"../test/**/*"
],
"exclude": [
"../src/_old",
"../test/_old",
"../test/etc",
"../test/**/*.multi.test.ts"
]
Expand Down
13 changes: 9 additions & 4 deletions package.json
Expand Up @@ -137,10 +137,6 @@
{
"command": "typescriptHero.imports.organize",
"title": "TS Hero: Organize imports (sort and remove unused)"
},
{
"command": "typescriptHero.codeOutline.gotoNode",
"title": "TS Hero (internal): Jump to the given nodes location"
}
],
"keybindings": [
Expand Down Expand Up @@ -183,6 +179,15 @@
"description": "Defines the log output level in the output window. In the log file, it's always info or debug.",
"scope": "window"
},
"typescriptHero.codeCompletion.completionSortMode": {
"enum": [
"default",
"bottom"
],
"default": "default",
"description": "Defines the sortmode of the code completion in intellisense (bottom means sorted to bottom).",
"scope": "resource"
},
"typescriptHero.codeOutline.enabled": {
"type": "boolean",
"default": true,
Expand Down
28 changes: 0 additions & 28 deletions src/_old/common/config/CodeCompletionConfig.ts

This file was deleted.

27 changes: 0 additions & 27 deletions src/_old/common/config/CodeOutlineConfig.ts

This file was deleted.

68 changes: 0 additions & 68 deletions src/_old/common/config/ExtensionConfig.ts

This file was deleted.

0 comments on commit 3651cbc

Please sign in to comment.