mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 03:03:57 +08:00
6 lines
337 B
Fish
6 lines
337 B
Fish
|
# TODO: This function is deprecated. It was used in fish_clipboard_paste
|
||
|
# which some users copied, so maybe leave it around for a few years.
|
||
|
function __fish_commandline_is_singlequoted --description "Return 0 if the current token has an open single-quote"
|
||
|
string match -q 'single*' (__fish_tokenizer_state -- (commandline -ct))
|
||
|
end
|