We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64c74a5 commit 358db99Copy full SHA for 358db99
app_config.h
@@ -0,0 +1 @@
1
+
include/zep/editor.h
@@ -436,7 +436,7 @@ class ZepEditor
436
tBuffers m_buffers;
437
uint32_t m_flags = 0;
438
439
- mutable std::atomic_bool m_bPendingRefresh = true;
+ mutable std::atomic_bool m_bPendingRefresh = { true };
440
mutable bool m_lastCursorBlink = false;
441
442
std::vector<std::string> m_commandLines; // Command information, shown under the buffer
src/filesystem.cpp
@@ -11,7 +11,12 @@
11
#if defined(ZEP_FEATURE_CPP_FILE_SYSTEM)
12
13
#include <filesystem>
14
-namespace cpp_fs = std::filesystem;
15
+#ifdef __APPLE__
16
+ namespace cpp_fs = std::__fs::filesystem;
17
+#else
18
+ namespace cpp_fs = std::filesystem;
19
+#endif
20
21
namespace Zep
22
{
0 commit comments