From 4cfc96ab73b8110f54d29733d5404f0d5cdca149 Mon Sep 17 00:00:00 2001 From: BethanyG Date: Fri, 28 Jul 2023 13:33:33 -0700 Subject: [PATCH 1/2] Added first pass at key features and icons. --- config.json | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 7281f3c..f4d5c29 100644 --- a/config.json +++ b/config.json @@ -292,7 +292,38 @@ ] }, "concepts": [], - "key_features": [], + "key_features": [ + { + "icon": "extensible", + "title": "Extensible", + "content": "Looking for certain functionality? It can be easily created and deployed." + }, + { + "icon": "tooling", + "title": "Deeply integrated with Vim", + "content": "Productivity win! Access and manipulate Vim internal data structures and settings with ease." + }, + { + "icon": "expressive", + "title": "Expressive syntax", + "content": "Do a lot with a little. Write compact scripts that are highly readable." + }, + { + "icon": "multi-paradigm", + "title": "Multi-paradigm", + "content": "Supports writing imperatively or functionally." + }, + { + "icon": "interop", + "title": "Integrates well with others", + "content": "Access files, shells, & other programs. All the power of external tooling without leaving Vim." + }, + { + "icon": "concurrency", + "title": "Event-driven programming", + "content": "Automatic code execution based on certain events or conditions like file opens or buffer saves." + } + ], "tags": [ "paradigm/functional", "paradigm/imperative", From c6de9591915854bdf6d4ddf97e2116274671cfe7 Mon Sep 17 00:00:00 2001 From: BethanyG Date: Fri, 28 Jul 2023 13:44:27 -0700 Subject: [PATCH 2/2] Fix title lenght to under 25 chars. --- config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index f4d5c29..ce05b90 100644 --- a/config.json +++ b/config.json @@ -300,7 +300,7 @@ }, { "icon": "tooling", - "title": "Deeply integrated with Vim", + "title": "Deep Vim integration", "content": "Productivity win! Access and manipulate Vim internal data structures and settings with ease." }, { @@ -315,7 +315,7 @@ }, { "icon": "interop", - "title": "Integrates well with others", + "title": "Highly interoperable", "content": "Access files, shells, & other programs. All the power of external tooling without leaving Vim." }, {