Function separate_at_space

Source
fn separate_at_space(query: &str) -> (String, String, String, String)
Expand description

Split part of a query at whitespace

fzcmd splits at regex “words” which does not include special characters like ‘#’. This function can be used instead via ParamGreed::Custom(&separate_at_space)