From c220cae2bba5844f72dd95fdd74539ae04553f98 Mon Sep 17 00:00:00 2001 From: Lorenzo Manacorda Date: Mon, 14 Dec 2015 17:51:42 +0100 Subject: [PATCH] Syntax highlighting for spawn_ functions * `spawn_link` * `spawn_monitor` --- syntax/elixir.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntax/elixir.vim b/syntax/elixir.vim index ffd7b085..7898fb9b 100644 --- a/syntax/elixir.vim +++ b/syntax/elixir.vim @@ -15,9 +15,9 @@ syn cluster elixirNotTop contains=@elixirRegexSpecial,@elixirStringContained,@el syn match elixirComment '#.*' contains=elixirTodo syn keyword elixirTodo FIXME NOTE TODO OPTIMIZE XXX HACK contained -syn keyword elixirKeyword case when cond for if unless try receive spawn send +syn keyword elixirKeyword case when cond for if unless try receive send syn keyword elixirKeyword exit raise throw after rescue catch else do end -syn keyword elixirKeyword quote unquote super +syn keyword elixirKeyword quote unquote super spawn spawn_link spawn_monitor " Functions used on guards syn keyword elixirKeyword contained is_atom is_binary is_bitstring is_boolean