Skip to content

Commit

Permalink
[61_2] Better name for menu entry
Browse files Browse the repository at this point in the history
  • Loading branch information
da-liii committed Oct 8, 2024
1 parent 21e5ae1 commit 64a5af9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions TeXmacs/progs/prog/prog-menu.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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")))))

0 comments on commit 64a5af9

Please sign in to comment.