tpope / vim-fugitive

fugitive.vim: A Git wrapper so awesome, it should be illegal
https://www.vim.org/scripts/script.php?script_id=2975
20.01k stars 1.01k forks source link

[Feature Request] Support brace expansion of bash #2313

Open KSR-Yasuda opened 4 months ago

KSR-Yasuda commented 4 months ago

Could you support brace expansion, that is supported in bash?

For example, the command below:

% git branch -f master{_,}
# Expanded as `git branch -f master_ master`.

Now, fugitive interprets command string literally, to execute G branch -f master{_,} to create a branch named master{_,}.