Add Python Paths Setting to Preferences
- 
					
					
					
					
- Add preferences for N paths to add to the 
PYTHONPATH, ie.sys.path. - Ensure that changes to modules in these paths are recompiled without restarting Robofont.
 
 - Add preferences for N paths to add to the 
 - 
					
					
					
					
He
you can add a start up script that will add some root folders to the
sys.pathimport sys sys.path.append("my/path/to/my/module")this module will then be available inside RoboFont
to update the module without restarting:
import myModule reload(myModule)good luck