Добавлена поддержка python. Обновлена библиотека иконок.

This commit is contained in:
svkalinin
2022-08-26 12:29:19 +03:00
parent dacccf2fb9
commit 8a541c0339
6 changed files with 332 additions and 36 deletions

View File

@@ -21,3 +21,8 @@ dict set lexers SH commentSymbol {#}
dict set lexers SH procFindString {(function |)\s*?PROCNAME\(\)}
dict set lexers SH procRegexpCommand {regexp -nocase -all -- {^\s*?(function |)\s*?(.*?)\(()\)} $line match keyWord procName params}
#--------------------------------------------------
# Python
dict set lexers PY commentSymbol {#}
dict set lexers PY procFindString {(def )\s*?PROCNAME}
dict set lexers PY procRegexpCommand {regexp -nocase -all -- {^\s*?(def)\s*?(.*?)\((.*?)\):} $line match keyWord procName params}