Reword "wordchars" description using the description from the manual
[geany-mirror.git] / data / filedefs / filetypes.TypeScript.conf
blobe9f3c99c6b654f115bf61ae0bb49604d13095079
1 # based on JavaScript file
2 # For complete documentation of this file, please see Geany's main documentation
3 [styling=C]
5 [keywords]
6 # all items must be in one line
7 primary=break case catch class const continue debugger default delete do else enum export extends extend false finally for function get if import in Infinity instanceof let NaN new null return set static super switch this throw true try typeof undefined var let while with yield prototype async await declare aliased interfaced Alias Interface interface
8 secondary=Array Boolean boolean Date Function Math Number number Object String string RegExp EvalError Error RangeError ReferenceError SyntaxError TypeError URIError constructor prototype decodeURI decodeURIComponent encodeURI encodeURIComponent eval isFinite isNaN parseFloat parseInt protected public private keyof void any never readonly as
10 [lexer_properties=C]
11 # partially handles ES6 template strings
12 lexer.cpp.backquoted.strings=1
14 [settings]
15 # default extension used when saving files
16 extension=ts
17 lexer_filetype=C
18 tag_parser=TypeScript
20 # MIME type
21 mime_type=text/x-typescript
23 # these characters define word boundaries when making selections and searching
24 # using word matching options
25 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
27 # single comments, like # in this file
28 comment_single=//
29 # multiline comments
30 comment_open=/*
31 comment_close=*/
33 # set to false if a comment character/string should start at column 0 of a line, true uses any
34 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
35 #               #command_example();
36 # setting to false would generate this
37 # #             command_example();
38 # This setting works only for single line comments
39 comment_use_indent=true
41 # context action command (please see Geany's main documentation for details)
42 context_action_cmd=
44 [indentation]
45 #width=4
46 # 0 is spaces, 1 is tabs, 2 is tab & spaces
47 #type=1
49 [build-menu]
50 # %f will be replaced by the complete filename
51 # %e will be replaced by the filename without extension
52 # (use only one of it at one time)
53 #FT_02_LB=_Lint
54 #FT_02_CM=jshint "%f"
55 #FT_02_WD=
56 #error_regex=([^:]+): line ([0-9]+), col ([0-9]+)