mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 06:57:34 +00:00
feat: default log is last 10 entries
This commit is contained in:
parent
5bcdddc0ec
commit
54a82ad695
1 changed files with 3 additions and 1 deletions
|
@ -30,8 +30,10 @@ M.log = {
|
|||
local info = assert(Git.info(self.plugin.dir))
|
||||
local target = assert(Git.get_target(self.plugin))
|
||||
table.insert(args, info.commit .. ".." .. target.commit)
|
||||
else
|
||||
elseif opts.since then
|
||||
table.insert(args, "--since=" .. (opts.since or "3 days ago"))
|
||||
else
|
||||
table.insert(args, "-10")
|
||||
end
|
||||
|
||||
self:spawn("git", {
|
||||
|
|
Loading…
Add table
Reference in a new issue