mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-07-15 07:22:49 +03:00
Added Variant "String" support.
Added panel location configuration (left or right). Added default key modifier (CTRL on Linux and windows, META on macOS, ALT on Haiku). Optimized GlobalSearchController. Allow using $FILENAME in linter warning pattern. Optimized ProjectSearch. Added TextDocument delete on close option (default for temporal files downloaded from the Internet).
This commit is contained in:
@@ -24,6 +24,10 @@ class FormatterModule : public UICodeEditorModule {
|
||||
|
||||
void onUnregister( UICodeEditor* );
|
||||
|
||||
bool getAutoFormatOnSave() const;
|
||||
|
||||
void setAutoFormatOnSave( bool autoFormatOnSave );
|
||||
|
||||
protected:
|
||||
enum class FormatterType { Inplace, Output };
|
||||
|
||||
@@ -36,8 +40,9 @@ class FormatterModule : public UICodeEditorModule {
|
||||
std::shared_ptr<ThreadPool> mPool;
|
||||
std::vector<Formatter> mFormatters;
|
||||
std::set<UICodeEditor*> mEditors;
|
||||
bool mClosing{ false };
|
||||
|
||||
bool mAutoFormatOnSave{ false };
|
||||
bool mClosing{ false };
|
||||
bool mReady{ false };
|
||||
|
||||
void load( const std::string& formatterPath );
|
||||
|
||||
Reference in New Issue
Block a user