mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 22:31:14 +00:00

It needs a .tmPreferences file to be able to know how to generate comments. https://sublime-text-unofficial-documentation.readthedocs.io/en/latest/reference/comments.html
43 lines
1.3 KiB
Text
43 lines
1.3 KiB
Text
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<!-- LICENSE BEGIN
|
|
This file is part of the SixtyFPS Project ~~ https://sixtyfps.io
|
|
Copyright (c) 2021 Olivier Goffart <olivier.goffart@sixtyfps.io>
|
|
Copyright (c) 2021 Simon Hausmann <simon.hausmann@sixtyfps.io>
|
|
|
|
SPDX-License-Identifier: GPL-3.0-only
|
|
This file is also available under commercial licensing terms.
|
|
Please contact info@sixtyfps.io for more information.
|
|
LICENSE END -->
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>name</key>
|
|
<string>Miscellaneous</string>
|
|
<key>scope</key>
|
|
<string>source.sixtyfps</string>
|
|
<key>settings</key>
|
|
<dict>
|
|
<key>shellVariables</key>
|
|
<array>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>TM_COMMENT_START</string>
|
|
<key>value</key>
|
|
<string>// </string>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>TM_COMMENT_START_2</string>
|
|
<key>value</key>
|
|
<string>/*</string>
|
|
</dict>
|
|
<dict>
|
|
<key>name</key>
|
|
<string>TM_COMMENT_END_2</string>
|
|
<key>value</key>
|
|
<string>*/</string>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|