mhanberg/output-panel.nvim

github github
pluginutility
stars 75
issues 2
subscribers 5
forks 3
CREATED

2023-04-14

UPDATED

4 days ago


output-panel.nvim

A panel to view the logs from your LSP servers.

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.