From 64a5af901e753e741e6d960a58322ae136f964a0 Mon Sep 17 00:00:00 2001 From: Darcy Shen Date: Tue, 8 Oct 2024 17:00:50 +0800 Subject: [PATCH] [61_2] Better name for menu entry --- TeXmacs/progs/prog/prog-menu.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/TeXmacs/progs/prog/prog-menu.scm b/TeXmacs/progs/prog/prog-menu.scm index 670cd4934..b43e96d5f 100644 --- a/TeXmacs/progs/prog/prog-menu.scm +++ b/TeXmacs/progs/prog/prog-menu.scm @@ -123,19 +123,19 @@ --- (-> "Goldfish" (when (style-has? "goldfish-lang") - ("Inline" (make 'goldfish-lang)) - ("Block" (make 'goldfish-code))) + ("Inline code" (make 'goldfish-lang)) + ("Block of code" (make 'goldfish-code))) (when (not (style-has? "goldfish-lang")) ("Activate" (add-style-package "goldfish")))) (-> "Scala" (when (style-has? "scala") - ("Inline" (make 'scala)) - ("Block" (make 'scala-code))) + ("Inline code" (make 'scala)) + ("Block of code" (make 'scala-code))) (when (not (style-has? "scala")) ("Activate" (add-style-package "scala")))) (-> "Python" (when (style-has? "python") - ("Inline" (make 'python)) - ("Block" (make 'python-code))) + ("Inline code" (make 'python)) + ("Block of code" (make 'python-code))) (when (not (style-has? "python")) ("Activate" (add-style-package "python")))))