fix: LspDiagnostics linking
This commit is contained in:
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -2,7 +2,7 @@ name: build
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main, dev]
|
branches: [main]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@@ -23,7 +23,7 @@ jobs:
|
|||||||
- uses: rhysd/action-setup-vim@v1
|
- uses: rhysd/action-setup-vim@v1
|
||||||
with:
|
with:
|
||||||
neovim: true
|
neovim: true
|
||||||
version: nightly
|
version: stable
|
||||||
|
|
||||||
- name: Setup git
|
- name: Setup git
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -421,10 +421,10 @@ local function generate(p, opt)
|
|||||||
-- LspDiagnosticsFloatingInformation { }, -- Used to color "Information" diagnostic messages in diagnostics float
|
-- LspDiagnosticsFloatingInformation { }, -- Used to color "Information" diagnostic messages in diagnostics float
|
||||||
-- LspDiagnosticsFloatingHint { }, -- Used to color "Hint" diagnostic messages in diagnostics float
|
-- LspDiagnosticsFloatingHint { }, -- Used to color "Hint" diagnostic messages in diagnostics float
|
||||||
|
|
||||||
LspDiagnosticsSignError { DiagnosticSignError }, -- Used for "Error" signs in sign column
|
LspDiagnosticsSignError { base.DiagnosticSignError }, -- Used for "Error" signs in sign column
|
||||||
LspDiagnosticsSignWarning { DiagnosticSignWarn }, -- Used for "Warning" signs in sign column
|
LspDiagnosticsSignWarning { base.DiagnosticSignWarn }, -- Used for "Warning" signs in sign column
|
||||||
LspDiagnosticsSignInformation { DiagnosticSignInfo }, -- Used for "Information" signs in sign column
|
LspDiagnosticsSignInformation { base.DiagnosticSignInfo }, -- Used for "Information" signs in sign column
|
||||||
LspDiagnosticsSignHint { DiagnosticSignHint }, -- Used for "Hint" signs in sign column
|
LspDiagnosticsSignHint { base.DiagnosticSignHint }, -- Used for "Hint" signs in sign column
|
||||||
}
|
}
|
||||||
end)
|
end)
|
||||||
---@diagnostic enable: undefined-global
|
---@diagnostic enable: undefined-global
|
||||||
|
|||||||
@@ -421,10 +421,10 @@ local function generate(p, opt)
|
|||||||
-- LspDiagnosticsFloatingInformation { }, -- Used to color "Information" diagnostic messages in diagnostics float
|
-- LspDiagnosticsFloatingInformation { }, -- Used to color "Information" diagnostic messages in diagnostics float
|
||||||
-- LspDiagnosticsFloatingHint { }, -- Used to color "Hint" diagnostic messages in diagnostics float
|
-- LspDiagnosticsFloatingHint { }, -- Used to color "Hint" diagnostic messages in diagnostics float
|
||||||
|
|
||||||
LspDiagnosticsSignError { DiagnosticSignError }, -- Used for "Error" signs in sign column
|
LspDiagnosticsSignError { base.DiagnosticSignError }, -- Used for "Error" signs in sign column
|
||||||
LspDiagnosticsSignWarning { DiagnosticSignWarn }, -- Used for "Warning" signs in sign column
|
LspDiagnosticsSignWarning { base.DiagnosticSignWarn }, -- Used for "Warning" signs in sign column
|
||||||
LspDiagnosticsSignInformation { DiagnosticSignInfo }, -- Used for "Information" signs in sign column
|
LspDiagnosticsSignInformation { base.DiagnosticSignInfo }, -- Used for "Information" signs in sign column
|
||||||
LspDiagnosticsSignHint { DiagnosticSignHint }, -- Used for "Hint" signs in sign column
|
LspDiagnosticsSignHint { base.DiagnosticSignHint }, -- Used for "Hint" signs in sign column
|
||||||
}
|
}
|
||||||
end)
|
end)
|
||||||
---@diagnostic enable: undefined-global
|
---@diagnostic enable: undefined-global
|
||||||
|
|||||||
Reference in New Issue
Block a user