From ea3e144f2dd06c1f51229686b308b83f12ab6afc Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Mon, 10 Oct 2016 11:50:39 -0700 Subject: [PATCH] Fix warning: Found unknown command `\args' The problem was that 'cd' is a builtin. Thanks @MarkGriffiths Fixes #3418 --- doc_src/bind.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/bind.txt b/doc_src/bind.txt index c76795e4d..a9148a1b5 100644 --- a/doc_src/bind.txt +++ b/doc_src/bind.txt @@ -131,7 +131,7 @@ The following special input functions are available: \subsection bind-example Examples \fish -bind \\cd 'exit' +bind \\cd 'exit' \endfish Causes `fish` to exit when @key{Control,D} is pressed.