Added Sys::which.

ecode: Added support for more LSP servers: Kotlin, Nim, Ruby, YAML. Added "Format Document" option in editor's context menu (when available).
This commit is contained in:
Martín Lucas Golini
2023-01-15 16:37:16 -03:00
parent 1c755196da
commit 21240d9af9
10 changed files with 149 additions and 15 deletions

View File

@@ -29,7 +29,7 @@ void mainLoop() {
}
// EE_MAIN_FUNC is needed by some platforms to be able to find the real application main
EE_MAIN_FUNC int main( int argc, char* argv[] ) {
EE_MAIN_FUNC int main( int, char*[] ) {
// Create a new window with vsync enabled
win = Engine::instance()->createWindow( WindowSettings( 960, 640, "eepp - Empty Window" ),
ContextSettings( true ) );