user cmd folder

SALT, SPICE, Subversion, etc...
Post Reply
User avatar
Phil Last
Posts: 628
Joined: Thu Jun 18, 2009 6:29 pm
Location: Wessex

user cmd folder

Post by Phil Last »

I can do any of
      ]settings cmddir
      ⎕SE.UCMD'Settings cmddir'
      ⎕SE.SALT.Settings'cmddir'
and I can extend the argument to add other directories to be searched.
      ]settings cmddir ,"c:/myucmdfolder"
      ...
So far I've only been able to do this for the current session. Am I missing something? Is there a simple way to make it permanent.
DanB|Dyalog

Re: user cmd folder

Post by DanB|Dyalog »

Code: Select all

    ]settings cmddir ,c:/myucmdfolder -permanent

To get help on a command put a '?' before the command as in

Code: Select all

    ]?settings

-permanent will store permanently your settings. They will be brought back when you start APL. If you modify them during the session (without -permanent) you can reset them from global settings using -reset as in

Code: Select all

    ]settings  -reset
Post Reply