Skip to content

Commit

Permalink
Merge branch 'main' of github.com:quarto-dev/quarto-nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Feb 19, 2024
2 parents 5336b86 + fd565b9 commit 71aca95
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
24 changes: 14 additions & 10 deletions doc/quarto.txt
Original file line number Diff line number Diff line change
@@ -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*
Expand Down Expand Up @@ -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,
Expand All @@ -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 = '<leader>lR',
references = 'gr',
-- set whole section or individual keys to `false` to disable
hover = "K",
definition = "gd",
type_definition = "gD",
rename = "<leader>lR",
format = "<leader>lf",
references = "gr",
document_symbols = "gS",
}
})
}
<


Expand Down

0 comments on commit 71aca95

Please sign in to comment.