Make it work with flake.nix

This commit is contained in:
2026-07-08 14:52:12 +01:00
parent 10287e1750
commit 8c437d2639
12 changed files with 894 additions and 782 deletions
+1 -1
View File
@@ -36,6 +36,7 @@ extern "C" {
#include <map>
#include <mutex>
#include <optional>
#include <poll.h>
#include <queue>
#include <set>
#include <shared_mutex>
@@ -44,7 +45,6 @@ extern "C" {
#include <string.h>
#include <string>
#include <sys/ioctl.h>
#include <sys/poll.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <termios.h>
File diff suppressed because it is too large Load Diff
+1
View File
@@ -124,6 +124,7 @@ extern std::unordered_map<std::string, LSP> lsps;
#define ABS(x) ((x) < 0 ? -(x) : (x))
#define UNUSED(x) (void)(x)
#define USING(x) UNUSED(sizeof(x))
#define CTRL(x) ((x) & 0x1f)
inline uint32_t HEX(const std::string &s) {
if (s.empty())