scope.nvim
scope.nvim copied to clipboard
Revolutionize Your Neovim Tab Workflow: Introducing Enhanced Tab Scoping!
If I'm in `projects/python/my_project_1` and run the command `:tabnew` I create a second tab in `projects/python/my_project_1` . If in this second tab I want to open another project i.e `projects/python/my_project_2`...
Hi there, thank you for this great little plugin. It is exactly what I need, but there seems to be a problem in combination with the [Session Manager](https://github.com/Shatur/neovim-session-manager). When I...
i use [bufferline](github.com/akinsho/nvim-bufferline.lua), and scope.nvim works great with it. i have set ```always_show_bufferline = false -- ( don't show bufferline if there is only one file is opened)```. that's why...
Firstly, thanks for making this plugin as this is the workflow I am looking for a lua plugin. From what I understand in the GIF workflow, does this plugin work...
Steps to reproduce: - Try to move/copy over a buffer to a new tab using `:tab sb` or `T` - Do `:ls`. You won't see the buffer as it is...
To reproduce: * open two buffers * `s T` * close one of those buffers
The buffer list gets out of sync if you move a buffer to a new tab using `T`. To recreate: 1. Split a tab and load a file into each...
**Environment** Lazyvim (https://www.lazyvim.org/) ```lua return { { -- asscociate buffer to tab "tiagovla/scope.nvim", lazy = false, config = function() require("scope").setup() end, keys = { { "fB", "Telescope scope buffers", desc...
I've been using [vim-wintabs](https://github.com/zefei/vim-wintabs) for over 5 years, and I'm now trying to take advantage of some of the more advanced bufferline plugins that have come out since the post-lua...
I'm looking for a way to define a condition to associate a set of file with a tab For example, I would like when openning, each "*.test.ts" come into a...