project.nvim icon indicating copy to clipboard operation
project.nvim copied to clipboard

The superior project management solution for neovim.

Results 108 project.nvim issues
Sort by recently updated
recently updated
newest added

If I run project.nvim lazily, it won't show any projects registered the first time. ```lua { 'ahmedkhalf/project.nvim', -- lazy = false, config = function() require("project_nvim").setup{ patterns = { ".git", "_darcs",...

## New options added ```lua -- Don't chdir for certain buffers exclude_chdir = { filetype = {"", "OverseerList", "alpha"}, buftype = {"nofile", "terminal"}, }, ``` This allow users to exclude...

Hello, I'd like to have a feature where you could set priorities with patterns For example, in CMake projects you can have subdirectories having CMakeLists.txt, but project should be set...

I'm using `creativenull/efmls-configs-nvim` to have access to linters diagnostics and formatting tools, and when I open a project through `project.nvim` it doesn't recognize the project installed ESLint and Prettier, but...

I have manual_mode to true do to the weird detecting method that's switching my CWD whenever I enter a folder with a package.json inside, but now the plugin does not...

I am new to neovim / lua so this might be a dumb question. Is it possible to set some configuration to not open file finder when I open a...

Hi, The current documentation is lacking. `AddProject` is not even mentioned. I didn't understand why upon `Telescope projects` and `enter` it request me to find files. What files are assigned...

https://github.com/ahmedkhalf/project.nvim/blob/628de7e433dd503e782831fe150bb750e56e55d6/lua/project_nvim/config.lua#L60 There should at least be a config option to allow the user to turn this on or off, just like `manual_mode`

This PR allows user to set the working directory and project.nvim will remember the setting. This is useful when browsing large projects. Per buffer: enable_buffer_local_dir - the buffer with different...

Add support to LSP workspace_folders When multiple workspace_folders are available it tries to find the best fit based of path prefix comparison. When no workspace_folders are available, or just a...