-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: enable strict mode in tsconfig.json and fix resulting compile-…
…time null/undefined and typing errors. chore: Improvements to eventToValueObservable handling and typing of undefined. chore: Removing ancient legacy debug plugin upgrade check. fix: Ensure that language service status items are updated properly. feat: Updated welcome message with debugger upgrade info. fix: Various potential extension errors/crashes in rare circumstances. (Empty config values, etc.) feat: Update display name for Skyrim to include AE.
- Loading branch information
Showing
30 changed files
with
379 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ import { injectable, interfaces } from 'inversify'; | |
import { workspace, Disposable } from 'vscode'; | ||
import { eventToValueObservable } from './common/vscode/reactive/Events'; | ||
import { Observable } from 'rxjs'; | ||
import { filter } from 'rxjs/operators'; | ||
|
||
export interface IGameConfig { | ||
readonly enabled: boolean; | ||
|
@@ -30,7 +31,7 @@ export class ExtensionConfigProvider implements IExtensionConfigProvider { | |
private readonly _config = eventToValueObservable( | ||
workspace.onDidChangeConfiguration, | ||
() => getPapyrusConfig(), | ||
(e) => (e.affectsConfiguration('papyrus') ? getPapyrusConfig() : undefined) | ||
This comment has been minimized.
Sorry, something went wrong.
joelday
Author
Owner
|
||
(e) => (e.affectsConfiguration('papyrus') ? getPapyrusConfig() : undefined), | ||
); | ||
|
||
get config() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
I forgot that when I changed this to copy bins, the task was only supposed to be for restarting the debugger after making changes. Since the binaries are in use, this fails when it tries to overwrite them.