diff --git a/package.json b/package.json index 7613a8e..631718b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "ollama-autocoder", "displayName": "Ollama Autocoder", "description": "A simple to use Ollama autocompletion engine with options exposed and streaming functionality", - "version": "0.0.2", + "version": "0.0.3", "icon": "icon.png", "publisher": "10nates", "license": "MIT", @@ -66,11 +66,6 @@ "type": "integer", "default": 2000, "description": "The size of the prompt in characters. NOT tokens, so can be set about 1.5-2x the max tokens of the model (varies)." - }, - "ollama-autocoder.ask-on-space": { - "type": "boolean", - "default": true, - "description": "Have the option `Autocomplete with Ollama` appear when you press space. **RELOAD REQUIRED**" } } }, diff --git a/src/extension.ts b/src/extension.ts index 999e0e0..7ee15ce 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -10,7 +10,6 @@ let apiSystemMessage: string | undefined; let numPredict: number; let promptWindowSize: number; let rawInput: boolean | undefined; -let askOnSpace: boolean | undefined; function updateVSConfig() { VSConfig = vscode.workspace.getConfiguration("ollama-autocoder"); @@ -20,7 +19,6 @@ function updateVSConfig() { numPredict = VSConfig.get("max-tokens-predicted") || 500; promptWindowSize = VSConfig.get("prompt-window-size") || 2000; rawInput = VSConfig.get("raw-input"); - askOnSpace = VSConfig.get("ask-on-space"); // not actually changeable, requires reload if (apiSystemMessage == "DEFAULT" || rawInput) apiSystemMessage = undefined; } @@ -153,7 +151,7 @@ function activate(context: vscode.ExtensionContext) { " " ); - // Register a command for getting a completion from Ollama + // Register command passthrough for completionProvider const internalAutocompleteCommand = vscode.commands.registerCommand( "ollama-autocoder.autocomplete-internal", autocompleteCommand @@ -168,9 +166,8 @@ function activate(context: vscode.ExtensionContext) { } ); - // Add the commands to the context - // Add the completion provider to the context - if (askOnSpace) context.subscriptions.push(completionProvider); + // Add the commands & completion provider to the context + context.subscriptions.push(completionProvider); context.subscriptions.push(internalAutocompleteCommand); context.subscriptions.push(externalAutocompleteCommand);