File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
modules/plugins/git/git-conflict Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11# Release 0.8 {#sec-release-0.8}
22
3+ ## Breaking changes
4+
5+ - ` git-conflict ` keybinds are now prefixed with ` <leader> ` to avoid conflicting
6+ with builtins
7+
38[ NotAShelf] ( https://github.com/notashelf ) :
49
510[ typst-preview.nvim ] : https://github.com/chomosuke/typst-preview.nvim
Original file line number Diff line number Diff line change 1212 setupOpts = mkPluginSetupOption "git-conflict" { } ;
1313
1414 mappings = {
15- ours = mkMappingOption "Choose Ours [Git-Conflict]" "co" ;
16- theirs = mkMappingOption "Choose Theirs [Git-Conflict]" "ct" ;
17- both = mkMappingOption "Choose Both [Git-Conflict]" "cb" ;
18- none = mkMappingOption "Choose None [Git-Conflict]" "c0" ;
15+ ours = mkMappingOption "Choose Ours [Git-Conflict]" "<leader> co" ;
16+ theirs = mkMappingOption "Choose Theirs [Git-Conflict]" "<leader> ct" ;
17+ both = mkMappingOption "Choose Both [Git-Conflict]" "<leader> cb" ;
18+ none = mkMappingOption "Choose None [Git-Conflict]" "<leader> c0" ;
1919 prevConflict = mkMappingOption "Go to the previous Conflict [Git-Conflict]" "]x" ;
2020 nextConflict = mkMappingOption "Go to the next Conflict [Git-Conflict]" "[x" ;
2121 } ;
You can’t perform that action at this time.
0 commit comments