From 746b8a6206bcce7c4f15e3bff80ad81f3ae72dc6 Mon Sep 17 00:00:00 2001 From: Baptiste Zorzi Date: Thu, 11 Jan 2024 14:06:55 +0100 Subject: [PATCH 1/3] [fix] - Fixing Coc symbol parsing bug --- lua/outline/providers/coc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/outline/providers/coc.lua b/lua/outline/providers/coc.lua index 47b725d..bef7efb 100644 --- a/lua/outline/providers/coc.lua +++ b/lua/outline/providers/coc.lua @@ -76,7 +76,7 @@ function M.request_symbols(on_symbols, opts) vim.fn.call('CocActionAsync', { 'documentSymbols', function(_, symbols) - on_symbols({ [1000000] = { result = convert_symbols(symbols) } }, opts) + on_symbols(convert_symbols(symbols), opts) end, }) end From c63ac09b96c04dc5a3a1e63f0a0d834c6d26a2a4 Mon Sep 17 00:00:00 2001 From: mbpowers <45055485+mbpowers@users.noreply.github.com> Date: Sun, 21 Jan 2024 14:00:55 -0600 Subject: [PATCH 2/3] missing comma in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc735f8..5b79159 100644 --- a/README.md +++ b/README.md @@ -311,7 +311,7 @@ Pass a table to the setup call with your configuration options. -- winhl options for the preview window, see ':h winhl' winhl = 'NormalFloat:', -- Pseudo-transparency of the preview window, see ':h winblend' - winblend = 0 + winblend = 0, -- Experimental feature that let's you edit the source content live -- in the preview window. Like VS Code's "peek editor". live = false From a8d40aecb799196303ff3521c0e31c87bba57198 Mon Sep 17 00:00:00 2001 From: hedyhli Date: Mon, 22 Jan 2024 00:02:16 +0000 Subject: [PATCH 3/3] chore(vimdoc): Auto update --- doc/outline.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/outline.txt b/doc/outline.txt index d55504b..18c416a 100644 --- a/doc/outline.txt +++ b/doc/outline.txt @@ -1,4 +1,4 @@ -*outline.txt* For NVIM v0.7.0 Last change: 2023 December 27 +*outline.txt* For NVIM v0.7.0 Last change: 2024 January 22 ============================================================================== Table of Contents *outline-table-of-contents* @@ -263,7 +263,7 @@ Show defaults ~ -- winhl options for the preview window, see ':h winhl' winhl = 'NormalFloat:', -- Pseudo-transparency of the preview window, see ':h winblend' - winblend = 0 + winblend = 0, -- Experimental feature that let's you edit the source content live -- in the preview window. Like VS Code's "peek editor". live = false