Merge pull request #3125 from actionless/hotkeys-vimdiff

feat(awful: hotkeys_popup: vim): add vimdiff
This commit is contained in:
mergify[bot] 2020-10-07 15:04:52 +00:00 committed by GitHub
commit 6f047e9468
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -173,6 +173,16 @@ local vim_keys = {
zR="open all",
}
}},
["VIM: diff"] = {{
modifiers = {},
keys = {
["do"]="diff obtain",
["dp"]="diff put",
["]c"]="jump next",
["[c"]="jump previous",
}
}},
}
hotkeys_popup.add_hotkeys(vim_keys)