Tags: Michael-Davis76/lazygit
Tags
Allow range drop stashes (jesseduffield#4451) - **PR Description** This pr implement dropping multiple stashes feature. In jesseduffield#3196, dropping multiple stashes feature is listed as possible but less needed. In practice, I tend to use `apply` instead of `drop` in order to retrieve some temporary changes in the near future, but the consequence of this is that at the end of the work week I often have to go back and manually clean up stashes that I no longer need or that I simply forgot to drop. - **Please check if the PR fulfills these requirements** * [x] Cheatsheets are up-to-date (run `go generate ./...`) * [x] Code has been formatted (see [here](https://github.com/jesseduffield/lazygit/blob/master/CONTRIBUTING.md#code-formatting)) * [x] Tests have been added/updated (see [here](https://github.com/jesseduffield/lazygit/blob/master/pkg/integration/README.md) for the integration test guide) * [ ] Text is internationalised (see [here](https://github.com/jesseduffield/lazygit/blob/master/CONTRIBUTING.md#internationalisation)) * [ ] If a new UserConfig entry was added, make sure it can be hot-reloaded (see [here](https://github.com/jesseduffield/lazygit/blob/master/docs/dev/Codebase_Guide.md#using-userconfig)) * [ ] Docs have been updated if necessary * [x] You've read through your own file changes for silly mistakes etc