我正试图让Geany识别Falcon的语法高亮显示,但到目前为止运气不佳。我尝试过遵循这个SO解决方案,但没有这样的运气。我在Fedora 18上使用的是Geany的1.23版本。以下是我的自定义~/.config/geany/filedefs/filetypes.Falcon.conf
文件:
[keywords]
primary= <snip>
identifiers=<snip>
[settings]
extension=fal
comment_single=//
comment_open=/*
comment_close=*/
comment_use_indent=false
symbol_list_sort_mode=1
tag_parser=Falcon
lexer_filetype=Python
[indentation]
width=4
type=0
# (use only one of it at one time)
compiler=
linker=
run_cmd=falcon "%f"
我去掉了所有的primary
和identifiers
,因为它们相当长,但我确实包含了它们。我尝试过使用lexer_filetype=C
,但仍然没有语法高亮显示。有什么建议可以帮我吗?
是否更新了文件类型_extension.conf?
你查看了手册吗http://geany.org/manual/#creating-从-an-expisting-filetype自定义文件类型?