Update plugin versions.

Registered `.cts` extension as TypeScript.
This commit is contained in:
Martín Lucas Golini
2025-07-19 19:55:34 -03:00
parent a537214cc7
commit bd278843e6
5 changed files with 5 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ SyntaxDefinition& addTypeScript() {
->add(
{ "TypeScript",
{ "%.ts$", "%.d%.ts$" },
{ "%.ts$", "%.d%.ts$", "%.cts$" },
{
{ { "//.-\n" }, "comment" },
{ { "/%*", "%*/" }, "comment" },

View File

@@ -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 );

View File

@@ -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 );

View File

@@ -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 );

View File

@@ -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 );