Compare commits
2 Commits
288e8803b3
...
1aacc80e6e
Author | SHA1 | Date | |
---|---|---|---|
|
1aacc80e6e | ||
|
20a34c5699 |
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -97,3 +97,6 @@
|
||||
[submodule "pack/plugins/start/vim-quickhl"]
|
||||
path = pack/plugins/start/vim-quickhl
|
||||
url = https://github.com/t9md/vim-quickhl.git
|
||||
[submodule "pack/plugins/start/vim-jdaddy"]
|
||||
path = pack/plugins/start/vim-jdaddy
|
||||
url = https://github.com/tpope/vim-jdaddy.git
|
||||
|
@ -5,6 +5,10 @@ end
|
||||
|
||||
local function get_branch_parent()
|
||||
local author = invoke({'git', 'config', 'user.name'})
|
||||
if #author == 0 then
|
||||
print('User name is not set')
|
||||
return
|
||||
end
|
||||
|
||||
local hash = invoke{
|
||||
'git',
|
||||
@ -22,6 +26,13 @@ local function get_branch_parent()
|
||||
end
|
||||
end
|
||||
|
||||
local function edit_git_paths(names)
|
||||
local root_dir = invoke({'git', 'rev-parse', '--show-toplevel'})
|
||||
for name in string.gmatch(names, '[^\r\n]+') do
|
||||
vim.cmd(string.format('e %s/%s', root_dir, name))
|
||||
end
|
||||
end
|
||||
|
||||
-- UnAlign
|
||||
vim.api.nvim_create_user_command(
|
||||
'UnAlign',
|
||||
@ -31,21 +42,22 @@ vim.api.nvim_create_user_command(
|
||||
{range = '%'}
|
||||
)
|
||||
|
||||
-- Conflicts
|
||||
vim.api.nvim_create_user_command(
|
||||
'Conflicts',
|
||||
function(ctx)
|
||||
edit_git_paths(invoke({'git', 'diff', '--name-only', '--diff-filter=U'}))
|
||||
end,
|
||||
{}
|
||||
)
|
||||
|
||||
-- TopicEdit
|
||||
vim.api.nvim_create_user_command(
|
||||
'TopicEdit',
|
||||
function(ctx)
|
||||
local hash = get_branch_parent()
|
||||
if hash then
|
||||
local names = invoke({'git', 'diff', '--name-only', hash})
|
||||
if #names == 0 then
|
||||
print('No files changed since previous author')
|
||||
else
|
||||
local root_dir = invoke({'git', 'rev-parse', '--show-toplevel'})
|
||||
for name in string.gmatch(names, '[^\r\n]+') do
|
||||
vim.cmd(string.format('e %s/%s', root_dir, name))
|
||||
end
|
||||
end
|
||||
edit_git_paths(invoke({'git', 'diff', '--name-only', hash}))
|
||||
end
|
||||
end,
|
||||
{}
|
||||
|
1
pack/plugins/start/vim-jdaddy
Submodule
1
pack/plugins/start/vim-jdaddy
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 23b67752cb869dd9c8f3109173b69aa96a1f3acf
|
Loading…
Reference in New Issue
Block a user