project.nvim
project.nvim copied to clipboard
The superior project management solution for neovim.
## Goal: create IDE-like project switching with saved sessions ### Demo how it works in this PR: I'm switching projects by using `:Telescope projects` (i mapped this command to `p`...
There's a handy API you have `get_project_root`, which returns the root project path for any given file of a project and currently it's not exposed. It's useful to me since...
I added the project path to the project_history, but after saving, it was reset, and the added path disappeared. How can I solve this problem
# Problem Landing on a file whose path includes a paired square brackets are being ignored by the project.nvim plugin. # Example `/path/to/file/includes/[bracket]/test.py` # Relevancy & Context This is relevant...
i am trying to change the directory whit a function in alpha nvim what i want is this ```lua local function open_project(project_path) require('telescope').extensions.projects.change_working_directory(project_path) end ``` i want to change the...
I'm having some issues when navigating via `:e some-path/`. I had `silent_chdir = false`. In some cases the current directory gets changed, and in some it doesn't. The project also...
hello there :wave: :yum: i'm writing a little script to automatically load all my `git` projects into the `project.nvim` history file and i'm trying to make it cross-platform :open_mouth: i...
I'd like to know what is the most optimal way to use this plugin with git worktrees. How do you use it with worktrees? For example I don't really like...