Skip to content
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

extensions:fugitive: add repo name #1288

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion lua/lualine/extensions/fugitive.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ local function fugitive_branch()
return icon .. ' ' .. vim.fn.FugitiveHead()
end

local function get_git_toplevel_basename()
local handle = io.popen("basename `git rev-parse --show-toplevel`")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this works cross-platform.
See if fugitive provides repo name somewhere you can fetch it from there easily in that case.

local result = handle:read("*a")
handle:close()
return result:match("^%s*(.-)%s*$") -- trim any whitespace
end

M.sections = {
lualine_a = { fugitive_branch },
lualine_a = { get_git_toplevel_basename },
lualine_b = { fugitive_branch },
lualine_z = { 'location' },
}

Expand Down
Loading