mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:37:36 +08:00
c2970f9618
This runs build_tools/style.fish, which runs clang-format on C++, fish_indent on fish and (new) black on python. If anything is wrong with the formatting, we should fix the tools, but automated formatting is worth it.
5 lines
126 B
Fish
5 lines
126 B
Fish
# Whether or not the current token is a switch
|
|
function __fish_is_switch
|
|
string match -qr -- '^-' ""(commandline -ct)
|
|
end
|