Ride dyalog apl multiline dfn unpaired brace

133 Views Asked by At
      ]dinput
·   f ← {
·   ·   1
·   }
      f←{
SYNTAX ERROR: Unpaired brace
      f←{
        ∧

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

1

There are 1 best solutions below

0
Adám On BEST ANSWER

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