Merge pull request #217838 from superherointj/fix-vimPlugins.vim-trailing-whitespace

vimPlugins.vim-trailing-whitespace: fix add dynamic TerminalOpen for …
This commit is contained in:
figsoda 2023-02-23 09:20:15 -05:00 committed by GitHub
commit fe1f564ac5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1348,6 +1348,15 @@ self: super: {
dependencies = with self; [ vimproc-vim ];
});
vim-trailing-whitespace = super.vim-trailing-whitespace.overrideAttrs (old: {
patches = [(fetchpatch {
# https://github.com/bronson/vim-trailing-whitespace/pull/30
name = "fix-add-dynamic-TerminalOpen-for-both-vim-and-nvim.patch";
url = "https://github.com/bronson/vim-trailing-whitespace/commit/99ef803ebdc01d62b418a3e9386d5f10797bfac3.patch";
hash = "sha256-cyanHUKxhbY8c6EkAbpUq7QcEBQABCwZ6NoEUOpd2F8=";
})];
});
vim-zettel = super.vim-zettel.overrideAttrs (old: {
dependencies = with self; [ vimwiki fzf-vim ];
});