From 3b413c90d719bf7e041523670df6915dff726c66 Mon Sep 17 00:00:00 2001 From: cn Date: Tue, 11 Nov 2014 09:39:35 +0100 Subject: [PATCH] Fix Python decorators highlighting As per PR https://github.com/cmur2/joe-syntax/pull/16 from @avli it does: This fixes highlighting of the decorators with arguments. For example, the following code highlighting was broken: ```python @first @second("arg1", "arg2") def my_fun(): pass ``` --- python.jsf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python.jsf b/python.jsf index 62bb4d4..bad098a 100644 --- a/python.jsf +++ b/python.jsf @@ -35,7 +35,7 @@ # annotations :decorator Decorator * decorator - " \t\r\n" idle noeat + " (\t\r\n" idle noeat :comment Comment * comment