-
-
Notifications
You must be signed in to change notification settings - Fork 92
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
Show Git status on files and folders #214
Comments
Seems like a decent idea. I will look into this. |
I can also help with the implementation myself. I am just new to the code base and would need some guidance maybe for starting points and implementation approach. |
Sure, happy to have this!
Sounds great! With my prior experience, it'd be actually quite easy and I'm happy to do this eventually as part of the large RFC in #210. I'd probably do it synchronously and just parse it efficiently as git status seems to be relatively fast (~5ms) local bench = require "plenary.benchmark"
local Job = require "plenary.job"
local function git_status_for_folder()
local entries, _ = Job:new({ command = "git", args = { "status", "-s", "." } }):sync()
return entries
end
local function git_status_for_file(file)
local entries, _ = Job:new({ command = "git", args = { "status", "-s", ".", "--", file } }):sync()
return entries
end
bench("git status", {
warmup = 10,
runs = 50,
fun = {
{
"git status for file",
function()
git_status_for_file $YOUR_FILE
end,
},
{
"git status for folder",
function()
-- return fd()
git_status_for_folder()
end,
},
},
}) I'm also happy to let you have a shot and guide you towards a PR though :) - Some further thoughts below. By synchronous I mean that it would trigger Job:new({ command = "git", args = { "status", "-s", "--", table.concat(entries, " ") } }):sync() This might be a bit too slow however for large repositories (linux repo takes 180ms for On a high-level: a) look at https://github.com/nvim-telescope/telescope.nvim/blob/a606bd10c79ec5989c76c49cc6f736e88b63f0da/lua/telescope/builtin/__git.lua#L306-L338 For means of background on how finder entry maker etc relate to one another, telescope docs have an overview of the architecture The make entry logic would have to be ported to the Hope that helps, let me know in case you need more input! Apologies for wall of text, writing this quickly raw on train on way to NYE festivities. |
@fdschmidt93 Thanks for the pointers they were already really helpful! I was wondering if the |
Is your feature request related to a problem? Please describe.
I would like to quickly see paths that have modifications or are newly added so that I quickly see the current state of my work.
Describe the solution you'd like
Have git status indicators on the paths that are changed, similar to other file-browsers (nvim-tree, nerdtree, etc.)
Describe alternatives you've considered
Use
Telescope git_status
, however, I would like to have a single command to open the file overview and increase information density.Additional context
File status with

Telescope git_status
The text was updated successfully, but these errors were encountered: