mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
Update plugin versions.
Registered `.cts` extension as TypeScript.
This commit is contained in:
@@ -11,7 +11,7 @@ SyntaxDefinition& addTypeScript() {
|
||||
->add(
|
||||
|
||||
{ "TypeScript",
|
||||
{ "%.ts$", "%.d%.ts$" },
|
||||
{ "%.ts$", "%.d%.ts$", "%.cts$" },
|
||||
{
|
||||
{ { "//.-\n" }, "comment" },
|
||||
{ { "/%*", "%*/" }, "comment" },
|
||||
|
||||
@@ -18,7 +18,7 @@ class AIAssistantPlugin : public PluginBase {
|
||||
|
||||
static PluginDefinition Definition() {
|
||||
return { "aiassistant", "AI Assistant", "Chat with your favorite AI assistant",
|
||||
AIAssistantPlugin::New, { 0, 0, 2 }, AIAssistantPlugin::NewSync };
|
||||
AIAssistantPlugin::New, { 0, 0, 3 }, AIAssistantPlugin::NewSync };
|
||||
}
|
||||
|
||||
static Plugin* New( PluginManager* pluginManager );
|
||||
|
||||
@@ -52,7 +52,7 @@ class DebuggerPlugin : public PluginBase {
|
||||
public:
|
||||
static PluginDefinition Definition() {
|
||||
return { "debugger", "Debugger", "Debugger integration",
|
||||
DebuggerPlugin::New, { 0, 0, 3 }, DebuggerPlugin::NewSync };
|
||||
DebuggerPlugin::New, { 0, 0, 4 }, DebuggerPlugin::NewSync };
|
||||
}
|
||||
|
||||
static Plugin* New( PluginManager* pluginManager );
|
||||
|
||||
@@ -35,7 +35,7 @@ class FormatterPlugin : public Plugin {
|
||||
static PluginDefinition Definition() {
|
||||
return {
|
||||
"autoformatter", "Auto Formatter", "Enables the code formatter/prettifier plugin.",
|
||||
FormatterPlugin::New, { 0, 2, 6 }, FormatterPlugin::NewSync };
|
||||
FormatterPlugin::New, { 0, 2, 7 }, FormatterPlugin::NewSync };
|
||||
}
|
||||
|
||||
static Plugin* New( PluginManager* pluginManager );
|
||||
|
||||
@@ -37,7 +37,7 @@ static constexpr const char* GIT_STASH_TOOLTIP_CLASS = "git-stash-tooltip";
|
||||
class GitPlugin : public PluginBase {
|
||||
public:
|
||||
static PluginDefinition Definition() {
|
||||
return { "git", "Git", "Git integration", GitPlugin::New, { 0, 1, 3 }, GitPlugin::NewSync };
|
||||
return { "git", "Git", "Git integration", GitPlugin::New, { 0, 1, 4 }, GitPlugin::NewSync };
|
||||
}
|
||||
|
||||
static Plugin* New( PluginManager* pluginManager );
|
||||
|
||||
Reference in New Issue
Block a user