fix: don't force close the docs view window

This commit is contained in:
amrbashir
2022-05-29 14:52:20 +02:00
parent 7150b700c2
commit 64a4756f5b
3 changed files with 6 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ use {
config = function()
require("docs-view").setup {
position = "right",
width = vim.api.nvim_get_option("columns") / 3,
width = 60,
}
end
}
@@ -29,7 +29,7 @@ Plug 'amrbashir/nvim-docs-view', { 'on': 'DocsViewToggle'}
lua << EOF
require("docs-view").setup {
position = "right",
width = vim.api.nvim_get_option("columns") / 3,
width = 60,
}
EOF
```