Skip to content

Instantly share code, notes, and snippets.

View peterjaffray's full-sized avatar
♨️
Winter is coming. Overclocking and 40 below 0 - best time of the year.

Peter Jaffray peterjaffray

♨️
Winter is coming. Overclocking and 40 below 0 - best time of the year.
View GitHub Profile
@peterjaffray
peterjaffray / wp.fish
Created May 2, 2023 16:44
wp-cli completions for fish cli //~/.config/fish/completions/wp.fish
function __wp_complete
set -l old_ifs $IFS
set -l cur (commandline -ct)
set IFS \n
set -l opts (wp cli completions --line=(commandline) --point=(commandline -C))
if string match -q --regex "\<file\>\s*" $opts
return (commandline -f)