General

General

I’d like to migrate commands from my journal file into a macro. For example: (ti-menu-load-string “dis set colors background “black” “) The TUI command needs “black” in quotes. This breaks the scheme macro. Is there a different syntax I should use?

    • FAQFAQ
      Participant

      You can use a back slash to be able to input double quotes as shown below: (ti-menu-load-string (string-append “dis set colors foreground ” “”” “”black”” “”””””)) The string append command allows us to combine the strings. “” allows us to transfer double quotes as a string. “