mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-02 19:46:29 +03:00
Added C3 syntax highlighting and LSP support.
Refactored TextUndoStack, now uses std::variant and avoids heap allocating each command. Fix possible crash in Process::readAll. Fix SyntaxDefinition::setSymbols. Some minor improvements for Odin and Ü syntax definitions. Fix Git plugin silent configuration.
This commit is contained in:
@@ -75,7 +75,7 @@ class GitPlugin : public PluginBase {
|
||||
|
||||
void updateRepos();
|
||||
|
||||
bool isSilent() const { return mSilence; }
|
||||
bool isSilent() const { return mSilent; }
|
||||
|
||||
protected:
|
||||
std::unique_ptr<Git> mGit;
|
||||
@@ -97,7 +97,7 @@ class GitPlugin : public PluginBase {
|
||||
bool mOldDontAutoHideOnMouseMove{ false };
|
||||
bool mOldUsingCustomStyling{ false };
|
||||
bool mInitialized{ false };
|
||||
bool mSilence{ true };
|
||||
bool mSilent{ true };
|
||||
Uint32 mOldTextStyle{ 0 };
|
||||
Uint32 mOldTextAlign{ 0 };
|
||||
Color mOldBackgroundColor;
|
||||
|
||||
Reference in New Issue
Block a user