nvim-rooter.lua
nvim-rooter.lua copied to clipboard
minimal implementation of vim-rooter in lua.
Suppose my project located at `/project` has a git submodule `/project/module`. Setting `manual = false` will result in Rooter cd'ing to `/project/submodule` every time I open a file in the...
`vim-rooter` supports `g:rooter_cd_cmd` to select the command used for changing working directory (`:cd`, `:lcd`, `:tcd`). Likewise, I've added `cd_scope` option to the `setup()`. ```lua local function change_dir(dir) local cd_method =...
> I like running nvim , which means open a new empty file, then use fuzzy find to search the files. But it seems that this plugin doesn't work, if...