nighthawk 0.1.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
{
  "name": "diff",
  "description": "Compare files line by line",
  "options": [
    {
      "names": [
        "-i",
        "--ignore-case"
      ],
      "description": "Ignore case differences in file contents"
    },
    {
      "names": [
        "--ignore-file-name-case"
      ],
      "description": "Ignore case when comparing file names"
    },
    {
      "names": [
        "--no-ignore-file-name-case"
      ],
      "description": "Consider case when comparing file names"
    },
    {
      "names": [
        "-E",
        "--ignore-tab-expansion"
      ],
      "description": "Ignore changes due to tab expansion"
    },
    {
      "names": [
        "-b",
        "--ignore-space-change"
      ],
      "description": "Ignore changes in the amount of white space"
    },
    {
      "names": [
        "-w",
        "--ignore-all-space"
      ],
      "description": "Ignore all white space"
    },
    {
      "names": [
        "-B",
        "--ignore-blank-lines"
      ],
      "description": "Ignore changes whose lines are all blank"
    },
    {
      "names": [
        "-I",
        "--ignore-matching-lines"
      ],
      "description": "Ignore changes whose lines all match RE",
      "takes_arg": true,
      "arg": {
        "name": "RE"
      }
    },
    {
      "names": [
        "--strip-trailing-cr"
      ],
      "description": "Strip trailing carriage return on input"
    },
    {
      "names": [
        "-a",
        "--text"
      ],
      "description": "Treat all files as text"
    },
    {
      "names": [
        "-c",
        "-C",
        "--context"
      ],
      "description": "Output NUM lines of copied context",
      "takes_arg": true,
      "arg": {
        "name": "NUM"
      }
    },
    {
      "names": [
        "-u",
        "-U",
        "--unified"
      ],
      "description": "Output NUM lines of unified context",
      "takes_arg": true,
      "arg": {
        "name": "NUM"
      }
    },
    {
      "names": [
        "--label"
      ],
      "description": "Use LABEL instead of file name",
      "takes_arg": true,
      "arg": {
        "name": "LABEL"
      }
    },
    {
      "names": [
        "-p",
        "--show-c-function"
      ],
      "description": "Show which C function each change is in"
    },
    {
      "names": [
        "-F",
        "--show-function-line"
      ],
      "description": "Show the most recent line matching RE",
      "takes_arg": true,
      "arg": {
        "name": "RE"
      }
    },
    {
      "names": [
        "-q",
        "--brief"
      ],
      "description": "Output only whether files differ"
    },
    {
      "names": [
        "-e",
        "--ed"
      ],
      "description": "Output an ed script"
    },
    {
      "names": [
        "--normal"
      ],
      "description": "Output a normal diff"
    },
    {
      "names": [
        "-n",
        "--rcs"
      ],
      "description": "Output an RCS format diff"
    },
    {
      "names": [
        "-y",
        "--side-by-side"
      ],
      "description": "Output in two columns"
    },
    {
      "names": [
        "-W",
        "--width"
      ],
      "description": "Output at most NUM (default 130) print columns",
      "takes_arg": true,
      "arg": {
        "name": "NUM"
      }
    },
    {
      "names": [
        "--left-column"
      ],
      "description": "Output only the left column of common lines"
    },
    {
      "names": [
        "--suppress-common-lines"
      ],
      "description": "Do not output common lines"
    },
    {
      "names": [
        "-D",
        "--ifdef"
      ],
      "description": "Output merged file to show `#ifdef NAME' diffs",
      "takes_arg": true,
      "arg": {
        "name": "NAME"
      }
    },
    {
      "names": [
        "-l",
        "--paginate"
      ],
      "description": "Pass the output through `pr' to paginate it"
    },
    {
      "names": [
        "-t",
        "--expand-tabs"
      ],
      "description": "Expand tabs to spaces in output"
    },
    {
      "names": [
        "-T",
        "--initial-tab"
      ],
      "description": "Make tabs line up by prepending a tab"
    },
    {
      "names": [
        "-r",
        "--recursive"
      ],
      "description": "Recursively compare any subdirectories found"
    },
    {
      "names": [
        "-N",
        "--new-file"
      ],
      "description": "Treat absent files as empty"
    },
    {
      "names": [
        "--unidirectional-new-file"
      ],
      "description": "Treat absent first files as empty"
    },
    {
      "names": [
        "-s",
        "--report-identical-files"
      ],
      "description": "Report when two files are the same"
    },
    {
      "names": [
        "-x",
        "--exclude"
      ],
      "description": "Exclude files that match PAT",
      "takes_arg": true,
      "arg": {
        "name": "PAT"
      }
    },
    {
      "names": [
        "-X",
        "--exclude-from"
      ],
      "description": "Exclude files that match any pattern in FILE",
      "takes_arg": true,
      "arg": {
        "name": "FILE",
        "template": "filepaths"
      }
    },
    {
      "names": [
        "-S",
        "--starting-file"
      ],
      "description": "Start with FILE when comparing directories",
      "takes_arg": true,
      "arg": {
        "name": "FILE",
        "template": "filepaths"
      }
    },
    {
      "names": [
        "--from-file"
      ],
      "description": "Compare FILE1 to all operands. FILE1 can be a directory",
      "takes_arg": true,
      "arg": {
        "name": "FILE1",
        "template": "filepaths"
      }
    },
    {
      "names": [
        "--to-file"
      ],
      "description": "Compare all operands to FILE2. FILE2 can be a directory",
      "takes_arg": true,
      "arg": {
        "name": "FILE2",
        "template": "filepaths"
      }
    },
    {
      "names": [
        "--horizon-lines"
      ],
      "description": "Keep NUM lines of the common prefix and suffix",
      "takes_arg": true,
      "arg": {
        "name": "NUM"
      }
    },
    {
      "names": [
        "-d",
        "--minimal"
      ],
      "description": "Try hard to find a smaller set of changes"
    },
    {
      "names": [
        "--speed-large-files"
      ],
      "description": "Assume large files and many scattered small changes"
    },
    {
      "names": [
        "-v",
        "--version"
      ],
      "description": "Output version info"
    },
    {
      "names": [
        "--help"
      ],
      "description": "Show help"
    },
    {
      "names": [
        "--old-group-format"
      ],
      "description": "Similar, but format old input groups with GFTM",
      "takes_arg": true,
      "arg": {
        "name": "GFTM",
        "description": "%<  lines from FILE1\n%>  lines from FILE2\n%=  lines common to FILE1 and FILE2\n%[-][WIDTH][.[PREC]]{doxX}LETTER  printf-style spec for LETTER\nLETTERs are as follows for new group, lower case for old gr"
      }
    },
    {
      "names": [
        "--new-group-format"
      ],
      "description": "Similar, but format new input groups with GFTM",
      "takes_arg": true,
      "arg": {
        "name": "GFTM",
        "description": "%<  lines from FILE1\n%>  lines from FILE2\n%=  lines common to FILE1 and FILE2\n%[-][WIDTH][.[PREC]]{doxX}LETTER  printf-style spec for LETTER\nLETTERs are as follows for new group, lower case for old gr"
      }
    },
    {
      "names": [
        "--unchanged-group-format"
      ],
      "description": "Similar, but format unchanged input groups with GFTM",
      "takes_arg": true,
      "arg": {
        "name": "GFTM",
        "description": "%<  lines from FILE1\n%>  lines from FILE2\n%=  lines common to FILE1 and FILE2\n%[-][WIDTH][.[PREC]]{doxX}LETTER  printf-style spec for LETTER\nLETTERs are as follows for new group, lower case for old gr"
      }
    },
    {
      "names": [
        "--changed-group-format"
      ],
      "description": "Similar, but format changed input groups with GFTM",
      "takes_arg": true,
      "arg": {
        "name": "GFTM",
        "description": "%<  lines from FILE1\n%>  lines from FILE2\n%=  lines common to FILE1 and FILE2\n%[-][WIDTH][.[PREC]]{doxX}LETTER  printf-style spec for LETTER\nLETTERs are as follows for new group, lower case for old gr"
      }
    },
    {
      "names": [
        "--line-format"
      ],
      "description": "Format all input lines with LFMT",
      "takes_arg": true,
      "arg": {
        "name": "LFTM"
      }
    },
    {
      "names": [
        "--old-line-format"
      ],
      "description": "Format old input lines with LFTM",
      "takes_arg": true,
      "arg": {
        "name": "LFTM",
        "description": "%L  contents of line\n%l  contents of line, excluding any trailing newline\n%[-][WIDTH][.[PREC]]{doxX}n  printf-style spec for input line number\n%%  %\n%c'C'  the single character C\n%c'OOO'  the characte"
      }
    },
    {
      "names": [
        "--new-line-format"
      ],
      "description": "Format new input lines with LFTM",
      "takes_arg": true,
      "arg": {
        "name": "LFTM",
        "description": "%L  contents of line\n%l  contents of line, excluding any trailing newline\n%[-][WIDTH][.[PREC]]{doxX}n  printf-style spec for input line number\n%%  %\n%c'C'  the single character C\n%c'OOO'  the characte"
      }
    },
    {
      "names": [
        "--unchanged-line-format"
      ],
      "description": "Format unchanged input lines with LFTM",
      "takes_arg": true,
      "arg": {
        "name": "LFTM",
        "description": "%L  contents of line\n%l  contents of line, excluding any trailing newline\n%[-][WIDTH][.[PREC]]{doxX}n  printf-style spec for input line number\n%%  %\n%c'C'  the single character C\n%c'OOO'  the characte"
      }
    }
  ],
  "args": [
    {
      "name": "file",
      "is_variadic": true,
      "template": "filepaths"
    }
  ]
}