How to change Dyalog's UCMD source folders on Linux

Viewed 20

On Windows the answer is Options>Configure>"User commands"

1 Answers

In a session:

      ]settings cmddir ,folder -permanent

And under program control:

      ⎕SE.SALT.Set'cmddir ,folder -permanent'

, adds a folder to the setting - omitting it will overwrite the configuration instead.

Related