Merge pull request #1069 from simonzsolt/feat/add-mix-phx-gen-live
add completion for `mix phx.gen.live`
This commit is contained in:
commit
0cfa4990ac
2
src/_mix
2
src/_mix
|
@ -108,6 +108,7 @@ _1st_arguments=(
|
|||
'phx.gen.channel:Generates a Phoenix channel'
|
||||
'phx.gen.context:Generates a context with functions around an Ecto schema'
|
||||
'phx.gen.html:Generates controller, views, and context for an HTML resource'
|
||||
'phx.gen.live:Generates controller, context and helper for a LiveView resource'
|
||||
'phx.gen.json:Generates controller, views, and context for a JSON resource'
|
||||
'phx.gen.presence:Generates a Presence tracker'
|
||||
'phx.gen.schema:Generates an Ecto schema and migration file'
|
||||
|
@ -193,6 +194,7 @@ __task_list ()
|
|||
'phx.gen.channel'
|
||||
'phx.gen.context'
|
||||
'phx.gen.html'
|
||||
'phx.gen.live'
|
||||
'phx.gen.json'
|
||||
'phx.gen.presence'
|
||||
'phx.gen.schema'
|
||||
|
|
Loading…
Reference in New Issue