From 9bb7cf4fd49b49c3b85dbcbe6cc11a262006f52f Mon Sep 17 00:00:00 2001 From: YizhePKU Date: Wed, 5 Jun 2024 06:21:48 +0800 Subject: [PATCH] Update doc --- crates/nu-test-support/src/terminal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-test-support/src/terminal.rs b/crates/nu-test-support/src/terminal.rs index 97a051a5ea..6b2349d075 100644 --- a/crates/nu-test-support/src/terminal.rs +++ b/crates/nu-test-support/src/terminal.rs @@ -24,7 +24,7 @@ //! Step 4: Write data to the PTY. Any data you sent will appear to Nushell as //! if they were typed in a terminal. ANSI escape codes are used for special //! keystrokes. For example, if you want to press Enter, send "\r" (NOT "\n"). -//! On Linux, use `sendkey -a` to see the actual value of a keystroke. The +//! On Linux, use `showkey -a` to see the actual value of a keystroke. The //! [Wikipedia page](https://en.wikipedia.org/wiki/ANSI_escape_code) also //! contains a list of common ANSI escape codes. //!