mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2026-01-04 10:09:58 +03:00
Fix wrong section-identifier used to retrieve configuration (#475)
Fix #474
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user