This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 19773e4351a4 chore: Add F2 Run Example hint to TUI empty state
19773e4351a4 is described below

commit 19773e4351a46b64e9d0ba4a358e79d2db370247
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Jul 1 14:50:39 2026 +0200

    chore: Add F2 Run Example hint to TUI empty state
    
    Co-Authored-By: Claude <[email protected]>
    Signed-off-by: Claus Ibsen <[email protected]>
---
 .../org/apache/camel/dsl/jbang/core/commands/tui/OverviewTab.java | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git 
a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/OverviewTab.java
 
b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/OverviewTab.java
index ebd16308d1d6..ca705192d82f 100644
--- 
a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/OverviewTab.java
+++ 
b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/OverviewTab.java
@@ -952,6 +952,14 @@ class OverviewTab implements MonitorTab {
         lines.add(Line.from(Span.raw("     Run a route or integration in 
another terminal window:")));
         lines.add(Line.from(Span.styled("     > camel run my-route.yaml", 
Theme.success())));
         lines.add(Line.from(Span.raw("")));
+        lines.add(Line.from(Span.styled("  🐪 Or run a bundled example:", 
Style.EMPTY.bold())));
+        lines.add(Line.from(List.of(
+                Span.raw("     Press "),
+                Span.styled(" F2 ", Theme.hintKey()),
+                Span.raw(" to open Actions and select "),
+                Span.styled("Run Example", Style.EMPTY.bold()),
+                Span.raw("."))));
+        lines.add(Line.from(Span.raw("")));
         lines.add(Line.from(Span.styled("  💻 Or use the embedded JLine shell 
panel:", Style.EMPTY.bold())));
         lines.add(Line.from(List.of(
                 Span.raw("     Press "),

Reply via email to