Skip to content

Commit 589b50e

Browse files
committed
Support for .nim files.
1 parent ff85685 commit 589b50e

File tree

6 files changed

+27
-2
lines changed

6 files changed

+27
-2
lines changed

Application/Info.plist

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@
102102
<string>org.omg.ecore</string>
103103
<string>org.rdf.source</string>
104104
<string>org.rust-lang.source</string>
105+
<string>org.sbarex.conf</string>
105106
<string>org.sbarex.dart</string>
107+
<string>org.sbarex.nim</string>
106108
<string>org.scala.source</string>
107109
<string>org.tug.lua</string>
108110
<string>org.tug.tex</string>
@@ -1267,6 +1269,24 @@
12671269
</array>
12681270
</dict>
12691271
</dict>
1272+
<dict>
1273+
<key>UTTypeConformsTo</key>
1274+
<array>
1275+
<string>public.text</string>
1276+
<string>public.source-code</string>
1277+
</array>
1278+
<key>UTTypeDescription</key>
1279+
<string>Nim Source File</string>
1280+
<key>UTTypeIdentifier</key>
1281+
<string>org.sbarex.nim</string>
1282+
<key>UTTypeTagSpecification</key>
1283+
<dict>
1284+
<key>public.filename-extension</key>
1285+
<array>
1286+
<string>nim</string>
1287+
</array>
1288+
</dict>
1289+
</dict>
12701290
<dict>
12711291
<key>UTTypeConformsTo</key>
12721292
<array>
Binary file not shown.

CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.0.b23
2+
New features:
3+
- support for .nim files.
4+
15
1.0.b22
26
New features:
37
- support for fortran (.f, .for, .f90) files.

QLExtension/Info.plist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
<string>org.rust-lang.source</string>
121121
<string>org.sbarex.conf</string>
122122
<string>org.sbarex.dart</string>
123+
<string>org.sbarex.nim</string>
123124
<string>org.scala.source</string>
124125
<string>org.tug.lua</string>
125126
<string>org.tug.tex</string>

SourceCodeSyntaxHighlight.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@
10781078
CODE_SIGN_IDENTITY = "-";
10791079
CODE_SIGN_STYLE = Manual;
10801080
COMBINE_HIDPI_IMAGES = YES;
1081-
CURRENT_PROJECT_VERSION = 22;
1081+
CURRENT_PROJECT_VERSION = 23;
10821082
DEVELOPMENT_TEAM = "";
10831083
ENABLE_HARDENED_RUNTIME = YES;
10841084
INFOPLIST_FILE = Application/Info.plist;
@@ -1103,7 +1103,7 @@
11031103
CODE_SIGN_IDENTITY = "-";
11041104
CODE_SIGN_STYLE = Manual;
11051105
COMBINE_HIDPI_IMAGES = YES;
1106-
CURRENT_PROJECT_VERSION = 22;
1106+
CURRENT_PROJECT_VERSION = 23;
11071107
DEVELOPMENT_TEAM = "";
11081108
ENABLE_HARDENED_RUNTIME = YES;
11091109
INFOPLIST_FILE = Application/Info.plist;

0 commit comments

Comments
 (0)