ecode: Added command palette.

This commit is contained in:
Martín Lucas Golini
2023-02-08 02:37:37 -03:00
parent 7bccac1c06
commit a6ea966348
16 changed files with 409 additions and 39 deletions

View File

@@ -211,6 +211,7 @@ class App : public UICodeEditorSplitter::Client {
t.setCommand( "find-replace", [&] { showFindView(); } );
t.setCommand( "open-global-search", [&] { showGlobalSearch( false ); } );
t.setCommand( "open-locatebar", [&] { mFileLocator->showLocateBar(); } );
t.setCommand( "open-command-palette", [&] { mFileLocator->showCommandPalette(); } );
t.setCommand( "editor-set-line-breaking-column", [&] { setLineBreakingColumn(); } );
t.setCommand( "editor-set-line-spacing", [&] { setLineSpacing(); } );
t.setCommand( "editor-set-cursor-blinking-time", [&] { setCursorBlinkingTime(); } );