Fix wrong section-identifier used to retrieve configuration (#475)

Fix #474
This commit is contained in:
sequpt
2023-05-06 20:11:51 +00:00
committed by GitHub
parent 41f40ee38f
commit 931ec50614

View File

@@ -2,7 +2,7 @@ import * as vscode from "vscode";
import * as path from "path";
import * as fs from "fs";
const CONFIG_CONTAINER = "godot-tools";
const CONFIG_CONTAINER = "godotTools";
export function get_configuration(name: string, default_value: any = null) {
let config_value = vscode.workspace.getConfiguration(CONFIG_CONTAINER).get(name, null);