From 2344973594dac344fbb0cc7ae25d9d24a92ecee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Samson?= Date: Thu, 12 Jun 2025 00:50:12 +0200 Subject: [PATCH] Update pipe no-parens function regex --- syntaxes/elixir.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntaxes/elixir.json b/syntaxes/elixir.json index eb5adb1..8c65c6f 100644 --- a/syntaxes/elixir.json +++ b/syntaxes/elixir.json @@ -371,7 +371,7 @@ }, { "comment": "Pipe into no parens local function call", - "match": "(?<=\\|\\>\\s*)([_\\p{Ll}\\p{Lo}][\\p{L}\\p{N}_]*[?!]?)", + "match": "(?<=\\|\\>)\\s*([_\\p{Ll}\\p{Lo}][\\p{L}\\p{N}_]*[?!]?)", "name": "entity.name.function.call.local.pipe.elixir" }, {