fix: correct fish completion function name in CLI script (#485)
Missing an underscore. fish function: https://github.com/fish-shell/fish-shell/blob/master/share/functions/__fish_complete_path.fish fixes https://github.com/openai/codex/issues/469
This commit is contained in:
@@ -190,7 +190,7 @@ _codex() {
|
||||
}
|
||||
_codex`,
|
||||
fish: `# fish completion for codex
|
||||
complete -c codex -a '(_fish_complete_path)' -d 'file path'`,
|
||||
complete -c codex -a '(__fish_complete_path)' -d 'file path'`,
|
||||
};
|
||||
const script = scripts[shell];
|
||||
if (!script) {
|
||||
|
||||
Reference in New Issue
Block a user