diff --git a/crates/editor/src/element.rs b/crates/editor/src/element.rs index 3bc05ccd537710c34c1c4e8e6d63c26440360f2e..28fe68e71cb4fac36f84d1161020e16ba2d0605f 100644 --- a/crates/editor/src/element.rs +++ b/crates/editor/src/element.rs @@ -3838,7 +3838,11 @@ impl EditorElement { Tooltip::with_meta_in( "Toggle Excerpt Fold", Some(&ToggleFold), - "Alt+click to toggle all", + if cfg!(target_os = "macos") { + "Option+click to toggle all" + } else { + "Alt+click to toggle all" + }, &focus_handle, window, cx,