Forgot a help fix: Drag a dock's title bar, not divider, to reposition
[supercollider.git] / HelpSource / Classes / LanguageConfig.schelp
blobb7098e19ec66e866cf32a750dfbc39e6e6e165f3
1 CLASS:: LanguageConfig
2 summary:: Access and modify interpreter configuration
3 categories:: Language
5 DESCRIPTION::
6 The LanguageConfig class provides access to the interpreter configuration.
9 section:: Configuration File Format
10 The configuration file is stored in YAML format, which contains one dictionary. The semantics of the dictionary is listed in
11 the following table:
13 definitionList::
14 ## teletype::includePaths:: || List of class library paths.
15 ## teletype::excludePaths:: || List of paths to exclude from the class library files (overrides teletype::includePaths::).
16 ## teletype::postInlineWarnings:: || Boolean flag to post warnings about missing inline opportunities.
19 CLASSMETHODS::
21 METHOD:: store
22 Store the current configuration to file.
24 argument:: file
25 Configuration file to store. If the value is code::nil:: it defaults to code::Platform.userConfigDir +/+ "sclang_conf.yaml"::
27 subsection:: Library Path Handling
29 The language configuration mechanism provides a way to add or exclude specific paths for the class library.
31 note::Changes to the class library paths won't have any effect before recompiling the class library.::
33 METHOD:: includePaths
34 Return the class library include paths.
36 METHOD:: addIncludePath
37 Add new class library include path.
39 METHOD:: removeIncludePath
40 Remove path from class library include paths.
42 METHOD:: excludePaths
43 Return the class library exclude paths.
45 METHOD:: addExcludePath
46 Add new class library exclude path.
48 METHOD:: removeExcludePath
49 Remove path from class library exclude paths.
51 subsection:: Compiler Warnings
53 METHOD:: postInlineWarnings
54 Get or set the compiler flag, whether warnings should be posted if a FunctionDef cannot be inlined.