We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0311680 commit 26c07e0Copy full SHA for 26c07e0
1 file changed
examples/text_editor/src/text_editor.nim
@@ -17,6 +17,7 @@ proc main =
17
di.title = "Text Editor"
18
di.filters = @[
19
(name: "Text files", ext: "*.txt"),
20
+ (name: "Nim source files", ext: "*.nim;*.nims;*.nimble;*.nimf;nim.cfg;nimdoc.cfg"),
21
(name: "Any file", ext: "*")
22
]
23
@@ -38,7 +39,7 @@ proc main =
38
39
40
exit()
41
- window.show("ui/MainWindow.html")
42
+ window.show("ui/MainWindow.html", FireFox)
43
44
wait()
45
0 commit comments