-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this plugin work with autochdir? #46
Comments
Does the auto_dir option in the config solve this for you?
|
It doesn't work when I do this with
-- LazyNvim Setup
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup( {
"natecraddock/workspaces.nvim"
})
vim.opt.autochdir = true
require("workspaces").setup({
auto_dir = true,
auto_open = true
}) |
I just pushed a new commit that adds a new option to set |
I tried it with that but its not working for me. Does this repro lua work for you? There might be something wrong on my end. I checked the commit of workspaces.nvim on -- LazyNvim Setup
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup( {
"natecraddock/workspaces.nvim"
})
vim.opt.autochdir = true
require("workspaces").setup({
auto_dir = "autochdir",
auto_open = true
}) |
I would like it so that if the buffer I switch to is inside a workspace directory, then it changes the working directory to the root, and if not then change to the directory to buffer's dir.
The text was updated successfully, but these errors were encountered: