diff --git a/CHANGELOG.md b/CHANGELOG.md index 89bf727..029b71c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.18.1](https://github.com/quarto-dev/quarto-nvim/compare/v0.18.0...v0.18.1) (2024-02-19) + + +### Bug Fixes + +* make disabling keybindings easier. refs [#116](https://github.com/quarto-dev/quarto-nvim/issues/116) ([1b15dd1](https://github.com/quarto-dev/quarto-nvim/commit/1b15dd175b974cb8c83b022f68cc07c02c9c465b)) +* QuartoHover user function ([#113](https://github.com/quarto-dev/quarto-nvim/issues/113)) ([a4760c0](https://github.com/quarto-dev/quarto-nvim/commit/a4760c0b275972bc8ef577f7521771d17cb0cd17)) + ## [0.18.0](https://github.com/quarto-dev/quarto-nvim/compare/v0.17.0...v0.18.0) (2023-11-29) diff --git a/doc/quarto.txt b/doc/quarto.txt index 01ea0dc..bad6781 100644 --- a/doc/quarto.txt +++ b/doc/quarto.txt @@ -1,4 +1,4 @@ -*quarto.txt* For Neovim >= 0.8.0 Last change: 2024 February 10 +*quarto.txt* For Neovim >= 0.8.0 Last change: 2024 February 19 ============================================================================== Table of Contents *quarto-table-of-contents* @@ -95,16 +95,16 @@ example. If you want to use the defaults, simply call `setup` without arguments or with an empty table. >lua - require('quarto').setup({ + require('quarto').setup{ debug = false, closePreviewOnExit = true, lspFeatures = { enabled = true, - languages = { 'r', 'python', 'julia', 'bash' }, - chunks = 'curly', -- 'curly' or 'all' + chunks = "curly", + languages = { "r", "python", "julia", "bash", "html" }, diagnostics = { enabled = true, - triggers = { "BufWritePost" } + triggers = { "BufWritePost" }, }, completion = { enabled = true, @@ -118,12 +118,16 @@ or with an empty table. never_run = { "yaml" }, -- filetypes which are never sent to a code runner }, keymap = { - hover = 'K', - definition = 'gd', - rename = 'lR', - references = 'gr', + -- set whole section or individual keys to `false` to disable + hover = "K", + definition = "gd", + type_definition = "gD", + rename = "lR", + format = "lf", + references = "gr", + document_symbols = "gS", } - }) + } <