mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-09 13:44:29 +08:00
Add elixir lang code (#3757) george124816
* Add elixir lang code * add more words to elixir lang Co-authored-by: edmundobiglia <edmundobiglia@gmail.com>
This commit is contained in:
parent
f652e73db5
commit
8625739f18
4 changed files with 123 additions and 2 deletions
|
|
@ -429,7 +429,8 @@
|
|||
"code_opencl",
|
||||
"code_visual_basic",
|
||||
"code_arduino",
|
||||
"code_systemverilog"
|
||||
"code_systemverilog",
|
||||
"code_elixir"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -253,4 +253,5 @@
|
|||
,"code_visual_basic"
|
||||
,"code_arduino"
|
||||
,"code_systemverilog"
|
||||
,"code_elixir"
|
||||
]
|
||||
|
|
|
|||
120
frontend/static/languages/code_elixir.json
Normal file
120
frontend/static/languages/code_elixir.json
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
{
|
||||
"name": "code_elixir",
|
||||
"leftToRight": true,
|
||||
"ligatures": true,
|
||||
"words": [
|
||||
"__MODULE__",
|
||||
"__using__",
|
||||
"--",
|
||||
"@before_compile",
|
||||
"@behaviour",
|
||||
"@callback",
|
||||
"@doc",
|
||||
"@macrocallback",
|
||||
"@moduledoc",
|
||||
"@opaque",
|
||||
"@optional_callbacks",
|
||||
"@spec",
|
||||
"@type",
|
||||
"@typep",
|
||||
"<>",
|
||||
"%{}",
|
||||
"%MapSet{}",
|
||||
"++",
|
||||
"alias",
|
||||
"and",
|
||||
"any",
|
||||
"Application",
|
||||
"ArgumentError",
|
||||
"as",
|
||||
"assert",
|
||||
"atom",
|
||||
"Atom",
|
||||
"case",
|
||||
"cast",
|
||||
"catch",
|
||||
"cond",
|
||||
"config",
|
||||
"Date",
|
||||
"DateTime",
|
||||
"dbg()",
|
||||
"def",
|
||||
"defdelegate",
|
||||
"defexception",
|
||||
"defguard",
|
||||
"defimpl",
|
||||
"defmacro",
|
||||
"defmodule",
|
||||
"defoverridable",
|
||||
"defp",
|
||||
"defprotocol",
|
||||
"defstruct",
|
||||
"describe",
|
||||
"do",
|
||||
"elem()",
|
||||
"end",
|
||||
"Enum",
|
||||
"Exception",
|
||||
"false",
|
||||
"Float",
|
||||
"fn",
|
||||
"for",
|
||||
"Function",
|
||||
"GenServer",
|
||||
"if",
|
||||
"import",
|
||||
"in",
|
||||
"inspect()",
|
||||
"Integer",
|
||||
"is_atom()",
|
||||
"is_binary()",
|
||||
"is_integer()",
|
||||
"is_list()",
|
||||
"is_map()",
|
||||
"is_number()",
|
||||
"is_pid()",
|
||||
"is_struct()",
|
||||
"Kernel",
|
||||
"Keyword",
|
||||
"length",
|
||||
"List",
|
||||
"Macro",
|
||||
"map",
|
||||
"Map",
|
||||
"MapSet",
|
||||
"mix",
|
||||
"Module",
|
||||
"NaiveDateTime",
|
||||
"nil",
|
||||
"not",
|
||||
"number",
|
||||
"only",
|
||||
"or",
|
||||
"Port",
|
||||
"Process",
|
||||
"Protocol",
|
||||
"quote",
|
||||
"raise",
|
||||
"Range",
|
||||
"Regex",
|
||||
"require",
|
||||
"rescue",
|
||||
"schema",
|
||||
"Stream",
|
||||
"string",
|
||||
"String",
|
||||
"struct",
|
||||
"Supervisor",
|
||||
"System",
|
||||
"Task",
|
||||
"test",
|
||||
"Time",
|
||||
"true",
|
||||
"Tuple",
|
||||
"unless",
|
||||
"use",
|
||||
"when",
|
||||
"with_log",
|
||||
"with"
|
||||
]
|
||||
}
|
||||
|
|
@ -54,7 +54,6 @@
|
|||
"type",
|
||||
"unpack",
|
||||
"xpcall",
|
||||
|
||||
"bit32",
|
||||
"coroutine",
|
||||
"debug",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue