summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/lua/vim/diagnostic.lua
AgeCommit message (Expand)AuthorFiles
2022-12-18fix(diagnostic): clear stale cache on reset (#21454)Mathias Fußenegger1
2022-09-15fix(diagnostic): populate data key in DiagnosticChanged autocmd in reset (#20...Gregory Anders1
2022-09-13feat(diagnostic): pass diagnostics as data to DiagnosticChanged autocmd (#20173)Gregory Anders1
2022-09-06fix(diagnostic): remove buf from cache on `BufWipeout` (#20099)Sean Dewar1
2022-08-29fix(lsp): clean the diagnostic cache when buffer delete (#19449)Raphael1
2022-07-31docs: fix typos (#19024)dundargoc1
2022-07-17fix(lsp): move augroup define to if statement (#19406)Raphael1
2022-07-09refactor(lua): replace vim.cmd use with API calls (#19283)Raphael1
2022-07-07refactor(lua): reformat with stylua 0.14.0 (#19264)Christian Clason1
2022-06-08fix(diagnostic): check for negative column value (#18868)mohsen1
2022-05-09chore: format runtime with styluaChristian Clason1
2022-04-20fix(diagnostic): use nvim_exec_autocmds to trigger DiagnosticChanged (#18188)Gregory Anders1
2022-03-27fix(diagnostic): make `open_float` respect global diagnostic options (#17879)Smitesh Patil1
2022-02-21refactor(highlight)!: optional arguments for highlight.range as table (#17462)Christian Clason1
2022-02-20fix(diagnostic): use botright copen for qflist (#17475)Michael Lingelbach1
2022-02-19fix: lsp and diagnostic highlight priority (#17461)Michael Lingelbach1
2022-01-11feat(diagnostic): allow retrieving current diagnostic configGregory Anders1
2022-01-11fix(diagnostic): only set default handler config if unsetGregory Anders1
2022-01-11fix(diagnostic): allow setting arbitrary config valuesGregory Anders1
2022-01-11fix(diagnostic): resolve nil opts tablesGregory Anders1
2022-01-03fix: resolve nil arguments to API functions (#16889)Gregory Anders1
2022-01-01fix(diagnostic): improve validation for list arguments (#16855)Gregory Anders1
2021-12-28chore: fix typos (#16506)dundargoc1
2021-12-17fix(diagnostic): respect "if_many" source option for virtual text (#16653)Gregory Anders1
2021-12-16refactor(diagnostic): remove hack (#16685)Gregory Anders1
2021-12-16fix(diagnostic): assert that diagnostics have line number and column (#16683)Gregory Anders1
2021-12-08fix(diagnostic): set effective buffer number in autocmd (again) (#16589)Gregory Anders1
2021-12-08refactor(diagnostic): remove bufnr parameter from open_float (#16579)Gregory Anders1
2021-12-05refactor: format diagnostic.lua (#16540)Gregory Anders1
2021-12-05fix(diagnostic): escape special chars in file names (#16527)Matthew Toohey1
2021-12-04feat(lsp,diagnostic): open folds in jump-related functions (#16520)Dmytro Meleshko1
2021-12-02fix(diagnostic): clamp diagnostics on negative line numbers (#16496)Michael Lingelbach1
2021-12-01fix(diagnostic): set effective buffer number for DiagnosticChanged autocmd (#...Gregory Anders1
2021-11-29feat(lsp): add 'focus' option to open_floating_preview (#16465)Gregory Anders1
2021-11-28feat(diagnostic): use `scope = 'line'` by default for `open_float()` (#16456)cbarrete1
2021-11-27fix(diagnostic): make set() go through cache when calling show()Gregory Anders1
2021-11-27chore: fix typos (#16361)dundargoc1
2021-11-25feat(diagnostic)!: make DiagnosticChanged a first class autocmd (#16098)Gregory Anders1
2021-11-25Merge pull request #16434 from gpanders/diagnostic-clampageMichael Lingelbach1
2021-11-24fix(diagnostic): do not focus floats in goto functions (#16433)Gregory Anders1
2021-11-24fix(diagnostic): don't clamp line numbers in setqflistGregory Anders1
2021-11-24fix(diagnostic): get line count per buffer when clampingGregory Anders1
2021-11-22fix(diagnostic): resolve buffer number in get() (#16407)Gregory Anders1
2021-11-22fix(diagnostics): don't allow 0 bufnr for metatable index (#16405)Gregory Anders1
2021-11-21fix(diagnostic): remove invalid buffers from cache (#16397)smolck1
2021-11-19fix(diagnostic): clamp line numbers in setqflist and setloclistGregory Anders1
2021-11-19fix(diagnostic): fix navigation with diagnostics placed past end of lineGregory Anders1
2021-11-19fix(diagnostic): deepcopy diagnostics before clamping line numbersGregory Anders1
2021-11-18fix(diagnostic): don't use nil col if missing from qflist (#16357)Gregory Anders1
2021-11-16Merge pull request #16328 from gpanders/diagnostic-prefix-hiGregory Anders1