repos / neovimcraft

website that makes it easy to find neovim plugins
git clone https://github.com/neurosnap/neovimcraft.git

commit
633df4b
parent
16bbee6
author
Eric Bower
date
2021-11-29 19:46:07 +0000 UTC
fix issue with scrape process which prevents data from being updated
2 files changed,  +8, -86
M scripts/scrape.ts
+1, -1
1@@ -66,7 +66,7 @@ async function processMarkdown(text: string) {
2           const href = link.replace('https://github.com/', '').replace('http://github.com', '');
3           const d = href.split('/');
4           resource.username = d[0];
5-          resource.repo = d[1];
6+          resource.repo = d[1].replace(/#.+/, '');
7           resources.push(resource);
8         });
9       });
M src/lib/resources.json
+7, -85
  1@@ -331,93 +331,9 @@
  2     {
  3       "type": "github",
  4       "username": "echasnovski",
  5-      "repo": "mini.nvim#minibase16",
  6-      "tags": ["colorscheme-creation", "plugin"]
  7-    },
  8-    {
  9-      "type": "github",
 10-      "username": "echasnovski",
 11-      "repo": "mini.nvim#minibufremove",
 12-      "tags": ["utility", "plugin"]
 13-    },
 14-    {
 15-      "type": "github",
 16-      "username": "echasnovski",
 17-      "repo": "mini.nvim#minicomment",
 18-      "tags": ["comment", "plugin"]
 19-    },
 20-    {
 21-      "type": "github",
 22-      "username": "echasnovski",
 23-      "repo": "mini.nvim#minicompletion",
 24-      "tags": ["completion", "plugin"]
 25-    },
 26-    {
 27-      "type": "github",
 28-      "username": "echasnovski",
 29-      "repo": "mini.nvim#minicursorword",
 30-      "tags": ["cursorline", "plugin"]
 31-    },
 32-    {
 33-      "type": "github",
 34-      "username": "echasnovski",
 35-      "repo": "mini.nvim#minifuzzy",
 36-      "tags": ["fuzzy-finder", "plugin"]
 37-    },
 38-    {
 39-      "type": "github",
 40-      "username": "echasnovski",
 41-      "repo": "mini.nvim#minijump",
 42-      "tags": ["motion", "plugin"]
 43-    },
 44-    {
 45-      "type": "github",
 46-      "username": "echasnovski",
 47-      "repo": "mini.nvim#minipairs",
 48-      "tags": ["editing-support", "plugin"]
 49-    },
 50-    {
 51-      "type": "github",
 52-      "username": "echasnovski",
 53-      "repo": "mini.nvim#minisessions",
 54+      "repo": "mini.nvim",
 55       "tags": ["session", "plugin"]
 56     },
 57-    {
 58-      "type": "github",
 59-      "username": "echasnovski",
 60-      "repo": "mini.nvim#ministarter",
 61-      "tags": ["startup", "plugin"]
 62-    },
 63-    {
 64-      "type": "github",
 65-      "username": "echasnovski",
 66-      "repo": "mini.nvim#ministatusline",
 67-      "tags": ["statusline", "plugin"]
 68-    },
 69-    {
 70-      "type": "github",
 71-      "username": "echasnovski",
 72-      "repo": "mini.nvim#minisurround",
 73-      "tags": ["syntax", "plugin"]
 74-    },
 75-    {
 76-      "type": "github",
 77-      "username": "echasnovski",
 78-      "repo": "mini.nvim#minitabline",
 79-      "tags": ["tabline", "plugin"]
 80-    },
 81-    {
 82-      "type": "github",
 83-      "username": "echasnovski",
 84-      "repo": "mini.nvim#minitrailspace",
 85-      "tags": ["editing-support", "plugin"]
 86-    },
 87-    {
 88-      "type": "github",
 89-      "username": "echasnovski",
 90-      "repo": "mini.nvim#plugin-colorscheme",
 91-      "tags": ["tree-sitter-supported-colorscheme", "plugin"]
 92-    },
 93     {
 94       "type": "github",
 95       "username": "EdenEast",
 96@@ -1570,6 +1486,12 @@
 97       "repo": "nvim-luapad",
 98       "tags": ["neovim-lua-development", "plugin"]
 99     },
100+    {
101+      "type": "github",
102+      "username": "rafcamlet",
103+      "repo": "tabline-framework.nvim",
104+      "tags": ["tabline", "plugin"]
105+    },
106     {
107       "type": "github",
108       "username": "Rasukarusan",