Skip to content

Commit

Permalink
docs: fix outdated diagnostics signs info in help file (#1035)
Browse files Browse the repository at this point in the history
  • Loading branch information
jensgreen authored Jul 6, 2023
1 parent ee0c058 commit 774ccba
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions doc/neo-tree.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1056,14 +1056,14 @@ If you want to use symbols instead of "E", "W", "I", and H", you'll need to
define those somewhere in your nvim configuration. Here is an example:

>lua
vim.fn.sign_define("LspDiagnosticsSignError",
{text = " ", texthl = "LspDiagnosticsSignError"})
vim.fn.sign_define("LspDiagnosticsSignWarning",
{text = " ", texthl = "LspDiagnosticsSignWarning"})
vim.fn.sign_define("LspDiagnosticsSignInformation",
{text = " ", texthl = "LspDiagnosticsSignInformation"})
vim.fn.sign_define("LspDiagnosticsSignHint",
{text = "󰌵", texthl = "LspDiagnosticsSignHint"})
vim.fn.sign_define("DiagnosticSignError",
{text = " ", texthl = "DiagnosticSignError"})
vim.fn.sign_define("DiagnosticSignWarn",
{text = " ", texthl = "DiagnosticSignWarn"})
vim.fn.sign_define("DiagnosticSignInfo",
{text = " ", texthl = "DiagnosticSignInfo"})
vim.fn.sign_define("DiagnosticSignHint",
{text = "󰌵", texthl = "DiagnosticSignHint"})
<

Alternatively, you can also specify the signs and/or highlights in the
Expand Down

0 comments on commit 774ccba

Please sign in to comment.