because it is confusing and not necessary anymore since we have bundled nodes.
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- BOOL: 0, 1 -->
|
|
<!-- INTEGER: int e.g 123 -->
|
|
<!-- DECIMAL: float e.g 123.456 -->
|
|
<!-- STRING: string e.g hello -->
|
|
<!-- COLOR: int int int int - rgba e.g. 125 125 125 255 -->
|
|
|
|
<config>
|
|
<StartupProject><!-- STRING: path to project settings xml file --></StartupProject>
|
|
|
|
<source>
|
|
<CompilerFlags>
|
|
<CompilerFlag><!-- STRING: compiler flag, including the dash e.g. -v --></CompilerFlag>
|
|
</CompilerFlags>
|
|
|
|
<HeaderSearchPaths>
|
|
<HeaderSearchPath><!-- STRING: header search path for each path a HeaderSearchPath element --></HeaderSearchPath>
|
|
</HeaderSearchPaths>
|
|
|
|
<!-- MAC ONLY -->
|
|
<FrameworkSearchPaths>
|
|
<FrameworkSearchPath><!-- STRING: framework search path --></FrameworkSearchPath>
|
|
</FrameworkSearchPaths>
|
|
</source>
|
|
|
|
<application>
|
|
<font_name><!-- STRING: font name --></font_name>
|
|
<font_size><!-- INTEGER: font size in pt --></font_size>
|
|
<color_scheme><!-- STRING: color scheme path --></color_scheme>
|
|
</application>
|
|
|
|
<code>
|
|
<TabWidth><!-- INTEGER: number of spaces to represent a tab in code files --></TabWidth>
|
|
|
|
<snippet>
|
|
<snap_range><!-- INTEGER: max amount of lines that the current snippet will be extended to snap to scope start/end --></snap_range>
|
|
<expand_range><!-- INTEGER: amount of lines that the snippet range (not snapped) will be extended --></expand_range>
|
|
</snippet>
|
|
</code>
|
|
</config>
|