Compare commits

..

No commits in common. "5fbc72d697e53c8d4ff3cb8b7bbc60b6c96ffd02" and "54476b5a8bea713eb0480b4f3a66478cc15ef813" have entirely different histories.

3 changed files with 5 additions and 10 deletions

View file

@ -1,10 +1,5 @@
# Release 0.8 {#sec-release-0.8} # Release 0.8 {#sec-release-0.8}
## Breaking changes
- `git-conflict` keybinds are now prefixed with `<leader>` to avoid conflicting
with builtins
[NotAShelf](https://github.com/notashelf): [NotAShelf](https://github.com/notashelf):
[typst-preview.nvim]: https://github.com/chomosuke/typst-preview.nvim [typst-preview.nvim]: https://github.com/chomosuke/typst-preview.nvim

View file

@ -12,10 +12,10 @@ in {
setupOpts = mkPluginSetupOption "git-conflict" {}; setupOpts = mkPluginSetupOption "git-conflict" {};
mappings = { mappings = {
ours = mkMappingOption "Choose Ours [Git-Conflict]" "<leader>co"; ours = mkMappingOption "Choose Ours [Git-Conflict]" "co";
theirs = mkMappingOption "Choose Theirs [Git-Conflict]" "<leader>ct"; theirs = mkMappingOption "Choose Theirs [Git-Conflict]" "ct";
both = mkMappingOption "Choose Both [Git-Conflict]" "<leader>cb"; both = mkMappingOption "Choose Both [Git-Conflict]" "cb";
none = mkMappingOption "Choose None [Git-Conflict]" "<leader>c0"; none = mkMappingOption "Choose None [Git-Conflict]" "c0";
prevConflict = mkMappingOption "Go to the previous Conflict [Git-Conflict]" "]x"; prevConflict = mkMappingOption "Go to the previous Conflict [Git-Conflict]" "]x";
nextConflict = mkMappingOption "Go to the next Conflict [Git-Conflict]" "[x"; nextConflict = mkMappingOption "Go to the next Conflict [Git-Conflict]" "[x";
}; };

View file

@ -45,7 +45,7 @@
pluginBuilders = { pluginBuilders = {
nvim-treesitter = buildTreesitterPlug config.vim.treesitter.grammars; nvim-treesitter = buildTreesitterPlug config.vim.treesitter.grammars;
flutter-tools-patched = buildPlug { flutter-tools-patched = buildPlug {
pname = "flutter-tools-nvim"; pname = "flutter-tools";
patches = [./patches/flutter-tools.patch]; patches = [./patches/flutter-tools.patch];
# Disable failing require check hook checks # Disable failing require check hook checks