Store project style settings in VCS.

I'm sick of getting my settings stomped on every god damn time I open CLion.
This commit is contained in:
2023-10-11 19:25:24 -07:00
parent 187ff6cb01
commit fd6e0c6899
12 changed files with 148 additions and 71 deletions

View File

@@ -9,10 +9,12 @@
#define KEPP_FRAME_H
#include <cstdint>
#include <vector>
#include "Defs.h"
#include "File.h"
#include "Cursor.h"
typedef std::vector<std::vector<uint8_t>> BufferContents;
@@ -50,6 +52,7 @@ private:
std::string name;
OptString path;
OptFile file;
Cursor cursor;
BufferContents contents;
};