backdround / tabscope.nvim

Manages buffers as tab-local buffers!
MIT License
42 stars 0 forks source link

Tests

Tabscope.nvim

It's a neovim plugin that turns global buffers into tab-local buffers. So you can use buffers while have different contexts in different tabs.

Preview

tabscope-preview

Configuration

-- Initialize tabscope
require("tabscope").setup({})

-- To remove tab local buffer, use remove_tab_buffer:
vim.keymap.set("n", "<M-o>", require("tabscope").remove_tab_buffer)

Session limitation

There is no way to get info about hidden buffers that loaded by session. So all hidden buffers are dropped after session loaded.

Inspired by

scope.nvim