nvim-rooter.lua icon indicating copy to clipboard operation
nvim-rooter.lua copied to clipboard

minimal implementation of vim-rooter in lua.

Results 6 nvim-rooter.lua issues
Sort by recently updated
recently updated
newest added

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...

Add exclude_buftypes options

This could probably simplify the code. ```txt vim.fs.root({source}, {marker}) *vim.fs.root()* Find the first parent directory containing a specific "marker", relative to a file path or buffer. If the buffer is...