Skip to content

Commit

Permalink
chore(build): auto-generate vimdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 19, 2024
1 parent 3b270ff commit 7174567
Showing 1 changed file with 14 additions and 10 deletions.
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 7174567

Please sign in to comment.