Merge pull request #51 from TheBlob42/master
fix: improve git commit message via nvr
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
if exists("g:lazygit_opened") && g:lazygit_opened && g:lazygit_use_neovim_remote && executable("nvr")
|
if exists("g:lazygit_opened") && g:lazygit_opened && g:lazygit_use_neovim_remote && executable("nvr")
|
||||||
augroup lazygit_neovim_remote
|
augroup lazygit_neovim_remote
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd WinLeave <buffer> :LazyGit
|
autocmd BufUnload <buffer> :lua local root = require('lazygit').project_root_dir(); vim.schedule(function() require('lazygit').lazygit(root) end)
|
||||||
autocmd WinLeave <buffer> :let g:lazygit_opened=0
|
autocmd BufUnload <buffer> :let g:lazygit_opened=0
|
||||||
augroup END
|
augroup END
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -212,4 +212,9 @@ local function lazygitconfig()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return { lazygit = lazygit, lazygitfilter = lazygitfilter, lazygitconfig = lazygitconfig }
|
return {
|
||||||
|
lazygit = lazygit,
|
||||||
|
lazygitfilter = lazygitfilter,
|
||||||
|
lazygitconfig = lazygitconfig,
|
||||||
|
project_root_dir = project_root_dir,
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user