diff --git a/doc/outline.txt b/doc/outline.txt index 08907ad..73a0d77 100644 --- a/doc/outline.txt +++ b/doc/outline.txt @@ -1,4 +1,4 @@ -*outline.txt* For NVIM v0.7.0 Last change: 2023 November 24 +*outline.txt* For NVIM v0.7.0 Last change: 2023 November 25 ============================================================================== Table of Contents *outline-table-of-contents* @@ -17,22 +17,6 @@ Table of Contents *outline-table-of-contents* - Limitations |outline-limitations| - Related plugins |outline-related-plugins| ------------------------------------------------------------------------------ -**Features** - -- Auto-updates items and highlight for current symbol as the cursor moves -- Supports **JSX** (treesitter), **Markdown**, **Norg** (treesitter), in - addition to LSP, with other treesitter support coming soon -- Outline window opened for each tabpage -- Symbol hierarchy UI with collapsible nodes and automatic collapsing based on - cursor movements -- Custom symbol icon function, mapping, or use LspKind (see |outline-custom-function| and |outline-config|) -- Dynamically set cursorline and cursor colors in outline (see - |outline-screenshot|) -- Extra symbol details and line numbers of symbols (see - |outline-screenshot|) -- Preview symbol location without visiting it -- Neovim command modifiers on where to open outline (see |mods|) - PREREQUISITES *outline-prerequisites* diff --git a/lua/outline/sidebar.lua b/lua/outline/sidebar.lua index 9987232..576ff10 100644 --- a/lua/outline/sidebar.lua +++ b/lua/outline/sidebar.lua @@ -58,7 +58,6 @@ end function Sidebar:destroy() self:delete_autocmds() if self.view:is_open() then - vim.print('closing') self.view:close() end self.view = nil