Search code examples
apldyalogdyalog-ride

Ride dyalog apl multiline dfn unpaired brace


      ]dinput
·   f ← {
·   ·   1
·   }
      f←{
SYNTAX ERROR: Unpaired brace
      f←{
        ∧

How can I enable the ]dinput multi-line functionality by default in Ride?


Solution

  • Set the configuration parameter LINEEDITOR_MODE=1.

    This can be done any number of ways, including through the RIDE connection screen: screenshot of setting the configuration parameter

    While the result looks slightly different from when using ]DInput, the functionality is much the same:

          f ← {
           1
          }
          f ⍬
    1