Skip to content

Commit abdc0d5

Browse files
committed
Update artisan make:* flag completions
1 parent 4857750 commit abdc0d5

File tree

1 file changed

+30
-2
lines changed

1 file changed

+30
-2
lines changed

autoload/laravel/artisan.vim

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,16 @@ let s:artisan_flags = {
249249
\ '-m',
250250
\ '--resource',
251251
\ '-r',
252+
\ '--parent=',
253+
\ '-p',
254+
\ ],
255+
\ 'make:exception': [
256+
\ '--render',
257+
\ '--report',
258+
\ ],
259+
\ 'make:factory': [
260+
\ '--model=',
261+
\ '-m',
252262
\ ],
253263
\ 'make:job': [
254264
\ '--sync',
@@ -259,6 +269,7 @@ let s:artisan_flags = {
259269
\ '--queued',
260270
\ ],
261271
\ 'make:mail': [
272+
\ '--force',
262273
\ '--markdown=',
263274
\ '-m',
264275
\ ],
@@ -268,17 +279,34 @@ let s:artisan_flags = {
268279
\ '--path=',
269280
\ ],
270281
\ 'make:model': [
271-
\ '--migration',
272-
\ '-m',
282+
\ '--all',
283+
\ '-a',
273284
\ '--controller',
274285
\ '-c',
286+
\ '--factory',
287+
\ '-f',
288+
\ '--force',
289+
\ '--migration',
290+
\ '-m',
291+
\ '--pivot',
292+
\ '-p',
275293
\ '--resource',
276294
\ '-r',
277295
\ ],
296+
\ 'make:notification': [
297+
\ '--force',
298+
\ '-f',
299+
\ '--markdown=',
300+
\ '-m',
301+
\ ],
278302
\ 'make:policy': [
279303
\ '--model=',
280304
\ '-m',
281305
\ ],
306+
\ 'make:resource': [
307+
\ '--collection',
308+
\ '-c',
309+
\ ],
282310
\ 'make:test': [
283311
\ '--unit'
284312
\ ],

0 commit comments

Comments
 (0)