aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-07-07 13:08:09 +0200
committerGitHub <noreply@github.com>2022-07-07 13:08:09 +0200
commit139d8593d13afcf9b7cb674bf68c9b6e484a2958 (patch)
tree8c1be44a88398d9319af8b0f97fe4340d1ce9a81
parentfix(mason-lspconfig): fix incorrect require path (diff)
downloadmason-139d8593d13afcf9b7cb674bf68c9b6e484a2958.tar
mason-139d8593d13afcf9b7cb674bf68c9b6e484a2958.tar.gz
mason-139d8593d13afcf9b7cb674bf68c9b6e484a2958.tar.bz2
mason-139d8593d13afcf9b7cb674bf68c9b6e484a2958.tar.lz
mason-139d8593d13afcf9b7cb674bf68c9b6e484a2958.tar.xz
mason-139d8593d13afcf9b7cb674bf68c9b6e484a2958.tar.zst
mason-139d8593d13afcf9b7cb674bf68c9b6e484a2958.zip
docs: highlight this still being in alpha stage (#3)
-rw-r--r--README.md9
-rw-r--r--lua/mason/ui/components/header.lua7
2 files changed, 14 insertions, 2 deletions
diff --git a/README.md b/README.md
index 169f8b04..8ae53efe 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-[![GitHub CI](https://github.com/williamboman/mason.nvim/workflows/Tests/badge.svg)](https://github.com/williamboman/mason.nvim/actions)
+[![GitHub CI](https://github.com/williamboman/mason.nvim/workflows/Tests/badge.svg)](https://github.com/williamboman/mason.nvim/actions?query=workflow%3ATests+branch%3Aalpha+event%3Apush)
![Platforms](https://img.shields.io/badge/platform-linux%20macOS%20windows-blue)
![Repository size](https://img.shields.io/github/repo-size/williamboman/mason.nvim)
[![Sponsors](https://img.shields.io/github/sponsors/williamboman?style=flat-square)](https://github.com/sponsors/williamboman)
@@ -10,6 +10,11 @@
Easily install and manage LSP servers, DAP servers, linters, and formatters.
</p>
+<p align="center">
+ <em>Still a WIP - things remain subject to change and documentation is somewhat lacking.</em>
+ <em><a href="https://github.com/williamboman/mason.nvim/discussions/new?category=ideas">Early feedback is very much appreciated</a></em>
+</p>
+
# Table of Contents
- [Introduction](#introduction)
@@ -27,7 +32,7 @@ linters, and formatters through a single interface. It runs everywhere Neovim ru
with only a small set of [external requirements](#requirements) needed.
Packages are installed to Neovim's `:h stdpath` by default. Executables are linked to a single `bin/` directory, which
-`mason.nvim` will add to Neovim's PATH during setup, allowing seamless access for Neovim builtins (shell, terminal,
+`mason.nvim` will add to Neovim's PATH during setup, allowing seamless access from Neovim builtins (shell, terminal,
etc.) as well as other 3rd party plugins.
## Screenshots
diff --git a/lua/mason/ui/components/header.lua b/lua/mason/ui/components/header.lua
index 07ea20cf..8ca7494e 100644
--- a/lua/mason/ui/components/header.lua
+++ b/lua/mason/ui/components/header.lua
@@ -6,10 +6,14 @@ return function(state)
return Ui.CascadingStyleNode({ "CENTERED" }, {
Ui.HlTextNode {
Ui.When(state.view.is_showing_help, {
+ p.none " ",
p.header_secondary(" " .. state.header.title_prefix .. " mason.nvim "),
+ p.Comment " alpha branch",
p.none((" "):rep(#state.header.title_prefix + 1)),
}, {
+ p.none " ",
p.header " mason.nvim ",
+ p.Comment " alpha branch",
}),
Ui.When(
state.view.is_showing_help,
@@ -17,6 +21,9 @@ return function(state)
{ p.none "press ", p.highlight "?", p.none " for help" }
),
{ p.Comment "https://github.com/williamboman/mason.nvim" },
+ {
+ p.Comment "Give usage feedback: https://github.com/williamboman/mason.nvim/discussions/new?category=ideas",
+ },
},
})
end