Skip to content

mhanberg/output-panel.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c6c9628 · Mar 3, 2025

History

18 Commits
Mar 3, 2025
Jan 12, 2025
Jan 12, 2025
Jan 12, 2025
Jan 12, 2025
Jan 12, 2025
Jan 12, 2025
Jan 12, 2025
Apr 14, 2023
Jan 12, 2025
Jan 12, 2025
Jan 12, 2025
Mar 3, 2025
Jan 12, 2025
Jan 12, 2025

Repository files navigation

output-panel.nvim

A panel to view the logs from your LSP servers.

image

Install

lazy.nvim

{
  "mhanberg/output-panel.nvim",
  version = "*",
  event = "VeryLazy",
  config = function()
    require("output_panel").setup({
      max_buffer_size = 5000 -- default
    })
  end,
  cmd = { "OutputPanel" },
  keys = {
    {
      "<leader>o",
      vim.cmd.OutputPanel,
      mode = "n",
      desc = "Toggle the output panel",
    },
  }
}

Usage

  • :OutputPanel to toggle the panel

Each tab in the panel can be navigated to by hitting the number in the tab next to the tab name.