nighthawk 0.2.0

AI terminal autocomplete — zero config, zero login, zero telemetry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
{
  "name": "pg_dump",
  "description": "Dumps a database as a text file or to other formats",
  "options": [
    {
      "names": [
        "--help",
        "-?"
      ],
      "description": "Show help for pg_dump"
    },
    {
      "names": [
        "--file",
        "-f"
      ],
      "description": "Output file or directory name",
      "takes_arg": true,
      "arg": {
        "name": "filename"
      }
    },
    {
      "names": [
        "--format",
        "-F"
      ],
      "description": "Output file format",
      "takes_arg": true,
      "arg": {
        "name": "format",
        "suggestions": [
          "c",
          "d",
          "t",
          "p"
        ]
      }
    },
    {
      "names": [
        "--jobs",
        "-j"
      ],
      "description": "Number of parallel job to dump",
      "takes_arg": true,
      "arg": {
        "name": "num"
      }
    },
    {
      "names": [
        "--verbose",
        "-v"
      ],
      "description": "Verbose mode"
    },
    {
      "names": [
        "--version",
        "-V"
      ],
      "description": "Output version information"
    },
    {
      "names": [
        "--compress",
        "-Z"
      ],
      "description": "Compression level for compressed formats",
      "takes_arg": true,
      "arg": {
        "name": "level",
        "suggestions": [
          "0",
          "1",
          "2",
          "3",
          "4",
          "5",
          "6",
          "7",
          "8",
          "9"
        ]
      }
    },
    {
      "names": [
        "--lock-wait-timeout"
      ],
      "description": "Fail after waiting <timeout> for a table lock",
      "takes_arg": true,
      "arg": {
        "name": "timeout"
      }
    },
    {
      "names": [
        "--no-sync"
      ],
      "description": "Do not wait for changes to be written safely to disk"
    },
    {
      "names": [
        "--data-only",
        "-a"
      ],
      "description": "Dump only the data, not the schema"
    },
    {
      "names": [
        "--blobs",
        "-b"
      ],
      "description": "Include large objects in dump"
    },
    {
      "names": [
        "--no-blobs",
        "-B"
      ],
      "description": "Exclude large objects in dump"
    },
    {
      "names": [
        "--clean",
        "-c"
      ],
      "description": "Clean (drop) database objects before recreating"
    },
    {
      "names": [
        "--create",
        "-C"
      ],
      "description": "Include commands to create database in dump"
    },
    {
      "names": [
        "--extension",
        "-e"
      ],
      "description": "Dump the specified extension(s) only",
      "takes_arg": true,
      "arg": {
        "name": "pattern"
      }
    },
    {
      "names": [
        "--encoding",
        "-E"
      ],
      "description": "Dump the data in encoding <encoding>",
      "takes_arg": true,
      "arg": {
        "name": "encoding"
      }
    },
    {
      "names": [
        "--schema",
        "-n"
      ],
      "description": "Dump the specified schema(s) only",
      "takes_arg": true,
      "arg": {
        "name": "pattern"
      }
    },
    {
      "names": [
        "--exclude-schema",
        "-N"
      ],
      "description": "Do NOT dump the specified schema(s)",
      "takes_arg": true,
      "arg": {
        "name": "pattern"
      }
    },
    {
      "names": [
        "--no-owner",
        "-O"
      ],
      "description": "Skip restoration of object ownership in plain-text format"
    },
    {
      "names": [
        "--schema-only",
        "-s"
      ],
      "description": "Dump only the schema, no data"
    },
    {
      "names": [
        "--superuser",
        "-S"
      ],
      "description": "Superuser user name to use in plain-text format",
      "takes_arg": true,
      "arg": {
        "name": "name"
      }
    },
    {
      "names": [
        "--table",
        "-t"
      ],
      "description": "Dump the specified table(s) only",
      "takes_arg": true,
      "arg": {
        "name": "table"
      }
    },
    {
      "names": [
        "--exclude-table",
        "-T"
      ],
      "description": "Do NOT dump the specified table(s)",
      "takes_arg": true,
      "arg": {
        "name": "table"
      }
    },
    {
      "names": [
        "--no-privileges",
        "-x",
        "--no-acl"
      ],
      "description": "Do not dump privileges (grant/revoke)"
    },
    {
      "names": [
        "--binary-upgrade"
      ],
      "description": "For use by upgrade utilities only"
    },
    {
      "names": [
        "--column-inserts",
        "--attribute-inserts"
      ],
      "description": "Dump data as INSERT commands with column names"
    },
    {
      "names": [
        "--disable-dollar-quoting"
      ],
      "description": "Disable dollar quoting, use SQL standard quoting"
    },
    {
      "names": [
        "--disable-triggers"
      ],
      "description": "Disable triggers during data-only restore"
    },
    {
      "names": [
        "--enable-row-security"
      ],
      "description": "Enable row security (dump only content user has access to)"
    },
    {
      "names": [
        "--exclude-table-data"
      ],
      "description": "Do NOT dump data for the specified table(s)",
      "takes_arg": true,
      "arg": {
        "name": "table"
      }
    },
    {
      "names": [
        "--extra-float-digits"
      ],
      "description": "Override default setting for extra_float_digits",
      "takes_arg": true,
      "arg": {
        "name": "num"
      }
    },
    {
      "names": [
        "--if-exists"
      ],
      "description": "Use IF EXISTS when dropping objects"
    },
    {
      "names": [
        "--include-foreign-data"
      ],
      "description": "Include data of foreign tables on foreign servers matching PATTERN",
      "takes_arg": true,
      "arg": {
        "name": "pattern"
      }
    },
    {
      "names": [
        "--inserts"
      ],
      "description": "Dump data as INSERT commands, rather than COPY"
    },
    {
      "names": [
        "--load-via-partition-root"
      ],
      "description": "Load partitions via the root table"
    },
    {
      "names": [
        "--no-comments"
      ],
      "description": "Do not dump comments"
    },
    {
      "names": [
        "--no-publications"
      ],
      "description": "Do not dump publications"
    },
    {
      "names": [
        "--no-security-labels"
      ],
      "description": "Do not dump security label assignments"
    },
    {
      "names": [
        "--no-subscriptions"
      ],
      "description": "Do not dump subscriptions"
    },
    {
      "names": [
        "--no-synchronized-snapshots"
      ],
      "description": "Do not use synchronized snapshots in parallel jobs"
    },
    {
      "names": [
        "--no-tablespaces"
      ],
      "description": "Do not dump tablespace assignments"
    },
    {
      "names": [
        "--no-toast-compression"
      ],
      "description": "Do not dump TOAST compression methods"
    },
    {
      "names": [
        "--no-unlogged-table-data"
      ],
      "description": "Do not dump unlogged table data"
    },
    {
      "names": [
        "--on-conflict-do-nothing"
      ],
      "description": "Add ON CONFLICT DO NOTHING to INSERT commands"
    },
    {
      "names": [
        "--quote-all-identifiers"
      ],
      "description": "Quote all identifiers, even if not key words"
    },
    {
      "names": [
        "--rows-per-insert"
      ],
      "description": "Number of rows per INSERT; implies --inserts",
      "takes_arg": true,
      "arg": {
        "name": "numbers"
      }
    },
    {
      "names": [
        "--section"
      ],
      "description": "Dump named section (pre-data, data, or post-data)",
      "takes_arg": true,
      "arg": {
        "name": "section"
      }
    },
    {
      "names": [
        "--serializable-deferrable"
      ],
      "description": "Wait until the dump can run without anomalies"
    },
    {
      "names": [
        "--snapshot"
      ],
      "description": "Use given snapshot for the dump",
      "takes_arg": true,
      "arg": {
        "name": "snapshot"
      }
    },
    {
      "names": [
        "--strict-names"
      ],
      "description": "Require table and/or schema include patterns to match at least one entity each"
    },
    {
      "names": [
        "--use-set-session-authorization"
      ],
      "description": "Use SET SESSION AUTHORIZATION commands instead of ALTER OWNER commands to set ownership"
    },
    {
      "names": [
        "--dbname",
        "-d"
      ],
      "description": "Database to dump",
      "takes_arg": true,
      "arg": {
        "name": "database"
      }
    },
    {
      "names": [
        "--host",
        "-h"
      ],
      "description": "Database server host or socket directory",
      "takes_arg": true,
      "arg": {
        "name": "host"
      }
    },
    {
      "names": [
        "--port",
        "-p"
      ],
      "description": "Database server port number",
      "takes_arg": true,
      "arg": {
        "name": "number"
      }
    },
    {
      "names": [
        "--username",
        "-U"
      ],
      "description": "Connect as specified database user",
      "takes_arg": true,
      "arg": {
        "name": "name"
      }
    },
    {
      "names": [
        "--no-password",
        "-w"
      ],
      "description": "Never prompt for password"
    },
    {
      "names": [
        "--password",
        "-W"
      ],
      "description": "Force password prompt (should happen automatically)"
    },
    {
      "names": [
        "--role"
      ],
      "description": "Do SET ROLE before dump",
      "takes_arg": true,
      "arg": {
        "name": "name"
      }
    }
  ],
  "args": [
    {
      "name": "dbname",
      "description": "Name of the database to dump"
    }
  ]
}