]> git.lizzy.rs Git - micro.git/commitdiff
Fix repo.json info in plugin docs (#2313)
authorReilly Wood <26268125+rgwood@users.noreply.github.com>
Fri, 31 Dec 2021 07:06:53 +0000 (02:06 -0500)
committerGitHub <noreply@github.com>
Fri, 31 Dec 2021 07:06:53 +0000 (02:06 -0500)
runtime/help/plugins.md

index 723248eb55e801697c9295944c7be7513bd34193..d959488ca5aa2cb4f1112674b48837dd3fd4a340 100644 (file)
@@ -3,9 +3,9 @@
 Micro supports creating plugins with a simple Lua system. Plugins are
 folders containing Lua files and possibly other source files placed
 in `~/.config/micro/plug`. The plugin directory (within `plug`) should
-contain at least one Lua file and an `info.json` file. The info file
+contain at least one Lua file and a `repo.json` file. The `repo.json` file
 provides additional information such as the name of the plugin, the
-plugin's website, dependencies, etc... Here is an example info file
+plugin's website, dependencies, etc... [Here is an example `repo.json` file](https://github.com/micro-editor/updated-plugins/blob/master/go-plugin/repo.json)
 from the go plugin, which has the following file structure:
 
 ```
@@ -17,7 +17,7 @@ from the go plugin, which has the following file structure:
 ```
 
 The `go.lua` file contains the main code for the plugin, though the
-code may be distributed across multiple Lua files. The `info.json`
+code may be distributed across multiple Lua files. The `repo.json`
 file contains information about the plugin such as the website,
 description, version, and any requirements. Plugins may also
 have additional files which can be added to micro's runtime files,