diff --git a/CHANGELOG.md b/CHANGELOG.md index 98fe4d5..33af673 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## Unreleased + +- Fix a bug where jump to label would be disabled when it shouldn't be + ## 1.18.0 - 2024-08-18 - Handle "misbehaving" Ren'Py processes diff --git a/src/lib/handlers.ts b/src/lib/handlers.ts index b72c4f1..b60892f 100644 --- a/src/lib/handlers.ts +++ b/src/lib/handlers.ts @@ -40,6 +40,11 @@ export function register_handlers( ) context.subscriptions.push(save_text_handler) + vscode.commands.executeCommand( + 'setContext', + 'renpyWarp.renpyExtensionsEnabled', + get_config('renpyExtensionsEnabled') === 'Enabled' + ) const server_on_change = vscode.workspace.onDidChangeConfiguration((e) => { if ( e.affectsConfiguration('renpyWarp.autoStartSocketServer') ||