Basic completion support

This commit is contained in:
2026-01-06 11:39:17 +00:00
parent a905e333fc
commit e9da17eb34
15 changed files with 423 additions and 219 deletions

View File

@@ -8,7 +8,7 @@
struct Bar {
Coord screen;
std::string command = "";
int cursor = 0;
uint32_t cursor = 0;
Bar(Coord screen) : screen(screen) {}
void render();

View File

@@ -6,6 +6,7 @@
#include "utils/utils.h"
struct CompletionBox {
std::shared_mutex mtx;
struct CompletionSession *session;
bool hidden = true;
std::vector<ScreenCell> cells;