Minor fix in terminal commands.

Replaced PHP LSP server in favor of an open-source and free LSP.
This commit is contained in:
Martín Lucas Golini
2023-07-08 14:24:17 -03:00
parent c1dfb83ed6
commit 1f6122cb85
3 changed files with 5 additions and 5 deletions

View File

@@ -58,9 +58,9 @@
},
{
"language": "php",
"name": "intelephense",
"url": "https://intelephense.com/",
"command": "intelephense --stdio",
"name": "phpactor",
"url": "https://phpactor.readthedocs.io",
"command": "phpactor language-server",
"file_patterns": ["%.php$", "%.php%d$"]
},
{

View File

@@ -8,7 +8,7 @@ void addGLSL() {
SyntaxDefinitionManager::instance()->add(
{ "GLSL",
{ "%.glsl$", "%.frag$", "%.vert$", "%.fs$", "%.vs$" },
{ "%.glsl$", "%.frag$", "%.vert$", "%.fs$", "%.vs$", "%.tesc", "%.tese" },
{
{ { "//.-\n" }, "comment" },
{ { "/%*", "%*/" }, "comment" },

View File

@@ -338,7 +338,7 @@ void TerminalManager::setKeybindings( UITerminal* term ) {
{ "open-file", "download-file-web", "open-folder", "debug-draw-highlight-toggle",
"debug-draw-boxes-toggle", "debug-draw-debug-data", "debug-widget-tree-view",
"open-locatebar", "open-command-palette", "open-global-search", "menu-toggle",
"console-toggle", "go-to-line" } );
"console-toggle", "go-to-line", "editor-go-back", "editor-go-forward" } );
}
} // namespace ecode