lumesh 0.18.2

a lighting shell ⚡ bash alternative
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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
cmd,conds,short,long,params,dirs,pri,desc
uv, __fish_uv_needs_command, ,cache-dir, ,@r,101,Path to the cache directory
uv, __fish_uv_needs_command, ,python-preference,only-managed,@f @r,102, 
uv, __fish_uv_needs_command, ,python-fetch,automatic,@f @r,103,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_needs_command, ,color,auto,@f @r,104,Control the use of color in output
uv, __fish_uv_needs_command, ,allow-insecure-host, , ,105,Allow insecure connections to a host
uv, __fish_uv_needs_command, ,preview-features, , ,106,Enable experimental preview features
uv, __fish_uv_needs_command, ,directory, ,@r,107,Change to the given directory prior to running the command
uv, __fish_uv_needs_command, ,project, ,@r,108,Run the command within the given project directory
uv, __fish_uv_needs_command, ,config-file, ,@r,109,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_needs_command,n,no-cache, , ,110,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_needs_command, ,managed-python, , ,111,Require use of uv-managed Python versions
uv, __fish_uv_needs_command, ,no-managed-python, , ,112,Disable use of uv-managed Python versions
uv, __fish_uv_needs_command, ,allow-python-downloads, , ,113,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_needs_command, ,no-python-downloads, , ,114,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_needs_command,q,quiet, , ,115,Use quiet output
uv, __fish_uv_needs_command,v,verbose, , ,116,Use verbose output
uv, __fish_uv_needs_command, ,no-color, , ,117,Disable colors
uv, __fish_uv_needs_command, ,native-tls, , ,118,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_needs_command, ,no-native-tls, , ,119, 
uv, __fish_uv_needs_command, ,offline, , ,120,Disable network access
uv, __fish_uv_needs_command, ,no-offline, , ,121, 
uv, __fish_uv_needs_command, ,preview, , ,122,Whether to enable all experimental preview features
uv, __fish_uv_needs_command, ,no-preview, , ,123, 
uv, __fish_uv_needs_command, ,isolated, , ,124,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_needs_command, ,show-settings, , ,125,Show the resolved settings for the current command
uv, __fish_uv_needs_command, ,no-progress, , ,126,Hide all progress outputs
uv, __fish_uv_needs_command, ,no-installer-metadata, , ,127,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_needs_command, ,no-config, , ,128,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_needs_command,h,help, , ,129,Display the concise help for this command
uv, __fish_uv_needs_command,V,version, , ,130,Display the uv version
uv, __fish_uv_needs_command, , ,auth,@f,131,Manage authentication
uv, __fish_uv_needs_command, , ,run,@f,132,Run a command or script
uv, __fish_uv_needs_command, , ,init,@f,133,Create a new project
uv, __fish_uv_needs_command, , ,add,@f,134,Add dependencies to the project
uv, __fish_uv_needs_command, , ,remove,@f,135,Remove dependencies from the project
uv, __fish_uv_needs_command, , ,version,@f,136,Read or update the project's version
uv, __fish_uv_needs_command, , ,sync,@f,137,Update the project's environment
uv, __fish_uv_needs_command, , ,lock,@f,138,Update the project's lockfile
uv, __fish_uv_needs_command, , ,export,@f,139,Export the project's lockfile to an alternate format
uv, __fish_uv_needs_command, , ,tree,@f,140,Display the project's dependency tree
uv, __fish_uv_needs_command, , ,format,@f,141,Format Python code in the project
uv, __fish_uv_needs_command, , ,tool,@f,142,Run and install commands provided by Python packages
uv, __fish_uv_needs_command, , ,python,@f,143,Manage Python versions and installations
uv, __fish_uv_needs_command, , ,pip,@f,144,Manage Python packages with a pip-compatible interface
uv, __fish_uv_needs_command, , ,venv,@f,145,Create a virtual environment
uv, __fish_uv_needs_command, , ,build,@f,146,Build Python packages into source distributions and wheels
uv, __fish_uv_needs_command, , ,publish,@f,147,Upload distributions to an index
uv, __fish_uv_needs_command, , ,workspace,@f,148,Inspect uv workspaces
uv, __fish_uv_needs_command, , ,build-backend,@f,149,The implementation of the build backend
uv, __fish_uv_needs_command, , ,cache,@f,150,Manage uv's cache
uv, __fish_uv_needs_command, , ,self,@f,151,Manage the uv executable
uv, __fish_uv_needs_command, , ,clean,@f,152,"Clear the cache, removing all entries or those linked to specific packages"
uv, __fish_uv_needs_command, , ,generate-shell-completion,@f,153,Generate shell completion
uv, __fish_uv_needs_command, , ,help,@f,154,Display documentation for a command
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,cache-dir, ,@r,154,Path to the cache directory
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,python-preference,only-managed,@f @r,154, 
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,python-fetch,automatic,@f @r,154,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,color,auto,@f @r,154,Control the use of color in output
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,allow-insecure-host, , ,154,Allow insecure connections to a host
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,preview-features, , ,154,Enable experimental preview features
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,directory, ,@r,154,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,project, ,@r,154,Run the command within the given project directory
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,config-file, ,@r,154,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand auth; and login logout token dir",n,no-cache, , ,154,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,managed-python, , ,154,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,no-managed-python, , ,154,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,allow-python-downloads, , ,154,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,no-python-downloads, , ,154,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand auth; and login logout token dir",q,quiet, , ,154,Use quiet output
uv," __fish_uv_using_subcommand auth; and login logout token dir",v,verbose, , ,154,Use verbose output
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,no-color, , ,154,Disable colors
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,native-tls, , ,154,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,no-native-tls, , ,154, 
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,offline, , ,154,Disable network access
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,no-offline, , ,154, 
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,preview, , ,154,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,no-preview, , ,154, 
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,isolated, , ,154,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,show-settings, , ,154,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,no-progress, , ,154,Hide all progress outputs
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,no-installer-metadata, , ,154,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand auth; and login logout token dir", ,no-config, , ,154,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand auth; and login logout token dir",h,help, , ,154,Display the concise help for this command
uv," __fish_uv_using_subcommand auth; and login logout token dir", , ,login,@f,154,Login to a service
uv," __fish_uv_using_subcommand auth; and login logout token dir", , ,logout,@f,154,Logout of a service
uv," __fish_uv_using_subcommand auth; and login logout token dir", , ,token,@f,154,Show the authentication token for a service
uv," __fish_uv_using_subcommand auth; and login logout token dir", , ,dir,@f,154,Show the path to the uv credentials directory
uv," __fish_uv_using_subcommand auth; and login",u,username, , ,155,The username to use for the service
uv," __fish_uv_using_subcommand auth; and login", ,password, , ,156,The password to use for the service
uv," __fish_uv_using_subcommand auth; and login",t,token, , ,157,The token to use for the service
uv," __fish_uv_using_subcommand auth; and login", ,keyring-provider,disabled,@f @r,158,The keyring provider to use for storage of credentials
uv," __fish_uv_using_subcommand auth; and login", ,cache-dir, ,@r,159,Path to the cache directory
uv," __fish_uv_using_subcommand auth; and login", ,python-preference,only-managed,@f @r,160, 
uv," __fish_uv_using_subcommand auth; and login", ,python-fetch,automatic,@f @r,161,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand auth; and login", ,color,auto,@f @r,162,Control the use of color in output
uv," __fish_uv_using_subcommand auth; and login", ,allow-insecure-host, , ,163,Allow insecure connections to a host
uv," __fish_uv_using_subcommand auth; and login", ,preview-features, , ,164,Enable experimental preview features
uv," __fish_uv_using_subcommand auth; and login", ,directory, ,@r,165,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand auth; and login", ,project, ,@r,166,Run the command within the given project directory
uv," __fish_uv_using_subcommand auth; and login", ,config-file, ,@r,167,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand auth; and login",n,no-cache, , ,168,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand auth; and login", ,managed-python, , ,169,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and login", ,no-managed-python, , ,170,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and login", ,allow-python-downloads, , ,171,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand auth; and login", ,no-python-downloads, , ,172,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand auth; and login",q,quiet, , ,173,Use quiet output
uv," __fish_uv_using_subcommand auth; and login",v,verbose, , ,174,Use verbose output
uv," __fish_uv_using_subcommand auth; and login", ,no-color, , ,175,Disable colors
uv," __fish_uv_using_subcommand auth; and login", ,native-tls, , ,176,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand auth; and login", ,no-native-tls, , ,177, 
uv," __fish_uv_using_subcommand auth; and login", ,offline, , ,178,Disable network access
uv," __fish_uv_using_subcommand auth; and login", ,no-offline, , ,179, 
uv," __fish_uv_using_subcommand auth; and login", ,preview, , ,180,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand auth; and login", ,no-preview, , ,181, 
uv," __fish_uv_using_subcommand auth; and login", ,isolated, , ,182,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand auth; and login", ,show-settings, , ,183,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand auth; and login", ,no-progress, , ,184,Hide all progress outputs
uv," __fish_uv_using_subcommand auth; and login", ,no-installer-metadata, , ,185,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand auth; and login", ,no-config, , ,186,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand auth; and login",h,help, , ,187,Display the concise help for this command
uv," __fish_uv_using_subcommand auth; and logout",u,username, , ,188,The username to logout
uv," __fish_uv_using_subcommand auth; and logout", ,keyring-provider,disabled,@f @r,189,The keyring provider to use for storage of credentials
uv," __fish_uv_using_subcommand auth; and logout", ,cache-dir, ,@r,190,Path to the cache directory
uv," __fish_uv_using_subcommand auth; and logout", ,python-preference,only-managed,@f @r,191, 
uv," __fish_uv_using_subcommand auth; and logout", ,python-fetch,automatic,@f @r,192,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand auth; and logout", ,color,auto,@f @r,193,Control the use of color in output
uv," __fish_uv_using_subcommand auth; and logout", ,allow-insecure-host, , ,194,Allow insecure connections to a host
uv," __fish_uv_using_subcommand auth; and logout", ,preview-features, , ,195,Enable experimental preview features
uv," __fish_uv_using_subcommand auth; and logout", ,directory, ,@r,196,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand auth; and logout", ,project, ,@r,197,Run the command within the given project directory
uv," __fish_uv_using_subcommand auth; and logout", ,config-file, ,@r,198,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand auth; and logout",n,no-cache, , ,199,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand auth; and logout", ,managed-python, , ,200,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and logout", ,no-managed-python, , ,201,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and logout", ,allow-python-downloads, , ,202,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand auth; and logout", ,no-python-downloads, , ,203,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand auth; and logout",q,quiet, , ,204,Use quiet output
uv," __fish_uv_using_subcommand auth; and logout",v,verbose, , ,205,Use verbose output
uv," __fish_uv_using_subcommand auth; and logout", ,no-color, , ,206,Disable colors
uv," __fish_uv_using_subcommand auth; and logout", ,native-tls, , ,207,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand auth; and logout", ,no-native-tls, , ,208, 
uv," __fish_uv_using_subcommand auth; and logout", ,offline, , ,209,Disable network access
uv," __fish_uv_using_subcommand auth; and logout", ,no-offline, , ,210, 
uv," __fish_uv_using_subcommand auth; and logout", ,preview, , ,211,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand auth; and logout", ,no-preview, , ,212, 
uv," __fish_uv_using_subcommand auth; and logout", ,isolated, , ,213,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand auth; and logout", ,show-settings, , ,214,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand auth; and logout", ,no-progress, , ,215,Hide all progress outputs
uv," __fish_uv_using_subcommand auth; and logout", ,no-installer-metadata, , ,216,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand auth; and logout", ,no-config, , ,217,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand auth; and logout",h,help, , ,218,Display the concise help for this command
uv," __fish_uv_using_subcommand auth; and token",u,username, , ,219,The username to lookup
uv," __fish_uv_using_subcommand auth; and token", ,keyring-provider,disabled,@f @r,220,The keyring provider to use for reading credentials
uv," __fish_uv_using_subcommand auth; and token", ,cache-dir, ,@r,221,Path to the cache directory
uv," __fish_uv_using_subcommand auth; and token", ,python-preference,only-managed,@f @r,222, 
uv," __fish_uv_using_subcommand auth; and token", ,python-fetch,automatic,@f @r,223,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand auth; and token", ,color,auto,@f @r,224,Control the use of color in output
uv," __fish_uv_using_subcommand auth; and token", ,allow-insecure-host, , ,225,Allow insecure connections to a host
uv," __fish_uv_using_subcommand auth; and token", ,preview-features, , ,226,Enable experimental preview features
uv," __fish_uv_using_subcommand auth; and token", ,directory, ,@r,227,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand auth; and token", ,project, ,@r,228,Run the command within the given project directory
uv," __fish_uv_using_subcommand auth; and token", ,config-file, ,@r,229,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand auth; and token",n,no-cache, , ,230,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand auth; and token", ,managed-python, , ,231,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and token", ,no-managed-python, , ,232,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and token", ,allow-python-downloads, , ,233,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand auth; and token", ,no-python-downloads, , ,234,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand auth; and token",q,quiet, , ,235,Use quiet output
uv," __fish_uv_using_subcommand auth; and token",v,verbose, , ,236,Use verbose output
uv," __fish_uv_using_subcommand auth; and token", ,no-color, , ,237,Disable colors
uv," __fish_uv_using_subcommand auth; and token", ,native-tls, , ,238,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand auth; and token", ,no-native-tls, , ,239, 
uv," __fish_uv_using_subcommand auth; and token", ,offline, , ,240,Disable network access
uv," __fish_uv_using_subcommand auth; and token", ,no-offline, , ,241, 
uv," __fish_uv_using_subcommand auth; and token", ,preview, , ,242,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand auth; and token", ,no-preview, , ,243, 
uv," __fish_uv_using_subcommand auth; and token", ,isolated, , ,244,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand auth; and token", ,show-settings, , ,245,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand auth; and token", ,no-progress, , ,246,Hide all progress outputs
uv," __fish_uv_using_subcommand auth; and token", ,no-installer-metadata, , ,247,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand auth; and token", ,no-config, , ,248,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand auth; and token",h,help, , ,249,Display the concise help for this command
uv," __fish_uv_using_subcommand auth; and dir", ,cache-dir, ,@r,250,Path to the cache directory
uv," __fish_uv_using_subcommand auth; and dir", ,python-preference,only-managed,@f @r,251, 
uv," __fish_uv_using_subcommand auth; and dir", ,python-fetch,automatic,@f @r,252,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand auth; and dir", ,color,auto,@f @r,253,Control the use of color in output
uv," __fish_uv_using_subcommand auth; and dir", ,allow-insecure-host, , ,254,Allow insecure connections to a host
uv," __fish_uv_using_subcommand auth; and dir", ,preview-features, , ,255,Enable experimental preview features
uv," __fish_uv_using_subcommand auth; and dir", ,directory, ,@r,256,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand auth; and dir", ,project, ,@r,257,Run the command within the given project directory
uv," __fish_uv_using_subcommand auth; and dir", ,config-file, ,@r,258,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand auth; and dir",n,no-cache, , ,259,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand auth; and dir", ,managed-python, , ,260,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and dir", ,no-managed-python, , ,261,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand auth; and dir", ,allow-python-downloads, , ,262,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand auth; and dir", ,no-python-downloads, , ,263,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand auth; and dir",q,quiet, , ,264,Use quiet output
uv," __fish_uv_using_subcommand auth; and dir",v,verbose, , ,265,Use verbose output
uv," __fish_uv_using_subcommand auth; and dir", ,no-color, , ,266,Disable colors
uv," __fish_uv_using_subcommand auth; and dir", ,native-tls, , ,267,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand auth; and dir", ,no-native-tls, , ,268, 
uv," __fish_uv_using_subcommand auth; and dir", ,offline, , ,269,Disable network access
uv," __fish_uv_using_subcommand auth; and dir", ,no-offline, , ,270, 
uv," __fish_uv_using_subcommand auth; and dir", ,preview, , ,271,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand auth; and dir", ,no-preview, , ,272, 
uv," __fish_uv_using_subcommand auth; and dir", ,isolated, , ,273,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand auth; and dir", ,show-settings, , ,274,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand auth; and dir", ,no-progress, , ,275,Hide all progress outputs
uv," __fish_uv_using_subcommand auth; and dir", ,no-installer-metadata, , ,276,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand auth; and dir", ,no-config, , ,277,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand auth; and dir",h,help, , ,278,Display the concise help for this command
uv, __fish_uv_using_subcommand run, ,extra, , ,279,Include optional dependencies from the specified extra name
uv, __fish_uv_using_subcommand run, ,no-extra, , ,280,"Exclude the specified optional dependencies, if `--all-extras` is supplied"
uv, __fish_uv_using_subcommand run, ,group, , ,281,Include dependencies from the specified dependency group
uv, __fish_uv_using_subcommand run, ,no-group, , ,282,Disable the specified dependency group
uv, __fish_uv_using_subcommand run, ,only-group, , ,283,Only include dependencies from the specified dependency group
uv, __fish_uv_using_subcommand run, ,env-file, , ,284,Load environment variables from a `.env` file
uv, __fish_uv_using_subcommand run,w,with, , ,285,Run with the given packages installed
uv, __fish_uv_using_subcommand run, ,with-editable, , ,286,Run with the given packages installed in editable mode
uv, __fish_uv_using_subcommand run, ,with-requirements, , ,287,Run with the packages listed in the given files
uv, __fish_uv_using_subcommand run, ,index, , ,288,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand run, ,default-index, , ,289,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand run,i,index-url, , ,290,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand run, ,extra-index-url, , ,291,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand run,f,find-links, , ,292,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand run,P,upgrade-package, , ,293,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand run, ,reinstall-package, , ,294,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand run, ,index-strategy,first-index,@f @r,295,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand run, ,keyring-provider,disabled,@f @r,296,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand run, ,resolution,highest,@f @r,297,The strategy to use when selecting between the different compatible versions for a given package requirement
uv, __fish_uv_using_subcommand run, ,prerelease,disallow,@f @r,298,The strategy to use when considering pre-release versions
uv, __fish_uv_using_subcommand run, ,fork-strategy,fewest,@f @r,299,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv, __fish_uv_using_subcommand run,C,config-setting, , ,300,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand run, ,config-settings-package, , ,301,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand run, ,no-build-isolation-package, , ,302,Disable isolation when building source distributions for a specific package
uv, __fish_uv_using_subcommand run, ,exclude-newer, , ,303,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand run, ,exclude-newer-package, , ,304,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand run, ,link-mode,clone,@f @r,305,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand run, ,no-build-package, , ,306,Don't build source distributions for a specific package
uv, __fish_uv_using_subcommand run, ,no-binary-package, , ,307,Don't install pre-built wheels for a specific package
uv, __fish_uv_using_subcommand run, ,refresh-package, , ,308,Refresh cached data for a specific package
uv, __fish_uv_using_subcommand run, ,package, , ,309,Run the command in a specific package in the workspace
uv, __fish_uv_using_subcommand run,p,python, , ,310,The Python interpreter to use for the run environment.
uv, __fish_uv_using_subcommand run, ,max-recursion-depth, , ,311,Number of times that `uv run` will allow recursive invocations
uv, __fish_uv_using_subcommand run, ,python-platform,windows,@f @r,312,The platform for which requirements should be installed
uv, __fish_uv_using_subcommand run, ,cache-dir, ,@r,313,Path to the cache directory
uv, __fish_uv_using_subcommand run, ,python-preference,only-managed,@f @r,314, 
uv, __fish_uv_using_subcommand run, ,python-fetch,automatic,@f @r,315,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand run, ,color,auto,@f @r,316,Control the use of color in output
uv, __fish_uv_using_subcommand run, ,allow-insecure-host, , ,317,Allow insecure connections to a host
uv, __fish_uv_using_subcommand run, ,preview-features, , ,318,Enable experimental preview features
uv, __fish_uv_using_subcommand run, ,directory, ,@r,319,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand run, ,project, ,@r,320,Run the command within the given project directory
uv, __fish_uv_using_subcommand run, ,config-file, ,@r,321,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand run, ,all-extras, , ,322,Include all optional dependencies
uv, __fish_uv_using_subcommand run, ,no-all-extras, , ,323, 
uv, __fish_uv_using_subcommand run, ,dev, , ,324,Include the development dependency group
uv, __fish_uv_using_subcommand run, ,no-dev, , ,325,Disable the development dependency group
uv, __fish_uv_using_subcommand run, ,no-default-groups, , ,326,Ignore the default dependency groups
uv, __fish_uv_using_subcommand run, ,all-groups, , ,327,Include dependencies from all dependency groups
uv, __fish_uv_using_subcommand run,m,module, , ,328,Run a Python module
uv, __fish_uv_using_subcommand run, ,only-dev, , ,329,Only include the development dependency group
uv, __fish_uv_using_subcommand run, ,editable, , ,330,"Install any non-editable dependencies, including the project and any workspace members, as editable"
uv, __fish_uv_using_subcommand run, ,no-editable, , ,331,"Install any editable dependencies, including the project and any workspace members, as non-editable"
uv, __fish_uv_using_subcommand run, ,inexact, , ,332,Do not remove extraneous packages present in the environment
uv, __fish_uv_using_subcommand run, ,exact, , ,333,"Perform an exact sync, removing extraneous packages"
uv, __fish_uv_using_subcommand run, ,no-env-file, , ,334,Avoid reading environment variables from a `.env` file
uv, __fish_uv_using_subcommand run, ,isolated, , ,335,Run the command in an isolated virtual environment
uv, __fish_uv_using_subcommand run, ,active, , ,336,Prefer the active virtual environment over the project's virtual environment
uv, __fish_uv_using_subcommand run, ,no-active, , ,337,Prefer project's virtual environment over an active environment
uv, __fish_uv_using_subcommand run, ,no-sync, , ,338,Avoid syncing the virtual environment
uv, __fish_uv_using_subcommand run, ,locked, , ,339,Assert that the `uv.lock` will remain unchanged
uv, __fish_uv_using_subcommand run, ,frozen, , ,340,Run without updating the `uv.lock` file
uv, __fish_uv_using_subcommand run,s,script, , ,341,Run the given path as a Python script
uv, __fish_uv_using_subcommand run, ,gui-script, , ,342,Run the given path as a Python GUI script
uv, __fish_uv_using_subcommand run, ,no-index, , ,343,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand run,U,upgrade, , ,344,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv, __fish_uv_using_subcommand run, ,no-upgrade, , ,345, 
uv, __fish_uv_using_subcommand run, ,reinstall, , ,346,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv, __fish_uv_using_subcommand run, ,no-reinstall, , ,347, 
uv, __fish_uv_using_subcommand run, ,pre, , ,348, 
uv, __fish_uv_using_subcommand run, ,no-build-isolation, , ,349,Disable isolation when building source distributions
uv, __fish_uv_using_subcommand run, ,build-isolation, , ,350, 
uv, __fish_uv_using_subcommand run, ,compile-bytecode, , ,351,Compile Python files to bytecode after installation
uv, __fish_uv_using_subcommand run, ,no-compile-bytecode, , ,352, 
uv, __fish_uv_using_subcommand run, ,no-sources, , ,353,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv, __fish_uv_using_subcommand run, ,no-build, , ,354,Don't build source distributions
uv, __fish_uv_using_subcommand run, ,build, , ,355, 
uv, __fish_uv_using_subcommand run, ,no-binary, , ,356,Don't install pre-built wheels
uv, __fish_uv_using_subcommand run, ,binary, , ,357, 
uv, __fish_uv_using_subcommand run, ,refresh, , ,358,Refresh all cached data
uv, __fish_uv_using_subcommand run, ,no-refresh, , ,359, 
uv, __fish_uv_using_subcommand run, ,all-packages, , ,360,Run the command with all workspace members installed
uv, __fish_uv_using_subcommand run, ,no-project, , ,361,Avoid discovering the project or workspace
uv, __fish_uv_using_subcommand run, ,show-resolution, , ,362,Whether to show resolver and installer output from any environment modifications
uv, __fish_uv_using_subcommand run,n,no-cache, , ,363,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand run, ,managed-python, , ,364,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand run, ,no-managed-python, , ,365,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand run, ,allow-python-downloads, , ,366,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand run, ,no-python-downloads, , ,367,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand run,q,quiet, , ,368,Use quiet output
uv, __fish_uv_using_subcommand run,v,verbose, , ,369,Use verbose output
uv, __fish_uv_using_subcommand run, ,no-color, , ,370,Disable colors
uv, __fish_uv_using_subcommand run, ,native-tls, , ,371,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand run, ,no-native-tls, , ,372, 
uv, __fish_uv_using_subcommand run, ,offline, , ,373,Disable network access
uv, __fish_uv_using_subcommand run, ,no-offline, , ,374, 
uv, __fish_uv_using_subcommand run, ,preview, , ,375,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand run, ,no-preview, , ,376, 
uv, __fish_uv_using_subcommand run, ,show-settings, , ,377,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand run, ,no-progress, , ,378,Hide all progress outputs
uv, __fish_uv_using_subcommand run, ,no-installer-metadata, , ,379,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand run, ,no-config, , ,380,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand run,h,help, , ,381,Display the concise help for this command
uv, __fish_uv_using_subcommand init, ,name, , ,382,The name of the project
uv, __fish_uv_using_subcommand init, ,description, , ,383,Set the project description
uv, __fish_uv_using_subcommand init, ,vcs,git,@f @r,384,Initialize a version control system for the project
uv, __fish_uv_using_subcommand init, ,build-backend,uv,@f @r,385,Initialize a build-backend of choice for the project
uv, __fish_uv_using_subcommand init, ,author-from,auto,@f @r,386,Fill in the `authors` field in the `pyproject.toml`
uv, __fish_uv_using_subcommand init,p,python, , ,387,The Python interpreter to use to determine the minimum supported Python version.
uv, __fish_uv_using_subcommand init, ,cache-dir, ,@r,388,Path to the cache directory
uv, __fish_uv_using_subcommand init, ,python-preference,only-managed,@f @r,389, 
uv, __fish_uv_using_subcommand init, ,python-fetch,automatic,@f @r,390,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand init, ,color,auto,@f @r,391,Control the use of color in output
uv, __fish_uv_using_subcommand init, ,allow-insecure-host, , ,392,Allow insecure connections to a host
uv, __fish_uv_using_subcommand init, ,preview-features, , ,393,Enable experimental preview features
uv, __fish_uv_using_subcommand init, ,directory, ,@r,394,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand init, ,project, ,@r,395,Run the command within the given project directory
uv, __fish_uv_using_subcommand init, ,config-file, ,@r,396,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand init, ,bare, , ,397,Only create a `pyproject.toml`
uv, __fish_uv_using_subcommand init, ,virtual, , ,398,"Create a virtual project, rather than a package"
uv, __fish_uv_using_subcommand init, ,package, , ,399,Set up the project to be built as a Python package
uv, __fish_uv_using_subcommand init, ,no-package, , ,400,Do not set up the project to be built as a Python package
uv, __fish_uv_using_subcommand init, ,app, , ,401,Create a project for an application
uv, __fish_uv_using_subcommand init, ,lib, , ,402,Create a project for a library
uv, __fish_uv_using_subcommand init, ,script, , ,403,Create a script
uv, __fish_uv_using_subcommand init, ,no-description, , ,404,Disable the description for the project
uv, __fish_uv_using_subcommand init, ,backend, , ,405,Invalid option name for build backend
uv, __fish_uv_using_subcommand init, ,no-readme, , ,406,Do not create a `README.md` file
uv, __fish_uv_using_subcommand init, ,no-pin-python, , ,407,Do not create a `.python-version` file for the project
uv, __fish_uv_using_subcommand init, ,pin-python, , ,408,Create a `.python-version` file for the project
uv, __fish_uv_using_subcommand init, ,no-workspace, , ,409,Avoid discovering a workspace and create a standalone project
uv, __fish_uv_using_subcommand init,n,no-cache, , ,410,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand init, ,managed-python, , ,411,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand init, ,no-managed-python, , ,412,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand init, ,allow-python-downloads, , ,413,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand init, ,no-python-downloads, , ,414,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand init,q,quiet, , ,415,Use quiet output
uv, __fish_uv_using_subcommand init,v,verbose, , ,416,Use verbose output
uv, __fish_uv_using_subcommand init, ,no-color, , ,417,Disable colors
uv, __fish_uv_using_subcommand init, ,native-tls, , ,418,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand init, ,no-native-tls, , ,419, 
uv, __fish_uv_using_subcommand init, ,offline, , ,420,Disable network access
uv, __fish_uv_using_subcommand init, ,no-offline, , ,421, 
uv, __fish_uv_using_subcommand init, ,preview, , ,422,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand init, ,no-preview, , ,423, 
uv, __fish_uv_using_subcommand init, ,isolated, , ,424,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand init, ,show-settings, , ,425,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand init, ,no-progress, , ,426,Hide all progress outputs
uv, __fish_uv_using_subcommand init, ,no-installer-metadata, , ,427,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand init, ,no-config, , ,428,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand init,h,help, , ,429,Display the concise help for this command
uv, __fish_uv_using_subcommand add,r,requirements, ,@r,430,Add the packages listed in the given files
uv, __fish_uv_using_subcommand add,c,constraints, , ,431,Constrain versions using the given requirements files
uv, __fish_uv_using_subcommand add,m,marker, , ,432,Apply this marker to all added packages
uv, __fish_uv_using_subcommand add, ,optional, , ,433,Add the requirements to the package's optional dependencies for the specified extra
uv, __fish_uv_using_subcommand add, ,group, , ,434,Add the requirements to the specified dependency group
uv, __fish_uv_using_subcommand add, ,bounds,lower,@f @r,435,The kind of version specifier to use when adding dependencies
uv, __fish_uv_using_subcommand add, ,rev, , ,436,Commit to use when adding a dependency from Git
uv, __fish_uv_using_subcommand add, ,tag, , ,437,Tag to use when adding a dependency from Git
uv, __fish_uv_using_subcommand add, ,branch, , ,438,Branch to use when adding a dependency from Git
uv, __fish_uv_using_subcommand add, ,extra, , ,439,Extras to enable for the dependency
uv, __fish_uv_using_subcommand add, ,index, , ,440,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand add, ,default-index, , ,441,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand add,i,index-url, , ,442,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand add, ,extra-index-url, , ,443,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand add,f,find-links, , ,444,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand add,P,upgrade-package, , ,445,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand add, ,reinstall-package, , ,446,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand add, ,index-strategy,first-index,@f @r,447,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand add, ,keyring-provider,disabled,@f @r,448,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand add, ,resolution,highest,@f @r,449,The strategy to use when selecting between the different compatible versions for a given package requirement
uv, __fish_uv_using_subcommand add, ,prerelease,disallow,@f @r,450,The strategy to use when considering pre-release versions
uv, __fish_uv_using_subcommand add, ,fork-strategy,fewest,@f @r,451,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv, __fish_uv_using_subcommand add,C,config-setting, , ,452,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand add, ,config-settings-package, , ,453,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand add, ,no-build-isolation-package, , ,454,Disable isolation when building source distributions for a specific package
uv, __fish_uv_using_subcommand add, ,exclude-newer, , ,455,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand add, ,exclude-newer-package, , ,456,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand add, ,link-mode,clone,@f @r,457,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand add, ,no-build-package, , ,458,Don't build source distributions for a specific package
uv, __fish_uv_using_subcommand add, ,no-binary-package, , ,459,Don't install pre-built wheels for a specific package
uv, __fish_uv_using_subcommand add, ,refresh-package, , ,460,Refresh cached data for a specific package
uv, __fish_uv_using_subcommand add, ,package, , ,461,Add the dependency to a specific package in the workspace
uv, __fish_uv_using_subcommand add, ,script, ,@r,462,"Add the dependency to the specified Python script, rather than to a project"
uv, __fish_uv_using_subcommand add,p,python, , ,463,The Python interpreter to use for resolving and syncing.
uv, __fish_uv_using_subcommand add, ,no-install-package, , ,464,Do not install the given package(s)
uv, __fish_uv_using_subcommand add, ,only-install-package, , ,465,Only install the given package(s)
uv, __fish_uv_using_subcommand add, ,cache-dir, ,@r,466,Path to the cache directory
uv, __fish_uv_using_subcommand add, ,python-preference,only-managed,@f @r,467, 
uv, __fish_uv_using_subcommand add, ,python-fetch,automatic,@f @r,468,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand add, ,color,auto,@f @r,469,Control the use of color in output
uv, __fish_uv_using_subcommand add, ,allow-insecure-host, , ,470,Allow insecure connections to a host
uv, __fish_uv_using_subcommand add, ,preview-features, , ,471,Enable experimental preview features
uv, __fish_uv_using_subcommand add, ,directory, ,@r,472,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand add, ,project, ,@r,473,Run the command within the given project directory
uv, __fish_uv_using_subcommand add, ,config-file, ,@r,474,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand add, ,dev, , ,475,Add the requirements to the development dependency group
uv, __fish_uv_using_subcommand add, ,editable, , ,476,Add the requirements as editable
uv, __fish_uv_using_subcommand add, ,no-editable, , ,477, 
uv, __fish_uv_using_subcommand add, ,raw, , ,478,Add a dependency as provided
uv, __fish_uv_using_subcommand add, ,lfs, , ,479,Whether to use Git LFS when adding a dependency from Git
uv, __fish_uv_using_subcommand add, ,no-sync, , ,480,Avoid syncing the virtual environment
uv, __fish_uv_using_subcommand add, ,locked, , ,481,Assert that the `uv.lock` will remain unchanged
uv, __fish_uv_using_subcommand add, ,frozen, , ,482,Add dependencies without re-locking the project
uv, __fish_uv_using_subcommand add, ,active, , ,483,Prefer the active virtual environment over the project's virtual environment
uv, __fish_uv_using_subcommand add, ,no-active, , ,484,Prefer project's virtual environment over an active environment
uv, __fish_uv_using_subcommand add, ,no-index, , ,485,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand add,U,upgrade, , ,486,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv, __fish_uv_using_subcommand add, ,no-upgrade, , ,487, 
uv, __fish_uv_using_subcommand add, ,reinstall, , ,488,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv, __fish_uv_using_subcommand add, ,no-reinstall, , ,489, 
uv, __fish_uv_using_subcommand add, ,pre, , ,490, 
uv, __fish_uv_using_subcommand add, ,no-build-isolation, , ,491,Disable isolation when building source distributions
uv, __fish_uv_using_subcommand add, ,build-isolation, , ,492, 
uv, __fish_uv_using_subcommand add, ,compile-bytecode, , ,493,Compile Python files to bytecode after installation
uv, __fish_uv_using_subcommand add, ,no-compile-bytecode, , ,494, 
uv, __fish_uv_using_subcommand add, ,no-sources, , ,495,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv, __fish_uv_using_subcommand add, ,no-build, , ,496,Don't build source distributions
uv, __fish_uv_using_subcommand add, ,build, , ,497, 
uv, __fish_uv_using_subcommand add, ,no-binary, , ,498,Don't install pre-built wheels
uv, __fish_uv_using_subcommand add, ,binary, , ,499, 
uv, __fish_uv_using_subcommand add, ,refresh, , ,500,Refresh all cached data
uv, __fish_uv_using_subcommand add, ,no-refresh, , ,501, 
uv, __fish_uv_using_subcommand add, ,workspace, , ,502,Add the dependency as a workspace member
uv, __fish_uv_using_subcommand add, ,no-workspace, , ,503,Don't add the dependency as a workspace member
uv, __fish_uv_using_subcommand add, ,no-install-project, , ,504,Do not install the current project
uv, __fish_uv_using_subcommand add, ,only-install-project, , ,505,Only install the current project
uv, __fish_uv_using_subcommand add, ,no-install-workspace, , ,506,"Do not install any workspace members, including the current project"
uv, __fish_uv_using_subcommand add, ,only-install-workspace, , ,507,"Only install workspace members, including the current project"
uv, __fish_uv_using_subcommand add, ,no-install-local, , ,508,Do not install local path dependencies
uv, __fish_uv_using_subcommand add, ,only-install-local, , ,509,Only install local path dependencies
uv, __fish_uv_using_subcommand add,n,no-cache, , ,510,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand add, ,managed-python, , ,511,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand add, ,no-managed-python, , ,512,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand add, ,allow-python-downloads, , ,513,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand add, ,no-python-downloads, , ,514,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand add,q,quiet, , ,515,Use quiet output
uv, __fish_uv_using_subcommand add,v,verbose, , ,516,Use verbose output
uv, __fish_uv_using_subcommand add, ,no-color, , ,517,Disable colors
uv, __fish_uv_using_subcommand add, ,native-tls, , ,518,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand add, ,no-native-tls, , ,519, 
uv, __fish_uv_using_subcommand add, ,offline, , ,520,Disable network access
uv, __fish_uv_using_subcommand add, ,no-offline, , ,521, 
uv, __fish_uv_using_subcommand add, ,preview, , ,522,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand add, ,no-preview, , ,523, 
uv, __fish_uv_using_subcommand add, ,isolated, , ,524,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand add, ,show-settings, , ,525,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand add, ,no-progress, , ,526,Hide all progress outputs
uv, __fish_uv_using_subcommand add, ,no-installer-metadata, , ,527,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand add, ,no-config, , ,528,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand add,h,help, , ,529,Display the concise help for this command
uv, __fish_uv_using_subcommand remove, ,optional, , ,530,Remove the packages from the project's optional dependencies for the specified extra
uv, __fish_uv_using_subcommand remove, ,group, , ,531,Remove the packages from the specified dependency group
uv, __fish_uv_using_subcommand remove, ,index, , ,532,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand remove, ,default-index, , ,533,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand remove,i,index-url, , ,534,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand remove, ,extra-index-url, , ,535,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand remove,f,find-links, , ,536,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand remove,P,upgrade-package, , ,537,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand remove, ,reinstall-package, , ,538,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand remove, ,index-strategy,first-index,@f @r,539,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand remove, ,keyring-provider,disabled,@f @r,540,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand remove, ,resolution,highest,@f @r,541,The strategy to use when selecting between the different compatible versions for a given package requirement
uv, __fish_uv_using_subcommand remove, ,prerelease,disallow,@f @r,542,The strategy to use when considering pre-release versions
uv, __fish_uv_using_subcommand remove, ,fork-strategy,fewest,@f @r,543,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv, __fish_uv_using_subcommand remove,C,config-setting, , ,544,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand remove, ,config-settings-package, , ,545,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand remove, ,no-build-isolation-package, , ,546,Disable isolation when building source distributions for a specific package
uv, __fish_uv_using_subcommand remove, ,exclude-newer, , ,547,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand remove, ,exclude-newer-package, , ,548,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand remove, ,link-mode,clone,@f @r,549,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand remove, ,no-build-package, , ,550,Don't build source distributions for a specific package
uv, __fish_uv_using_subcommand remove, ,no-binary-package, , ,551,Don't install pre-built wheels for a specific package
uv, __fish_uv_using_subcommand remove, ,refresh-package, , ,552,Refresh cached data for a specific package
uv, __fish_uv_using_subcommand remove, ,package, , ,553,Remove the dependencies from a specific package in the workspace
uv, __fish_uv_using_subcommand remove, ,script, ,@r,554,"Remove the dependency from the specified Python script, rather than from a project"
uv, __fish_uv_using_subcommand remove,p,python, , ,555,The Python interpreter to use for resolving and syncing.
uv, __fish_uv_using_subcommand remove, ,cache-dir, ,@r,556,Path to the cache directory
uv, __fish_uv_using_subcommand remove, ,python-preference,only-managed,@f @r,557, 
uv, __fish_uv_using_subcommand remove, ,python-fetch,automatic,@f @r,558,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand remove, ,color,auto,@f @r,559,Control the use of color in output
uv, __fish_uv_using_subcommand remove, ,allow-insecure-host, , ,560,Allow insecure connections to a host
uv, __fish_uv_using_subcommand remove, ,preview-features, , ,561,Enable experimental preview features
uv, __fish_uv_using_subcommand remove, ,directory, ,@r,562,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand remove, ,project, ,@r,563,Run the command within the given project directory
uv, __fish_uv_using_subcommand remove, ,config-file, ,@r,564,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand remove, ,dev, , ,565,Remove the packages from the development dependency group
uv, __fish_uv_using_subcommand remove, ,no-sync, , ,566,Avoid syncing the virtual environment after re-locking the project
uv, __fish_uv_using_subcommand remove, ,active, , ,567,Prefer the active virtual environment over the project's virtual environment
uv, __fish_uv_using_subcommand remove, ,no-active, , ,568,Prefer project's virtual environment over an active environment
uv, __fish_uv_using_subcommand remove, ,locked, , ,569,Assert that the `uv.lock` will remain unchanged
uv, __fish_uv_using_subcommand remove, ,frozen, , ,570,Remove dependencies without re-locking the project
uv, __fish_uv_using_subcommand remove, ,no-index, , ,571,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand remove,U,upgrade, , ,572,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv, __fish_uv_using_subcommand remove, ,no-upgrade, , ,573, 
uv, __fish_uv_using_subcommand remove, ,reinstall, , ,574,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv, __fish_uv_using_subcommand remove, ,no-reinstall, , ,575, 
uv, __fish_uv_using_subcommand remove, ,pre, , ,576, 
uv, __fish_uv_using_subcommand remove, ,no-build-isolation, , ,577,Disable isolation when building source distributions
uv, __fish_uv_using_subcommand remove, ,build-isolation, , ,578, 
uv, __fish_uv_using_subcommand remove, ,compile-bytecode, , ,579,Compile Python files to bytecode after installation
uv, __fish_uv_using_subcommand remove, ,no-compile-bytecode, , ,580, 
uv, __fish_uv_using_subcommand remove, ,no-sources, , ,581,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv, __fish_uv_using_subcommand remove, ,no-build, , ,582,Don't build source distributions
uv, __fish_uv_using_subcommand remove, ,build, , ,583, 
uv, __fish_uv_using_subcommand remove, ,no-binary, , ,584,Don't install pre-built wheels
uv, __fish_uv_using_subcommand remove, ,binary, , ,585, 
uv, __fish_uv_using_subcommand remove, ,refresh, , ,586,Refresh all cached data
uv, __fish_uv_using_subcommand remove, ,no-refresh, , ,587, 
uv, __fish_uv_using_subcommand remove,n,no-cache, , ,588,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand remove, ,managed-python, , ,589,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand remove, ,no-managed-python, , ,590,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand remove, ,allow-python-downloads, , ,591,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand remove, ,no-python-downloads, , ,592,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand remove,q,quiet, , ,593,Use quiet output
uv, __fish_uv_using_subcommand remove,v,verbose, , ,594,Use verbose output
uv, __fish_uv_using_subcommand remove, ,no-color, , ,595,Disable colors
uv, __fish_uv_using_subcommand remove, ,native-tls, , ,596,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand remove, ,no-native-tls, , ,597, 
uv, __fish_uv_using_subcommand remove, ,offline, , ,598,Disable network access
uv, __fish_uv_using_subcommand remove, ,no-offline, , ,599, 
uv, __fish_uv_using_subcommand remove, ,preview, , ,600,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand remove, ,no-preview, , ,601, 
uv, __fish_uv_using_subcommand remove, ,isolated, , ,602,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand remove, ,show-settings, , ,603,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand remove, ,no-progress, , ,604,Hide all progress outputs
uv, __fish_uv_using_subcommand remove, ,no-installer-metadata, , ,605,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand remove, ,no-config, , ,606,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand remove,h,help, , ,607,Display the concise help for this command
uv, __fish_uv_using_subcommand version, ,bump,major,@f @r,608,Update the project version using the given semantics
uv, __fish_uv_using_subcommand version, ,output-format,text,@f @r,609,The format of the output
uv, __fish_uv_using_subcommand version, ,index, , ,610,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand version, ,default-index, , ,611,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand version,i,index-url, , ,612,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand version, ,extra-index-url, , ,613,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand version,f,find-links, , ,614,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand version,P,upgrade-package, , ,615,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand version, ,reinstall-package, , ,616,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand version, ,index-strategy,first-index,@f @r,617,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand version, ,keyring-provider,disabled,@f @r,618,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand version, ,resolution,highest,@f @r,619,The strategy to use when selecting between the different compatible versions for a given package requirement
uv, __fish_uv_using_subcommand version, ,prerelease,disallow,@f @r,620,The strategy to use when considering pre-release versions
uv, __fish_uv_using_subcommand version, ,fork-strategy,fewest,@f @r,621,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv, __fish_uv_using_subcommand version,C,config-setting, , ,622,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand version, ,config-settings-package, , ,623,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand version, ,no-build-isolation-package, , ,624,Disable isolation when building source distributions for a specific package
uv, __fish_uv_using_subcommand version, ,exclude-newer, , ,625,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand version, ,exclude-newer-package, , ,626,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand version, ,link-mode,clone,@f @r,627,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand version, ,no-build-package, , ,628,Don't build source distributions for a specific package
uv, __fish_uv_using_subcommand version, ,no-binary-package, , ,629,Don't install pre-built wheels for a specific package
uv, __fish_uv_using_subcommand version, ,refresh-package, , ,630,Refresh cached data for a specific package
uv, __fish_uv_using_subcommand version, ,package, , ,631,Update the version of a specific package in the workspace
uv, __fish_uv_using_subcommand version,p,python, , ,632,The Python interpreter to use for resolving and syncing.
uv, __fish_uv_using_subcommand version, ,cache-dir, ,@r,633,Path to the cache directory
uv, __fish_uv_using_subcommand version, ,python-preference,only-managed,@f @r,634, 
uv, __fish_uv_using_subcommand version, ,python-fetch,automatic,@f @r,635,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand version, ,color,auto,@f @r,636,Control the use of color in output
uv, __fish_uv_using_subcommand version, ,allow-insecure-host, , ,637,Allow insecure connections to a host
uv, __fish_uv_using_subcommand version, ,preview-features, , ,638,Enable experimental preview features
uv, __fish_uv_using_subcommand version, ,directory, ,@r,639,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand version, ,project, ,@r,640,Run the command within the given project directory
uv, __fish_uv_using_subcommand version, ,config-file, ,@r,641,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand version, ,dry-run, , ,642,Don't write a new version to the `pyproject.toml`
uv, __fish_uv_using_subcommand version, ,short, , ,643,Only show the version
uv, __fish_uv_using_subcommand version, ,no-sync, , ,644,Avoid syncing the virtual environment after re-locking the project
uv, __fish_uv_using_subcommand version, ,active, , ,645,Prefer the active virtual environment over the project's virtual environment
uv, __fish_uv_using_subcommand version, ,no-active, , ,646,Prefer project's virtual environment over an active environment
uv, __fish_uv_using_subcommand version, ,locked, , ,647,Assert that the `uv.lock` will remain unchanged
uv, __fish_uv_using_subcommand version, ,frozen, , ,648,Update the version without re-locking the project
uv, __fish_uv_using_subcommand version, ,no-index, , ,649,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand version,U,upgrade, , ,650,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv, __fish_uv_using_subcommand version, ,no-upgrade, , ,651, 
uv, __fish_uv_using_subcommand version, ,reinstall, , ,652,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv, __fish_uv_using_subcommand version, ,no-reinstall, , ,653, 
uv, __fish_uv_using_subcommand version, ,pre, , ,654, 
uv, __fish_uv_using_subcommand version, ,no-build-isolation, , ,655,Disable isolation when building source distributions
uv, __fish_uv_using_subcommand version, ,build-isolation, , ,656, 
uv, __fish_uv_using_subcommand version, ,compile-bytecode, , ,657,Compile Python files to bytecode after installation
uv, __fish_uv_using_subcommand version, ,no-compile-bytecode, , ,658, 
uv, __fish_uv_using_subcommand version, ,no-sources, , ,659,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv, __fish_uv_using_subcommand version, ,no-build, , ,660,Don't build source distributions
uv, __fish_uv_using_subcommand version, ,build, , ,661, 
uv, __fish_uv_using_subcommand version, ,no-binary, , ,662,Don't install pre-built wheels
uv, __fish_uv_using_subcommand version, ,binary, , ,663, 
uv, __fish_uv_using_subcommand version, ,refresh, , ,664,Refresh all cached data
uv, __fish_uv_using_subcommand version, ,no-refresh, , ,665, 
uv, __fish_uv_using_subcommand version,n,no-cache, , ,666,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand version, ,managed-python, , ,667,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand version, ,no-managed-python, , ,668,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand version, ,allow-python-downloads, , ,669,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand version, ,no-python-downloads, , ,670,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand version,q,quiet, , ,671,Use quiet output
uv, __fish_uv_using_subcommand version,v,verbose, , ,672,Use verbose output
uv, __fish_uv_using_subcommand version, ,no-color, , ,673,Disable colors
uv, __fish_uv_using_subcommand version, ,native-tls, , ,674,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand version, ,no-native-tls, , ,675, 
uv, __fish_uv_using_subcommand version, ,offline, , ,676,Disable network access
uv, __fish_uv_using_subcommand version, ,no-offline, , ,677, 
uv, __fish_uv_using_subcommand version, ,preview, , ,678,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand version, ,no-preview, , ,679, 
uv, __fish_uv_using_subcommand version, ,isolated, , ,680,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand version, ,show-settings, , ,681,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand version, ,no-progress, , ,682,Hide all progress outputs
uv, __fish_uv_using_subcommand version, ,no-installer-metadata, , ,683,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand version, ,no-config, , ,684,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand version,h,help, , ,685,Display the concise help for this command
uv, __fish_uv_using_subcommand sync, ,extra, , ,686,Include optional dependencies from the specified extra name
uv, __fish_uv_using_subcommand sync, ,output-format,text,@f @r,687,Select the output format
uv, __fish_uv_using_subcommand sync, ,no-extra, , ,688,"Exclude the specified optional dependencies, if `--all-extras` is supplied"
uv, __fish_uv_using_subcommand sync, ,group, , ,689,Include dependencies from the specified dependency group
uv, __fish_uv_using_subcommand sync, ,no-group, , ,690,Disable the specified dependency group
uv, __fish_uv_using_subcommand sync, ,only-group, , ,691,Only include dependencies from the specified dependency group
uv, __fish_uv_using_subcommand sync, ,no-install-package, , ,692,Do not install the given package(s)
uv, __fish_uv_using_subcommand sync, ,only-install-package, , ,693,Only install the given package(s)
uv, __fish_uv_using_subcommand sync, ,index, , ,694,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand sync, ,default-index, , ,695,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand sync,i,index-url, , ,696,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand sync, ,extra-index-url, , ,697,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand sync,f,find-links, , ,698,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand sync,P,upgrade-package, , ,699,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand sync, ,reinstall-package, , ,700,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand sync, ,index-strategy,first-index,@f @r,701,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand sync, ,keyring-provider,disabled,@f @r,702,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand sync, ,resolution,highest,@f @r,703,The strategy to use when selecting between the different compatible versions for a given package requirement
uv, __fish_uv_using_subcommand sync, ,prerelease,disallow,@f @r,704,The strategy to use when considering pre-release versions
uv, __fish_uv_using_subcommand sync, ,fork-strategy,fewest,@f @r,705,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv, __fish_uv_using_subcommand sync,C,config-setting, , ,706,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand sync, ,config-settings-package, , ,707,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand sync, ,no-build-isolation-package, , ,708,Disable isolation when building source distributions for a specific package
uv, __fish_uv_using_subcommand sync, ,exclude-newer, , ,709,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand sync, ,exclude-newer-package, , ,710,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand sync, ,link-mode,clone,@f @r,711,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand sync, ,no-build-package, , ,712,Don't build source distributions for a specific package
uv, __fish_uv_using_subcommand sync, ,no-binary-package, , ,713,Don't install pre-built wheels for a specific package
uv, __fish_uv_using_subcommand sync, ,refresh-package, , ,714,Refresh cached data for a specific package
uv, __fish_uv_using_subcommand sync, ,package, , ,715,Sync for specific packages in the workspace
uv, __fish_uv_using_subcommand sync, ,script, ,@r,716,"Sync the environment for a Python script, rather than the current project"
uv, __fish_uv_using_subcommand sync,p,python, , ,717,The Python interpreter to use for the project environment.
uv, __fish_uv_using_subcommand sync, ,python-platform,windows,@f @r,718,The platform for which requirements should be installed
uv, __fish_uv_using_subcommand sync, ,cache-dir, ,@r,719,Path to the cache directory
uv, __fish_uv_using_subcommand sync, ,python-preference,only-managed,@f @r,720, 
uv, __fish_uv_using_subcommand sync, ,python-fetch,automatic,@f @r,721,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand sync, ,color,auto,@f @r,722,Control the use of color in output
uv, __fish_uv_using_subcommand sync, ,allow-insecure-host, , ,723,Allow insecure connections to a host
uv, __fish_uv_using_subcommand sync, ,preview-features, , ,724,Enable experimental preview features
uv, __fish_uv_using_subcommand sync, ,directory, ,@r,725,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand sync, ,project, ,@r,726,Run the command within the given project directory
uv, __fish_uv_using_subcommand sync, ,config-file, ,@r,727,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand sync, ,all-extras, , ,728,Include all optional dependencies
uv, __fish_uv_using_subcommand sync, ,no-all-extras, , ,729, 
uv, __fish_uv_using_subcommand sync, ,dev, , ,730,Include the development dependency group
uv, __fish_uv_using_subcommand sync, ,no-dev, , ,731,Disable the development dependency group
uv, __fish_uv_using_subcommand sync, ,only-dev, , ,732,Only include the development dependency group
uv, __fish_uv_using_subcommand sync, ,no-default-groups, , ,733,Ignore the default dependency groups
uv, __fish_uv_using_subcommand sync, ,all-groups, , ,734,Include dependencies from all dependency groups
uv, __fish_uv_using_subcommand sync, ,editable, , ,735,"Install any non-editable dependencies, including the project and any workspace members, as editable"
uv, __fish_uv_using_subcommand sync, ,no-editable, , ,736,"Install any editable dependencies, including the project and any workspace members, as non-editable"
uv, __fish_uv_using_subcommand sync, ,inexact, , ,737,Do not remove extraneous packages present in the environment
uv, __fish_uv_using_subcommand sync, ,exact, , ,738,"Perform an exact sync, removing extraneous packages"
uv, __fish_uv_using_subcommand sync, ,active, , ,739,Sync dependencies to the active virtual environment
uv, __fish_uv_using_subcommand sync, ,no-active, , ,740,Prefer project's virtual environment over an active environment
uv, __fish_uv_using_subcommand sync, ,no-install-project, , ,741,Do not install the current project
uv, __fish_uv_using_subcommand sync, ,only-install-project, , ,742,Only install the current project
uv, __fish_uv_using_subcommand sync, ,no-install-workspace, , ,743,"Do not install any workspace members, including the root project"
uv, __fish_uv_using_subcommand sync, ,only-install-workspace, , ,744,"Only install workspace members, including the root project"
uv, __fish_uv_using_subcommand sync, ,no-install-local, , ,745,Do not install local path dependencies
uv, __fish_uv_using_subcommand sync, ,only-install-local, , ,746,Only install local path dependencies
uv, __fish_uv_using_subcommand sync, ,locked, , ,747,Assert that the `uv.lock` will remain unchanged
uv, __fish_uv_using_subcommand sync, ,frozen, , ,748,Sync without updating the `uv.lock` file
uv, __fish_uv_using_subcommand sync, ,dry-run, , ,749,"Perform a dry run, without writing the lockfile or modifying the project environment"
uv, __fish_uv_using_subcommand sync, ,no-index, , ,750,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand sync,U,upgrade, , ,751,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv, __fish_uv_using_subcommand sync, ,no-upgrade, , ,752, 
uv, __fish_uv_using_subcommand sync, ,reinstall, , ,753,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv, __fish_uv_using_subcommand sync, ,no-reinstall, , ,754, 
uv, __fish_uv_using_subcommand sync, ,pre, , ,755, 
uv, __fish_uv_using_subcommand sync, ,no-build-isolation, , ,756,Disable isolation when building source distributions
uv, __fish_uv_using_subcommand sync, ,build-isolation, , ,757, 
uv, __fish_uv_using_subcommand sync, ,compile-bytecode, , ,758,Compile Python files to bytecode after installation
uv, __fish_uv_using_subcommand sync, ,no-compile-bytecode, , ,759, 
uv, __fish_uv_using_subcommand sync, ,no-sources, , ,760,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv, __fish_uv_using_subcommand sync, ,no-build, , ,761,Don't build source distributions
uv, __fish_uv_using_subcommand sync, ,build, , ,762, 
uv, __fish_uv_using_subcommand sync, ,no-binary, , ,763,Don't install pre-built wheels
uv, __fish_uv_using_subcommand sync, ,binary, , ,764, 
uv, __fish_uv_using_subcommand sync, ,refresh, , ,765,Refresh all cached data
uv, __fish_uv_using_subcommand sync, ,no-refresh, , ,766, 
uv, __fish_uv_using_subcommand sync, ,all-packages, , ,767,Sync all packages in the workspace
uv, __fish_uv_using_subcommand sync, ,check, , ,768,Check if the Python environment is synchronized with the project
uv, __fish_uv_using_subcommand sync, ,no-check, , ,769, 
uv, __fish_uv_using_subcommand sync,n,no-cache, , ,770,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand sync, ,managed-python, , ,771,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand sync, ,no-managed-python, , ,772,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand sync, ,allow-python-downloads, , ,773,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand sync, ,no-python-downloads, , ,774,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand sync,q,quiet, , ,775,Use quiet output
uv, __fish_uv_using_subcommand sync,v,verbose, , ,776,Use verbose output
uv, __fish_uv_using_subcommand sync, ,no-color, , ,777,Disable colors
uv, __fish_uv_using_subcommand sync, ,native-tls, , ,778,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand sync, ,no-native-tls, , ,779, 
uv, __fish_uv_using_subcommand sync, ,offline, , ,780,Disable network access
uv, __fish_uv_using_subcommand sync, ,no-offline, , ,781, 
uv, __fish_uv_using_subcommand sync, ,preview, , ,782,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand sync, ,no-preview, , ,783, 
uv, __fish_uv_using_subcommand sync, ,isolated, , ,784,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand sync, ,show-settings, , ,785,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand sync, ,no-progress, , ,786,Hide all progress outputs
uv, __fish_uv_using_subcommand sync, ,no-installer-metadata, , ,787,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand sync, ,no-config, , ,788,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand sync,h,help, , ,789,Display the concise help for this command
uv, __fish_uv_using_subcommand lock, ,script, ,@r,790,"Lock the specified Python script, rather than the current project"
uv, __fish_uv_using_subcommand lock, ,index, , ,791,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand lock, ,default-index, , ,792,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand lock,i,index-url, , ,793,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand lock, ,extra-index-url, , ,794,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand lock,f,find-links, , ,795,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand lock,P,upgrade-package, , ,796,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand lock, ,index-strategy,first-index,@f @r,797,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand lock, ,keyring-provider,disabled,@f @r,798,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand lock, ,resolution,highest,@f @r,799,The strategy to use when selecting between the different compatible versions for a given package requirement
uv, __fish_uv_using_subcommand lock, ,prerelease,disallow,@f @r,800,The strategy to use when considering pre-release versions
uv, __fish_uv_using_subcommand lock, ,fork-strategy,fewest,@f @r,801,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv, __fish_uv_using_subcommand lock,C,config-setting, , ,802,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand lock, ,config-settings-package, , ,803,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand lock, ,no-build-isolation-package, , ,804,Disable isolation when building source distributions for a specific package
uv, __fish_uv_using_subcommand lock, ,exclude-newer, , ,805,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand lock, ,exclude-newer-package, , ,806,Limit candidate packages for a specific package to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand lock, ,link-mode,clone,@f @r,807,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand lock, ,no-build-package, , ,808,Don't build source distributions for a specific package
uv, __fish_uv_using_subcommand lock, ,no-binary-package, , ,809,Don't install pre-built wheels for a specific package
uv, __fish_uv_using_subcommand lock, ,refresh-package, , ,810,Refresh cached data for a specific package
uv, __fish_uv_using_subcommand lock,p,python, , ,811,The Python interpreter to use during resolution.
uv, __fish_uv_using_subcommand lock, ,cache-dir, ,@r,812,Path to the cache directory
uv, __fish_uv_using_subcommand lock, ,python-preference,only-managed,@f @r,813, 
uv, __fish_uv_using_subcommand lock, ,python-fetch,automatic,@f @r,814,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand lock, ,color,auto,@f @r,815,Control the use of color in output
uv, __fish_uv_using_subcommand lock, ,allow-insecure-host, , ,816,Allow insecure connections to a host
uv, __fish_uv_using_subcommand lock, ,preview-features, , ,817,Enable experimental preview features
uv, __fish_uv_using_subcommand lock, ,directory, ,@r,818,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand lock, ,project, ,@r,819,Run the command within the given project directory
uv, __fish_uv_using_subcommand lock, ,config-file, ,@r,820,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand lock, ,check, , ,821,Check if the lockfile is up-to-date
uv, __fish_uv_using_subcommand lock, ,locked, , ,822,Check if the lockfile is up-to-date
uv, __fish_uv_using_subcommand lock, ,check-exists, , ,823,Assert that a `uv.lock` exists without checking if it is up-to-date
uv, __fish_uv_using_subcommand lock, ,dry-run, , ,824,"Perform a dry run, without writing the lockfile"
uv, __fish_uv_using_subcommand lock, ,no-index, , ,825,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand lock,U,upgrade, , ,826,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv, __fish_uv_using_subcommand lock, ,no-upgrade, , ,827, 
uv, __fish_uv_using_subcommand lock, ,pre, , ,828, 
uv, __fish_uv_using_subcommand lock, ,no-build-isolation, , ,829,Disable isolation when building source distributions
uv, __fish_uv_using_subcommand lock, ,build-isolation, , ,830, 
uv, __fish_uv_using_subcommand lock, ,no-sources, , ,831,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv, __fish_uv_using_subcommand lock, ,no-build, , ,832,Don't build source distributions
uv, __fish_uv_using_subcommand lock, ,build, , ,833, 
uv, __fish_uv_using_subcommand lock, ,no-binary, , ,834,Don't install pre-built wheels
uv, __fish_uv_using_subcommand lock, ,binary, , ,835, 
uv, __fish_uv_using_subcommand lock, ,refresh, , ,836,Refresh all cached data
uv, __fish_uv_using_subcommand lock, ,no-refresh, , ,837, 
uv, __fish_uv_using_subcommand lock,n,no-cache, , ,838,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand lock, ,managed-python, , ,839,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand lock, ,no-managed-python, , ,840,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand lock, ,allow-python-downloads, , ,841,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand lock, ,no-python-downloads, , ,842,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand lock,q,quiet, , ,843,Use quiet output
uv, __fish_uv_using_subcommand lock,v,verbose, , ,844,Use verbose output
uv, __fish_uv_using_subcommand lock, ,no-color, , ,845,Disable colors
uv, __fish_uv_using_subcommand lock, ,native-tls, , ,846,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand lock, ,no-native-tls, , ,847, 
uv, __fish_uv_using_subcommand lock, ,offline, , ,848,Disable network access
uv, __fish_uv_using_subcommand lock, ,no-offline, , ,849, 
uv, __fish_uv_using_subcommand lock, ,preview, , ,850,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand lock, ,no-preview, , ,851, 
uv, __fish_uv_using_subcommand lock, ,isolated, , ,852,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand lock, ,show-settings, , ,853,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand lock, ,no-progress, , ,854,Hide all progress outputs
uv, __fish_uv_using_subcommand lock, ,no-installer-metadata, , ,855,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand lock, ,no-config, , ,856,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand lock,h,help, , ,857,Display the concise help for this command
uv, __fish_uv_using_subcommand export, ,format,requirements.txt,@f @r,858,The format to which `uv.lock` should be exported
uv, __fish_uv_using_subcommand export, ,package, , ,859,Export the dependencies for specific packages in the workspace
uv, __fish_uv_using_subcommand export, ,prune, , ,860,Prune the given package from the dependency tree
uv, __fish_uv_using_subcommand export, ,extra, , ,861,Include optional dependencies from the specified extra name
uv, __fish_uv_using_subcommand export, ,no-extra, , ,862,"Exclude the specified optional dependencies, if `--all-extras` is supplied"
uv, __fish_uv_using_subcommand export, ,group, , ,863,Include dependencies from the specified dependency group
uv, __fish_uv_using_subcommand export, ,no-group, , ,864,Disable the specified dependency group
uv, __fish_uv_using_subcommand export, ,only-group, , ,865,Only include dependencies from the specified dependency group
uv, __fish_uv_using_subcommand export,o,output-file, ,@r,866,Write the exported requirements to the given file
uv, __fish_uv_using_subcommand export, ,no-emit-package, , ,867,Do not emit the given package(s)
uv, __fish_uv_using_subcommand export, ,only-emit-package, , ,868,Only emit the given package(s)
uv, __fish_uv_using_subcommand export, ,index, , ,869,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand export, ,default-index, , ,870,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand export,i,index-url, , ,871,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand export, ,extra-index-url, , ,872,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand export,f,find-links, , ,873,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand export,P,upgrade-package, , ,874,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand export, ,index-strategy,first-index,@f @r,875,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand export, ,keyring-provider,disabled,@f @r,876,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand export, ,resolution,highest,@f @r,877,The strategy to use when selecting between the different compatible versions for a given package requirement
uv, __fish_uv_using_subcommand export, ,prerelease,disallow,@f @r,878,The strategy to use when considering pre-release versions
uv, __fish_uv_using_subcommand export, ,fork-strategy,fewest,@f @r,879,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv, __fish_uv_using_subcommand export,C,config-setting, , ,880,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand export, ,config-settings-package, , ,881,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand export, ,no-build-isolation-package, , ,882,Disable isolation when building source distributions for a specific package
uv, __fish_uv_using_subcommand export, ,exclude-newer, , ,883,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand export, ,exclude-newer-package, , ,884,Limit candidate packages for a specific package to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand export, ,link-mode,clone,@f @r,885,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand export, ,no-build-package, , ,886,Don't build source distributions for a specific package
uv, __fish_uv_using_subcommand export, ,no-binary-package, , ,887,Don't install pre-built wheels for a specific package
uv, __fish_uv_using_subcommand export, ,refresh-package, , ,888,Refresh cached data for a specific package
uv, __fish_uv_using_subcommand export, ,script, ,@r,889,"Export the dependencies for the specified PEP 723 Python script, rather than the current project"
uv, __fish_uv_using_subcommand export,p,python, , ,890,The Python interpreter to use during resolution.
uv, __fish_uv_using_subcommand export, ,cache-dir, ,@r,891,Path to the cache directory
uv, __fish_uv_using_subcommand export, ,python-preference,only-managed,@f @r,892, 
uv, __fish_uv_using_subcommand export, ,python-fetch,automatic,@f @r,893,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand export, ,color,auto,@f @r,894,Control the use of color in output
uv, __fish_uv_using_subcommand export, ,allow-insecure-host, , ,895,Allow insecure connections to a host
uv, __fish_uv_using_subcommand export, ,preview-features, , ,896,Enable experimental preview features
uv, __fish_uv_using_subcommand export, ,directory, ,@r,897,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand export, ,project, ,@r,898,Run the command within the given project directory
uv, __fish_uv_using_subcommand export, ,config-file, ,@r,899,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand export, ,all-packages, , ,900,Export the entire workspace
uv, __fish_uv_using_subcommand export, ,all-extras, , ,901,Include all optional dependencies
uv, __fish_uv_using_subcommand export, ,no-all-extras, , ,902, 
uv, __fish_uv_using_subcommand export, ,dev, , ,903,Include the development dependency group
uv, __fish_uv_using_subcommand export, ,no-dev, , ,904,Disable the development dependency group
uv, __fish_uv_using_subcommand export, ,only-dev, , ,905,Only include the development dependency group
uv, __fish_uv_using_subcommand export, ,no-default-groups, , ,906,Ignore the default dependency groups
uv, __fish_uv_using_subcommand export, ,all-groups, , ,907,Include dependencies from all dependency groups
uv, __fish_uv_using_subcommand export, ,no-annotate, , ,908,Exclude comment annotations indicating the source of each package
uv, __fish_uv_using_subcommand export, ,annotate, , ,909, 
uv, __fish_uv_using_subcommand export, ,no-header, , ,910,Exclude the comment header at the top of the generated output file
uv, __fish_uv_using_subcommand export, ,header, , ,911, 
uv, __fish_uv_using_subcommand export, ,editable, , ,912,"Export any non-editable dependencies, including the project and any workspace members, as editable"
uv, __fish_uv_using_subcommand export, ,no-editable, , ,913,"Export any editable dependencies, including the project and any workspace members, as non-editable"
uv, __fish_uv_using_subcommand export, ,hashes, , ,914,Include hashes for all dependencies
uv, __fish_uv_using_subcommand export, ,no-hashes, , ,915,Omit hashes in the generated output
uv, __fish_uv_using_subcommand export, ,no-emit-project, , ,916,Do not emit the current project
uv, __fish_uv_using_subcommand export, ,only-emit-project, , ,917,Only emit the current project
uv, __fish_uv_using_subcommand export, ,no-emit-workspace, , ,918,"Do not emit any workspace members, including the root project"
uv, __fish_uv_using_subcommand export, ,only-emit-workspace, , ,919,"Only emit workspace members, including the root project"
uv, __fish_uv_using_subcommand export, ,no-emit-local, , ,920,Do not include local path dependencies in the exported requirements
uv, __fish_uv_using_subcommand export, ,only-emit-local, , ,921,Only include local path dependencies in the exported requirements
uv, __fish_uv_using_subcommand export, ,locked, , ,922,Assert that the `uv.lock` will remain unchanged
uv, __fish_uv_using_subcommand export, ,frozen, , ,923,Do not update the `uv.lock` before exporting
uv, __fish_uv_using_subcommand export, ,no-index, , ,924,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand export,U,upgrade, , ,925,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv, __fish_uv_using_subcommand export, ,no-upgrade, , ,926, 
uv, __fish_uv_using_subcommand export, ,pre, , ,927, 
uv, __fish_uv_using_subcommand export, ,no-build-isolation, , ,928,Disable isolation when building source distributions
uv, __fish_uv_using_subcommand export, ,build-isolation, , ,929, 
uv, __fish_uv_using_subcommand export, ,no-sources, , ,930,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv, __fish_uv_using_subcommand export, ,no-build, , ,931,Don't build source distributions
uv, __fish_uv_using_subcommand export, ,build, , ,932, 
uv, __fish_uv_using_subcommand export, ,no-binary, , ,933,Don't install pre-built wheels
uv, __fish_uv_using_subcommand export, ,binary, , ,934, 
uv, __fish_uv_using_subcommand export, ,refresh, , ,935,Refresh all cached data
uv, __fish_uv_using_subcommand export, ,no-refresh, , ,936, 
uv, __fish_uv_using_subcommand export,n,no-cache, , ,937,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand export, ,managed-python, , ,938,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand export, ,no-managed-python, , ,939,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand export, ,allow-python-downloads, , ,940,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand export, ,no-python-downloads, , ,941,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand export,q,quiet, , ,942,Use quiet output
uv, __fish_uv_using_subcommand export,v,verbose, , ,943,Use verbose output
uv, __fish_uv_using_subcommand export, ,no-color, , ,944,Disable colors
uv, __fish_uv_using_subcommand export, ,native-tls, , ,945,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand export, ,no-native-tls, , ,946, 
uv, __fish_uv_using_subcommand export, ,offline, , ,947,Disable network access
uv, __fish_uv_using_subcommand export, ,no-offline, , ,948, 
uv, __fish_uv_using_subcommand export, ,preview, , ,949,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand export, ,no-preview, , ,950, 
uv, __fish_uv_using_subcommand export, ,isolated, , ,951,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand export, ,show-settings, , ,952,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand export, ,no-progress, , ,953,Hide all progress outputs
uv, __fish_uv_using_subcommand export, ,no-installer-metadata, , ,954,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand export, ,no-config, , ,955,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand export,h,help, , ,956,Display the concise help for this command
uv, __fish_uv_using_subcommand tree,d,depth, , ,957,Maximum display depth of the dependency tree
uv, __fish_uv_using_subcommand tree, ,prune, , ,958,Prune the given package from the display of the dependency tree
uv, __fish_uv_using_subcommand tree, ,package, , ,959,Display only the specified packages
uv, __fish_uv_using_subcommand tree, ,group, , ,960,Include dependencies from the specified dependency group
uv, __fish_uv_using_subcommand tree, ,no-group, , ,961,Disable the specified dependency group
uv, __fish_uv_using_subcommand tree, ,only-group, , ,962,Only include dependencies from the specified dependency group
uv, __fish_uv_using_subcommand tree, ,no-build-package, , ,963,Don't build source distributions for a specific package
uv, __fish_uv_using_subcommand tree, ,no-binary-package, , ,964,Don't install pre-built wheels for a specific package
uv, __fish_uv_using_subcommand tree, ,index, , ,965,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand tree, ,default-index, , ,966,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand tree,i,index-url, , ,967,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand tree, ,extra-index-url, , ,968,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand tree,f,find-links, , ,969,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand tree,P,upgrade-package, , ,970,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand tree, ,index-strategy,first-index,@f @r,971,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand tree, ,keyring-provider,disabled,@f @r,972,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand tree, ,resolution,highest,@f @r,973,The strategy to use when selecting between the different compatible versions for a given package requirement
uv, __fish_uv_using_subcommand tree, ,prerelease,disallow,@f @r,974,The strategy to use when considering pre-release versions
uv, __fish_uv_using_subcommand tree, ,fork-strategy,fewest,@f @r,975,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv, __fish_uv_using_subcommand tree,C,config-setting, , ,976,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand tree, ,config-settings-package, , ,977,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand tree, ,no-build-isolation-package, , ,978,Disable isolation when building source distributions for a specific package
uv, __fish_uv_using_subcommand tree, ,exclude-newer, , ,979,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand tree, ,exclude-newer-package, , ,980,Limit candidate packages for a specific package to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand tree, ,link-mode,clone,@f @r,981,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand tree, ,script, ,@r,982,"Show the dependency tree the specified PEP 723 Python script, rather than the current project"
uv, __fish_uv_using_subcommand tree, ,python-version, , ,983,The Python version to use when filtering the tree
uv, __fish_uv_using_subcommand tree, ,python-platform,windows,@f @r,984,The platform to use when filtering the tree
uv, __fish_uv_using_subcommand tree,p,python, , ,985,The Python interpreter to use for locking and filtering.
uv, __fish_uv_using_subcommand tree, ,cache-dir, ,@r,986,Path to the cache directory
uv, __fish_uv_using_subcommand tree, ,python-preference,only-managed,@f @r,987, 
uv, __fish_uv_using_subcommand tree, ,python-fetch,automatic,@f @r,988,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand tree, ,color,auto,@f @r,989,Control the use of color in output
uv, __fish_uv_using_subcommand tree, ,allow-insecure-host, , ,990,Allow insecure connections to a host
uv, __fish_uv_using_subcommand tree, ,preview-features, , ,991,Enable experimental preview features
uv, __fish_uv_using_subcommand tree, ,directory, ,@r,992,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand tree, ,project, ,@r,993,Run the command within the given project directory
uv, __fish_uv_using_subcommand tree, ,config-file, ,@r,994,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand tree, ,universal, , ,995,Show a platform-independent dependency tree
uv, __fish_uv_using_subcommand tree, ,no-dedupe, , ,996,"Do not de-duplicate repeated dependencies. Usually, when a package has already displayed its dependencies, further occurrences will not re-display its dependencies, and will include a (*) to indicate it has already been shown. This flag will cause those duplicates to be repeated"
uv, __fish_uv_using_subcommand tree, ,invert, , ,997,Show the reverse dependencies for the given package. This flag will invert the tree and display the packages that depend on the given package
uv, __fish_uv_using_subcommand tree, ,outdated, , ,998,Show the latest available version of each package in the tree
uv, __fish_uv_using_subcommand tree, ,show-sizes, , ,999,Show compressed wheel sizes for packages in the tree
uv, __fish_uv_using_subcommand tree, ,dev, , ,1000,Include the development dependency group
uv, __fish_uv_using_subcommand tree, ,only-dev, , ,1001,Only include the development dependency group
uv, __fish_uv_using_subcommand tree, ,no-dev, , ,1002,Disable the development dependency group
uv, __fish_uv_using_subcommand tree, ,no-default-groups, , ,1003,Ignore the default dependency groups
uv, __fish_uv_using_subcommand tree, ,all-groups, , ,1004,Include dependencies from all dependency groups
uv, __fish_uv_using_subcommand tree, ,locked, , ,1005,Assert that the `uv.lock` will remain unchanged
uv, __fish_uv_using_subcommand tree, ,frozen, , ,1006,Display the requirements without locking the project
uv, __fish_uv_using_subcommand tree, ,no-build, , ,1007,Don't build source distributions
uv, __fish_uv_using_subcommand tree, ,build, , ,1008, 
uv, __fish_uv_using_subcommand tree, ,no-binary, , ,1009,Don't install pre-built wheels
uv, __fish_uv_using_subcommand tree, ,binary, , ,1010, 
uv, __fish_uv_using_subcommand tree, ,no-index, , ,1011,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand tree,U,upgrade, , ,1012,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv, __fish_uv_using_subcommand tree, ,no-upgrade, , ,1013, 
uv, __fish_uv_using_subcommand tree, ,pre, , ,1014, 
uv, __fish_uv_using_subcommand tree, ,no-build-isolation, , ,1015,Disable isolation when building source distributions
uv, __fish_uv_using_subcommand tree, ,build-isolation, , ,1016, 
uv, __fish_uv_using_subcommand tree, ,no-sources, , ,1017,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv, __fish_uv_using_subcommand tree,n,no-cache, , ,1018,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand tree, ,managed-python, , ,1019,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand tree, ,no-managed-python, , ,1020,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand tree, ,allow-python-downloads, , ,1021,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand tree, ,no-python-downloads, , ,1022,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand tree,q,quiet, , ,1023,Use quiet output
uv, __fish_uv_using_subcommand tree,v,verbose, , ,1024,Use verbose output
uv, __fish_uv_using_subcommand tree, ,no-color, , ,1025,Disable colors
uv, __fish_uv_using_subcommand tree, ,native-tls, , ,1026,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand tree, ,no-native-tls, , ,1027, 
uv, __fish_uv_using_subcommand tree, ,offline, , ,1028,Disable network access
uv, __fish_uv_using_subcommand tree, ,no-offline, , ,1029, 
uv, __fish_uv_using_subcommand tree, ,preview, , ,1030,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand tree, ,no-preview, , ,1031, 
uv, __fish_uv_using_subcommand tree, ,isolated, , ,1032,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand tree, ,show-settings, , ,1033,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand tree, ,no-progress, , ,1034,Hide all progress outputs
uv, __fish_uv_using_subcommand tree, ,no-installer-metadata, , ,1035,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand tree, ,no-config, , ,1036,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand tree,h,help, , ,1037,Display the concise help for this command
uv, __fish_uv_using_subcommand format, ,version, , ,1038,The version of Ruff to use for formatting
uv, __fish_uv_using_subcommand format, ,cache-dir, ,@r,1039,Path to the cache directory
uv, __fish_uv_using_subcommand format, ,python-preference,only-managed,@f @r,1040, 
uv, __fish_uv_using_subcommand format, ,python-fetch,automatic,@f @r,1041,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand format, ,color,auto,@f @r,1042,Control the use of color in output
uv, __fish_uv_using_subcommand format, ,allow-insecure-host, , ,1043,Allow insecure connections to a host
uv, __fish_uv_using_subcommand format, ,preview-features, , ,1044,Enable experimental preview features
uv, __fish_uv_using_subcommand format, ,directory, ,@r,1045,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand format, ,project, ,@r,1046,Run the command within the given project directory
uv, __fish_uv_using_subcommand format, ,config-file, ,@r,1047,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand format, ,check, , ,1048,Check if files are formatted without applying changes
uv, __fish_uv_using_subcommand format, ,diff, , ,1049,Show a diff of formatting changes without applying them
uv, __fish_uv_using_subcommand format, ,no-project, , ,1050,Avoid discovering a project or workspace
uv, __fish_uv_using_subcommand format,n,no-cache, , ,1051,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand format, ,managed-python, , ,1052,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand format, ,no-managed-python, , ,1053,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand format, ,allow-python-downloads, , ,1054,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand format, ,no-python-downloads, , ,1055,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand format,q,quiet, , ,1056,Use quiet output
uv, __fish_uv_using_subcommand format,v,verbose, , ,1057,Use verbose output
uv, __fish_uv_using_subcommand format, ,no-color, , ,1058,Disable colors
uv, __fish_uv_using_subcommand format, ,native-tls, , ,1059,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand format, ,no-native-tls, , ,1060, 
uv, __fish_uv_using_subcommand format, ,offline, , ,1061,Disable network access
uv, __fish_uv_using_subcommand format, ,no-offline, , ,1062, 
uv, __fish_uv_using_subcommand format, ,preview, , ,1063,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand format, ,no-preview, , ,1064, 
uv, __fish_uv_using_subcommand format, ,isolated, , ,1065,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand format, ,show-settings, , ,1066,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand format, ,no-progress, , ,1067,Hide all progress outputs
uv, __fish_uv_using_subcommand format, ,no-installer-metadata, , ,1068,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand format, ,no-config, , ,1069,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand format,h,help, , ,1070,Display the concise help for this command
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,cache-dir, ,@r,1070,Path to the cache directory
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,python-preference,only-managed,@f @r,1070, 
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,python-fetch,automatic,@f @r,1070,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,color,auto,@f @r,1070,Control the use of color in output
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,allow-insecure-host, , ,1070,Allow insecure connections to a host
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,preview-features, , ,1070,Enable experimental preview features
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,directory, ,@r,1070,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,project, ,@r,1070,Run the command within the given project directory
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,config-file, ,@r,1070,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir",n,no-cache, , ,1070,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,managed-python, , ,1070,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,no-managed-python, , ,1070,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,allow-python-downloads, , ,1070,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,no-python-downloads, , ,1070,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir",q,quiet, , ,1070,Use quiet output
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir",v,verbose, , ,1070,Use verbose output
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,no-color, , ,1070,Disable colors
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,native-tls, , ,1070,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,no-native-tls, , ,1070, 
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,offline, , ,1070,Disable network access
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,no-offline, , ,1070, 
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,preview, , ,1070,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,no-preview, , ,1070, 
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,isolated, , ,1070,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,show-settings, , ,1070,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,no-progress, , ,1070,Hide all progress outputs
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,no-installer-metadata, , ,1070,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", ,no-config, , ,1070,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir",h,help, , ,1070,Display the concise help for this command
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", , ,run,@f,1070,Run a command provided by a Python package
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", , ,uvx,@f,1070,Run a command provided by a Python package.
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", , ,install,@f,1070,Install commands provided by a Python package
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", , ,upgrade,@f,1070,Upgrade installed tools
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", , ,list,@f,1070,List installed tools
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", , ,uninstall,@f,1070,Uninstall a tool
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", , ,update-shell,@f,1070,Ensure that the tool executable directory is on the `PATH`
uv," __fish_uv_using_subcommand tool; and run uvx install upgrade list uninstall update-shell dir", , ,dir,@f,1070,Show the path to the uv tools directory
uv," __fish_uv_using_subcommand tool; and run", ,from, , ,1071,Use the given package to provide the command
uv," __fish_uv_using_subcommand tool; and run",w,with, , ,1072,Run with the given packages installed
uv," __fish_uv_using_subcommand tool; and run", ,with-editable, , ,1073,Run with the given packages installed in editable mode
uv," __fish_uv_using_subcommand tool; and run", ,with-requirements, , ,1074,Run with the packages listed in the given files
uv," __fish_uv_using_subcommand tool; and run",c,constraints, , ,1075,Constrain versions using the given requirements files
uv," __fish_uv_using_subcommand tool; and run",b,build-constraints, , ,1076,Constrain build dependencies using the given requirements files when building source distributions
uv," __fish_uv_using_subcommand tool; and run", ,overrides, , ,1077,Override versions using the given requirements files
uv," __fish_uv_using_subcommand tool; and run", ,env-file, ,@r,1078,Load environment variables from a `.env` file
uv," __fish_uv_using_subcommand tool; and run", ,index, , ,1079,"The URLs to use when resolving dependencies, in addition to the default index"
uv," __fish_uv_using_subcommand tool; and run", ,default-index, , ,1080,The URL of the default package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand tool; and run",i,index-url, , ,1081,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand tool; and run", ,extra-index-url, , ,1082,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv," __fish_uv_using_subcommand tool; and run",f,find-links, , ,1083,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv," __fish_uv_using_subcommand tool; and run",P,upgrade-package, , ,1084,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand tool; and run", ,reinstall-package, , ,1085,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand tool; and run", ,index-strategy,first-index,@f @r,1086,The strategy to use when resolving against multiple index URLs
uv," __fish_uv_using_subcommand tool; and run", ,keyring-provider,disabled,@f @r,1087,Attempt to use `keyring` for authentication for index URLs
uv," __fish_uv_using_subcommand tool; and run", ,resolution,highest,@f @r,1088,The strategy to use when selecting between the different compatible versions for a given package requirement
uv," __fish_uv_using_subcommand tool; and run", ,prerelease,disallow,@f @r,1089,The strategy to use when considering pre-release versions
uv," __fish_uv_using_subcommand tool; and run", ,fork-strategy,fewest,@f @r,1090,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv," __fish_uv_using_subcommand tool; and run",C,config-setting, , ,1091,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand tool; and run", ,config-settings-package, , ,1092,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand tool; and run", ,no-build-isolation-package, , ,1093,Disable isolation when building source distributions for a specific package
uv," __fish_uv_using_subcommand tool; and run", ,exclude-newer, , ,1094,Limit candidate packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand tool; and run", ,exclude-newer-package, , ,1095,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand tool; and run", ,link-mode,clone,@f @r,1096,The method to use when installing packages from the global cache
uv," __fish_uv_using_subcommand tool; and run", ,no-build-package, , ,1097,Don't build source distributions for a specific package
uv," __fish_uv_using_subcommand tool; and run", ,no-binary-package, , ,1098,Don't install pre-built wheels for a specific package
uv," __fish_uv_using_subcommand tool; and run", ,refresh-package, , ,1099,Refresh cached data for a specific package
uv," __fish_uv_using_subcommand tool; and run",p,python, , ,1100,The Python interpreter to use to build the run environment.
uv," __fish_uv_using_subcommand tool; and run", ,python-platform,windows,@f @r,1101,The platform for which requirements should be installed
uv," __fish_uv_using_subcommand tool; and run", ,generate-shell-completion,bash,@f @r,1102, 
uv," __fish_uv_using_subcommand tool; and run", ,cache-dir, ,@r,1103,Path to the cache directory
uv," __fish_uv_using_subcommand tool; and run", ,python-preference,only-managed,@f @r,1104, 
uv," __fish_uv_using_subcommand tool; and run", ,python-fetch,automatic,@f @r,1105,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand tool; and run", ,color,auto,@f @r,1106,Control the use of color in output
uv," __fish_uv_using_subcommand tool; and run", ,allow-insecure-host, , ,1107,Allow insecure connections to a host
uv," __fish_uv_using_subcommand tool; and run", ,preview-features, , ,1108,Enable experimental preview features
uv," __fish_uv_using_subcommand tool; and run", ,directory, ,@r,1109,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand tool; and run", ,project, ,@r,1110,Run the command within the given project directory
uv," __fish_uv_using_subcommand tool; and run", ,config-file, ,@r,1111,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand tool; and run", ,isolated, , ,1112,"Run the tool in an isolated virtual environment, ignoring any already-installed tools"
uv," __fish_uv_using_subcommand tool; and run", ,no-env-file, , ,1113,Avoid reading environment variables from a `.env` file
uv," __fish_uv_using_subcommand tool; and run", ,no-index, , ,1114,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv," __fish_uv_using_subcommand tool; and run",U,upgrade, , ,1115,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv," __fish_uv_using_subcommand tool; and run", ,no-upgrade, , ,1116, 
uv," __fish_uv_using_subcommand tool; and run", ,reinstall, , ,1117,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv," __fish_uv_using_subcommand tool; and run", ,no-reinstall, , ,1118, 
uv," __fish_uv_using_subcommand tool; and run", ,pre, , ,1119, 
uv," __fish_uv_using_subcommand tool; and run", ,no-build-isolation, , ,1120,Disable isolation when building source distributions
uv," __fish_uv_using_subcommand tool; and run", ,build-isolation, , ,1121, 
uv," __fish_uv_using_subcommand tool; and run", ,compile-bytecode, , ,1122,Compile Python files to bytecode after installation
uv," __fish_uv_using_subcommand tool; and run", ,no-compile-bytecode, , ,1123, 
uv," __fish_uv_using_subcommand tool; and run", ,no-sources, , ,1124,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv," __fish_uv_using_subcommand tool; and run", ,no-build, , ,1125,Don't build source distributions
uv," __fish_uv_using_subcommand tool; and run", ,build, , ,1126, 
uv," __fish_uv_using_subcommand tool; and run", ,no-binary, , ,1127,Don't install pre-built wheels
uv," __fish_uv_using_subcommand tool; and run", ,binary, , ,1128, 
uv," __fish_uv_using_subcommand tool; and run", ,refresh, , ,1129,Refresh all cached data
uv," __fish_uv_using_subcommand tool; and run", ,no-refresh, , ,1130, 
uv," __fish_uv_using_subcommand tool; and run", ,lfs, , ,1131,Whether to use Git LFS when adding a dependency from Git
uv," __fish_uv_using_subcommand tool; and run", ,show-resolution, , ,1132,Whether to show resolver and installer output from any environment modifications
uv," __fish_uv_using_subcommand tool; and run",n,no-cache, , ,1133,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand tool; and run", ,managed-python, , ,1134,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and run", ,no-managed-python, , ,1135,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and run", ,allow-python-downloads, , ,1136,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand tool; and run", ,no-python-downloads, , ,1137,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand tool; and run",q,quiet, , ,1138,Use quiet output
uv," __fish_uv_using_subcommand tool; and run",v,verbose, , ,1139,Use verbose output
uv," __fish_uv_using_subcommand tool; and run", ,no-color, , ,1140,Disable colors
uv," __fish_uv_using_subcommand tool; and run", ,native-tls, , ,1141,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand tool; and run", ,no-native-tls, , ,1142, 
uv," __fish_uv_using_subcommand tool; and run", ,offline, , ,1143,Disable network access
uv," __fish_uv_using_subcommand tool; and run", ,no-offline, , ,1144, 
uv," __fish_uv_using_subcommand tool; and run", ,preview, , ,1145,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand tool; and run", ,no-preview, , ,1146, 
uv," __fish_uv_using_subcommand tool; and run", ,show-settings, , ,1147,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand tool; and run", ,no-progress, , ,1148,Hide all progress outputs
uv," __fish_uv_using_subcommand tool; and run", ,no-installer-metadata, , ,1149,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand tool; and run", ,no-config, , ,1150,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand tool; and run",h,help, , ,1151,Display the concise help for this command
uv," __fish_uv_using_subcommand tool; and uvx", ,from, , ,1152,Use the given package to provide the command
uv," __fish_uv_using_subcommand tool; and uvx",w,with, , ,1153,Run with the given packages installed
uv," __fish_uv_using_subcommand tool; and uvx", ,with-editable, , ,1154,Run with the given packages installed in editable mode
uv," __fish_uv_using_subcommand tool; and uvx", ,with-requirements, , ,1155,Run with the packages listed in the given files
uv," __fish_uv_using_subcommand tool; and uvx",c,constraints, , ,1156,Constrain versions using the given requirements files
uv," __fish_uv_using_subcommand tool; and uvx",b,build-constraints, , ,1157,Constrain build dependencies using the given requirements files when building source distributions
uv," __fish_uv_using_subcommand tool; and uvx", ,overrides, , ,1158,Override versions using the given requirements files
uv," __fish_uv_using_subcommand tool; and uvx", ,env-file, ,@r,1159,Load environment variables from a `.env` file
uv," __fish_uv_using_subcommand tool; and uvx", ,index, , ,1160,"The URLs to use when resolving dependencies, in addition to the default index"
uv," __fish_uv_using_subcommand tool; and uvx", ,default-index, , ,1161,The URL of the default package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand tool; and uvx",i,index-url, , ,1162,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand tool; and uvx", ,extra-index-url, , ,1163,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv," __fish_uv_using_subcommand tool; and uvx",f,find-links, , ,1164,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv," __fish_uv_using_subcommand tool; and uvx",P,upgrade-package, , ,1165,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand tool; and uvx", ,reinstall-package, , ,1166,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand tool; and uvx", ,index-strategy,first-index,@f @r,1167,The strategy to use when resolving against multiple index URLs
uv," __fish_uv_using_subcommand tool; and uvx", ,keyring-provider,disabled,@f @r,1168,Attempt to use `keyring` for authentication for index URLs
uv," __fish_uv_using_subcommand tool; and uvx", ,resolution,highest,@f @r,1169,The strategy to use when selecting between the different compatible versions for a given package requirement
uv," __fish_uv_using_subcommand tool; and uvx", ,prerelease,disallow,@f @r,1170,The strategy to use when considering pre-release versions
uv," __fish_uv_using_subcommand tool; and uvx", ,fork-strategy,fewest,@f @r,1171,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv," __fish_uv_using_subcommand tool; and uvx",C,config-setting, , ,1172,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand tool; and uvx", ,config-settings-package, , ,1173,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand tool; and uvx", ,no-build-isolation-package, , ,1174,Disable isolation when building source distributions for a specific package
uv," __fish_uv_using_subcommand tool; and uvx", ,exclude-newer, , ,1175,Limit candidate packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand tool; and uvx", ,exclude-newer-package, , ,1176,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand tool; and uvx", ,link-mode,clone,@f @r,1177,The method to use when installing packages from the global cache
uv," __fish_uv_using_subcommand tool; and uvx", ,no-build-package, , ,1178,Don't build source distributions for a specific package
uv," __fish_uv_using_subcommand tool; and uvx", ,no-binary-package, , ,1179,Don't install pre-built wheels for a specific package
uv," __fish_uv_using_subcommand tool; and uvx", ,refresh-package, , ,1180,Refresh cached data for a specific package
uv," __fish_uv_using_subcommand tool; and uvx",p,python, , ,1181,The Python interpreter to use to build the run environment.
uv," __fish_uv_using_subcommand tool; and uvx", ,python-platform,windows,@f @r,1182,The platform for which requirements should be installed
uv," __fish_uv_using_subcommand tool; and uvx", ,generate-shell-completion,bash,@f @r,1183, 
uv," __fish_uv_using_subcommand tool; and uvx", ,cache-dir, ,@r,1184,Path to the cache directory
uv," __fish_uv_using_subcommand tool; and uvx", ,python-preference,only-managed,@f @r,1185, 
uv," __fish_uv_using_subcommand tool; and uvx", ,python-fetch,automatic,@f @r,1186,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand tool; and uvx", ,color,auto,@f @r,1187,Control the use of color in output
uv," __fish_uv_using_subcommand tool; and uvx", ,allow-insecure-host, , ,1188,Allow insecure connections to a host
uv," __fish_uv_using_subcommand tool; and uvx", ,preview-features, , ,1189,Enable experimental preview features
uv," __fish_uv_using_subcommand tool; and uvx", ,directory, ,@r,1190,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand tool; and uvx", ,project, ,@r,1191,Run the command within the given project directory
uv," __fish_uv_using_subcommand tool; and uvx", ,config-file, ,@r,1192,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand tool; and uvx", ,isolated, , ,1193,"Run the tool in an isolated virtual environment, ignoring any already-installed tools"
uv," __fish_uv_using_subcommand tool; and uvx", ,no-env-file, , ,1194,Avoid reading environment variables from a `.env` file
uv," __fish_uv_using_subcommand tool; and uvx", ,no-index, , ,1195,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv," __fish_uv_using_subcommand tool; and uvx",U,upgrade, , ,1196,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv," __fish_uv_using_subcommand tool; and uvx", ,no-upgrade, , ,1197, 
uv," __fish_uv_using_subcommand tool; and uvx", ,reinstall, , ,1198,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv," __fish_uv_using_subcommand tool; and uvx", ,no-reinstall, , ,1199, 
uv," __fish_uv_using_subcommand tool; and uvx", ,pre, , ,1200, 
uv," __fish_uv_using_subcommand tool; and uvx", ,no-build-isolation, , ,1201,Disable isolation when building source distributions
uv," __fish_uv_using_subcommand tool; and uvx", ,build-isolation, , ,1202, 
uv," __fish_uv_using_subcommand tool; and uvx", ,compile-bytecode, , ,1203,Compile Python files to bytecode after installation
uv," __fish_uv_using_subcommand tool; and uvx", ,no-compile-bytecode, , ,1204, 
uv," __fish_uv_using_subcommand tool; and uvx", ,no-sources, , ,1205,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv," __fish_uv_using_subcommand tool; and uvx", ,no-build, , ,1206,Don't build source distributions
uv," __fish_uv_using_subcommand tool; and uvx", ,build, , ,1207, 
uv," __fish_uv_using_subcommand tool; and uvx", ,no-binary, , ,1208,Don't install pre-built wheels
uv," __fish_uv_using_subcommand tool; and uvx", ,binary, , ,1209, 
uv," __fish_uv_using_subcommand tool; and uvx", ,refresh, , ,1210,Refresh all cached data
uv," __fish_uv_using_subcommand tool; and uvx", ,no-refresh, , ,1211, 
uv," __fish_uv_using_subcommand tool; and uvx", ,lfs, , ,1212,Whether to use Git LFS when adding a dependency from Git
uv," __fish_uv_using_subcommand tool; and uvx", ,show-resolution, , ,1213,Whether to show resolver and installer output from any environment modifications
uv," __fish_uv_using_subcommand tool; and uvx",V,version, , ,1214,Display the uvx version
uv," __fish_uv_using_subcommand tool; and uvx",n,no-cache, , ,1215,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand tool; and uvx", ,managed-python, , ,1216,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and uvx", ,no-managed-python, , ,1217,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and uvx", ,allow-python-downloads, , ,1218,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand tool; and uvx", ,no-python-downloads, , ,1219,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand tool; and uvx",q,quiet, , ,1220,Use quiet output
uv," __fish_uv_using_subcommand tool; and uvx",v,verbose, , ,1221,Use verbose output
uv," __fish_uv_using_subcommand tool; and uvx", ,no-color, , ,1222,Disable colors
uv," __fish_uv_using_subcommand tool; and uvx", ,native-tls, , ,1223,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand tool; and uvx", ,no-native-tls, , ,1224, 
uv," __fish_uv_using_subcommand tool; and uvx", ,offline, , ,1225,Disable network access
uv," __fish_uv_using_subcommand tool; and uvx", ,no-offline, , ,1226, 
uv," __fish_uv_using_subcommand tool; and uvx", ,preview, , ,1227,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand tool; and uvx", ,no-preview, , ,1228, 
uv," __fish_uv_using_subcommand tool; and uvx", ,show-settings, , ,1229,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand tool; and uvx", ,no-progress, , ,1230,Hide all progress outputs
uv," __fish_uv_using_subcommand tool; and uvx", ,no-installer-metadata, , ,1231,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand tool; and uvx", ,no-config, , ,1232,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand tool; and uvx",h,help, , ,1233,Display the concise help for this command
uv," __fish_uv_using_subcommand tool; and install", ,from, , ,1234,The package to install commands from
uv," __fish_uv_using_subcommand tool; and install",w,with, , ,1235,Include the following additional requirements
uv," __fish_uv_using_subcommand tool; and install", ,with-requirements, , ,1236,Run with the packages listed in the given files
uv," __fish_uv_using_subcommand tool; and install", ,with-editable, , ,1237,Include the given packages in editable mode
uv," __fish_uv_using_subcommand tool; and install", ,with-executables-from, , ,1238,Install executables from the following packages
uv," __fish_uv_using_subcommand tool; and install",c,constraints, , ,1239,Constrain versions using the given requirements files
uv," __fish_uv_using_subcommand tool; and install", ,overrides, , ,1240,Override versions using the given requirements files
uv," __fish_uv_using_subcommand tool; and install", ,excludes, , ,1241,Exclude packages from resolution using the given requirements files
uv," __fish_uv_using_subcommand tool; and install",b,build-constraints, , ,1242,Constrain build dependencies using the given requirements files when building source distributions
uv," __fish_uv_using_subcommand tool; and install", ,index, , ,1243,"The URLs to use when resolving dependencies, in addition to the default index"
uv," __fish_uv_using_subcommand tool; and install", ,default-index, , ,1244,The URL of the default package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand tool; and install",i,index-url, , ,1245,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand tool; and install", ,extra-index-url, , ,1246,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv," __fish_uv_using_subcommand tool; and install",f,find-links, , ,1247,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv," __fish_uv_using_subcommand tool; and install",P,upgrade-package, , ,1248,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand tool; and install", ,reinstall-package, , ,1249,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand tool; and install", ,index-strategy,first-index,@f @r,1250,The strategy to use when resolving against multiple index URLs
uv," __fish_uv_using_subcommand tool; and install", ,keyring-provider,disabled,@f @r,1251,Attempt to use `keyring` for authentication for index URLs
uv," __fish_uv_using_subcommand tool; and install", ,resolution,highest,@f @r,1252,The strategy to use when selecting between the different compatible versions for a given package requirement
uv," __fish_uv_using_subcommand tool; and install", ,prerelease,disallow,@f @r,1253,The strategy to use when considering pre-release versions
uv," __fish_uv_using_subcommand tool; and install", ,fork-strategy,fewest,@f @r,1254,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv," __fish_uv_using_subcommand tool; and install",C,config-setting, , ,1255,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand tool; and install", ,config-settings-package, , ,1256,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand tool; and install", ,no-build-isolation-package, , ,1257,Disable isolation when building source distributions for a specific package
uv," __fish_uv_using_subcommand tool; and install", ,exclude-newer, , ,1258,Limit candidate packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand tool; and install", ,exclude-newer-package, , ,1259,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand tool; and install", ,link-mode,clone,@f @r,1260,The method to use when installing packages from the global cache
uv," __fish_uv_using_subcommand tool; and install", ,no-build-package, , ,1261,Don't build source distributions for a specific package
uv," __fish_uv_using_subcommand tool; and install", ,no-binary-package, , ,1262,Don't install pre-built wheels for a specific package
uv," __fish_uv_using_subcommand tool; and install", ,refresh-package, , ,1263,Refresh cached data for a specific package
uv," __fish_uv_using_subcommand tool; and install",p,python, , ,1264,The Python interpreter to use to build the tool environment.
uv," __fish_uv_using_subcommand tool; and install", ,python-platform,windows,@f @r,1265,The platform for which requirements should be installed
uv," __fish_uv_using_subcommand tool; and install", ,cache-dir, ,@r,1266,Path to the cache directory
uv," __fish_uv_using_subcommand tool; and install", ,python-preference,only-managed,@f @r,1267, 
uv," __fish_uv_using_subcommand tool; and install", ,python-fetch,automatic,@f @r,1268,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand tool; and install", ,color,auto,@f @r,1269,Control the use of color in output
uv," __fish_uv_using_subcommand tool; and install", ,allow-insecure-host, , ,1270,Allow insecure connections to a host
uv," __fish_uv_using_subcommand tool; and install", ,preview-features, , ,1271,Enable experimental preview features
uv," __fish_uv_using_subcommand tool; and install", ,directory, ,@r,1272,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand tool; and install", ,project, ,@r,1273,Run the command within the given project directory
uv," __fish_uv_using_subcommand tool; and install", ,config-file, ,@r,1274,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand tool; and install",e,editable, , ,1275,"Install the target package in editable mode, such that changes in the package's source directory are reflected without reinstallation"
uv," __fish_uv_using_subcommand tool; and install", ,no-index, , ,1276,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv," __fish_uv_using_subcommand tool; and install",U,upgrade, , ,1277,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv," __fish_uv_using_subcommand tool; and install", ,no-upgrade, , ,1278, 
uv," __fish_uv_using_subcommand tool; and install", ,reinstall, , ,1279,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv," __fish_uv_using_subcommand tool; and install", ,no-reinstall, , ,1280, 
uv," __fish_uv_using_subcommand tool; and install", ,pre, , ,1281, 
uv," __fish_uv_using_subcommand tool; and install", ,no-build-isolation, , ,1282,Disable isolation when building source distributions
uv," __fish_uv_using_subcommand tool; and install", ,build-isolation, , ,1283, 
uv," __fish_uv_using_subcommand tool; and install", ,compile-bytecode, , ,1284,Compile Python files to bytecode after installation
uv," __fish_uv_using_subcommand tool; and install", ,no-compile-bytecode, , ,1285, 
uv," __fish_uv_using_subcommand tool; and install", ,no-sources, , ,1286,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv," __fish_uv_using_subcommand tool; and install", ,no-build, , ,1287,Don't build source distributions
uv," __fish_uv_using_subcommand tool; and install", ,build, , ,1288, 
uv," __fish_uv_using_subcommand tool; and install", ,no-binary, , ,1289,Don't install pre-built wheels
uv," __fish_uv_using_subcommand tool; and install", ,binary, , ,1290, 
uv," __fish_uv_using_subcommand tool; and install", ,refresh, , ,1291,Refresh all cached data
uv," __fish_uv_using_subcommand tool; and install", ,no-refresh, , ,1292, 
uv," __fish_uv_using_subcommand tool; and install", ,force, , ,1293,Force installation of the tool
uv," __fish_uv_using_subcommand tool; and install", ,lfs, , ,1294,Whether to use Git LFS when adding a dependency from Git
uv," __fish_uv_using_subcommand tool; and install",n,no-cache, , ,1295,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand tool; and install", ,managed-python, , ,1296,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and install", ,no-managed-python, , ,1297,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and install", ,allow-python-downloads, , ,1298,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand tool; and install", ,no-python-downloads, , ,1299,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand tool; and install",q,quiet, , ,1300,Use quiet output
uv," __fish_uv_using_subcommand tool; and install",v,verbose, , ,1301,Use verbose output
uv," __fish_uv_using_subcommand tool; and install", ,no-color, , ,1302,Disable colors
uv," __fish_uv_using_subcommand tool; and install", ,native-tls, , ,1303,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand tool; and install", ,no-native-tls, , ,1304, 
uv," __fish_uv_using_subcommand tool; and install", ,offline, , ,1305,Disable network access
uv," __fish_uv_using_subcommand tool; and install", ,no-offline, , ,1306, 
uv," __fish_uv_using_subcommand tool; and install", ,preview, , ,1307,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand tool; and install", ,no-preview, , ,1308, 
uv," __fish_uv_using_subcommand tool; and install", ,isolated, , ,1309,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand tool; and install", ,show-settings, , ,1310,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand tool; and install", ,no-progress, , ,1311,Hide all progress outputs
uv," __fish_uv_using_subcommand tool; and install", ,no-installer-metadata, , ,1312,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand tool; and install", ,no-config, , ,1313,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand tool; and install",h,help, , ,1314,Display the concise help for this command
uv," __fish_uv_using_subcommand tool; and upgrade",p,python, , ,1315,"Upgrade a tool, and specify it to use the given Python interpreter to build its environment. Use with `--all` to apply to all tools."
uv," __fish_uv_using_subcommand tool; and upgrade", ,python-platform,windows,@f @r,1316,The platform for which requirements should be installed
uv," __fish_uv_using_subcommand tool; and upgrade",P,upgrade-package, , ,1317,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand tool; and upgrade", ,index, , ,1318,"The URLs to use when resolving dependencies, in addition to the default index"
uv," __fish_uv_using_subcommand tool; and upgrade", ,default-index, , ,1319,The URL of the default package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand tool; and upgrade",i,index-url, , ,1320,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand tool; and upgrade", ,extra-index-url, , ,1321,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv," __fish_uv_using_subcommand tool; and upgrade",f,find-links, , ,1322,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv," __fish_uv_using_subcommand tool; and upgrade", ,reinstall-package, , ,1323,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand tool; and upgrade", ,index-strategy,first-index,@f @r,1324,The strategy to use when resolving against multiple index URLs
uv," __fish_uv_using_subcommand tool; and upgrade", ,keyring-provider,disabled,@f @r,1325,Attempt to use `keyring` for authentication for index URLs
uv," __fish_uv_using_subcommand tool; and upgrade", ,resolution,highest,@f @r,1326,The strategy to use when selecting between the different compatible versions for a given package requirement
uv," __fish_uv_using_subcommand tool; and upgrade", ,prerelease,disallow,@f @r,1327,The strategy to use when considering pre-release versions
uv," __fish_uv_using_subcommand tool; and upgrade", ,fork-strategy,fewest,@f @r,1328,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv," __fish_uv_using_subcommand tool; and upgrade",C,config-setting, , ,1329,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand tool; and upgrade", ,config-setting-package, , ,1330,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-build-isolation-package, , ,1331,Disable isolation when building source distributions for a specific package
uv," __fish_uv_using_subcommand tool; and upgrade", ,exclude-newer, , ,1332,Limit candidate packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand tool; and upgrade", ,exclude-newer-package, , ,1333,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand tool; and upgrade", ,link-mode,clone,@f @r,1334,The method to use when installing packages from the global cache
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-build-package, , ,1335,Don't build source distributions for a specific package
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-binary-package, , ,1336,Don't install pre-built wheels for a specific package
uv," __fish_uv_using_subcommand tool; and upgrade", ,cache-dir, ,@r,1337,Path to the cache directory
uv," __fish_uv_using_subcommand tool; and upgrade", ,python-preference,only-managed,@f @r,1338, 
uv," __fish_uv_using_subcommand tool; and upgrade", ,python-fetch,automatic,@f @r,1339,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand tool; and upgrade", ,color,auto,@f @r,1340,Control the use of color in output
uv," __fish_uv_using_subcommand tool; and upgrade", ,allow-insecure-host, , ,1341,Allow insecure connections to a host
uv," __fish_uv_using_subcommand tool; and upgrade", ,preview-features, , ,1342,Enable experimental preview features
uv," __fish_uv_using_subcommand tool; and upgrade", ,directory, ,@r,1343,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand tool; and upgrade", ,project, ,@r,1344,Run the command within the given project directory
uv," __fish_uv_using_subcommand tool; and upgrade", ,config-file, ,@r,1345,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand tool; and upgrade", ,all, , ,1346,Upgrade all tools
uv," __fish_uv_using_subcommand tool; and upgrade",U,upgrade, , ,1347,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-index, , ,1348,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv," __fish_uv_using_subcommand tool; and upgrade", ,reinstall, , ,1349,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-reinstall, , ,1350, 
uv," __fish_uv_using_subcommand tool; and upgrade", ,pre, , ,1351, 
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-build-isolation, , ,1352,Disable isolation when building source distributions
uv," __fish_uv_using_subcommand tool; and upgrade", ,build-isolation, , ,1353, 
uv," __fish_uv_using_subcommand tool; and upgrade", ,compile-bytecode, , ,1354,Compile Python files to bytecode after installation
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-compile-bytecode, , ,1355, 
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-sources, , ,1356,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-build, , ,1357,Don't build source distributions
uv," __fish_uv_using_subcommand tool; and upgrade", ,build, , ,1358, 
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-binary, , ,1359,Don't install pre-built wheels
uv," __fish_uv_using_subcommand tool; and upgrade", ,binary, , ,1360, 
uv," __fish_uv_using_subcommand tool; and upgrade",n,no-cache, , ,1361,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand tool; and upgrade", ,managed-python, , ,1362,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-managed-python, , ,1363,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and upgrade", ,allow-python-downloads, , ,1364,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-python-downloads, , ,1365,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand tool; and upgrade",q,quiet, , ,1366,Use quiet output
uv," __fish_uv_using_subcommand tool; and upgrade",v,verbose, , ,1367,Use verbose output
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-color, , ,1368,Disable colors
uv," __fish_uv_using_subcommand tool; and upgrade", ,native-tls, , ,1369,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-native-tls, , ,1370, 
uv," __fish_uv_using_subcommand tool; and upgrade", ,offline, , ,1371,Disable network access
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-offline, , ,1372, 
uv," __fish_uv_using_subcommand tool; and upgrade", ,preview, , ,1373,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-preview, , ,1374, 
uv," __fish_uv_using_subcommand tool; and upgrade", ,isolated, , ,1375,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand tool; and upgrade", ,show-settings, , ,1376,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-progress, , ,1377,Hide all progress outputs
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-installer-metadata, , ,1378,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand tool; and upgrade", ,no-config, , ,1379,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand tool; and upgrade",h,help, , ,1380,Display the concise help for this command
uv," __fish_uv_using_subcommand tool; and list", ,python-preference,only-managed,@f @r,1381, 
uv," __fish_uv_using_subcommand tool; and list", ,cache-dir, ,@r,1382,Path to the cache directory
uv," __fish_uv_using_subcommand tool; and list", ,python-fetch,automatic,@f @r,1383,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand tool; and list", ,color,auto,@f @r,1384,Control the use of color in output
uv," __fish_uv_using_subcommand tool; and list", ,allow-insecure-host, , ,1385,Allow insecure connections to a host
uv," __fish_uv_using_subcommand tool; and list", ,preview-features, , ,1386,Enable experimental preview features
uv," __fish_uv_using_subcommand tool; and list", ,directory, ,@r,1387,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand tool; and list", ,project, ,@r,1388,Run the command within the given project directory
uv," __fish_uv_using_subcommand tool; and list", ,config-file, ,@r,1389,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand tool; and list", ,show-paths, , ,1390,Whether to display the path to each tool environment and installed executable
uv," __fish_uv_using_subcommand tool; and list", ,show-version-specifiers, , ,1391,Whether to display the version specifier(s) used to install each tool
uv," __fish_uv_using_subcommand tool; and list", ,show-with, , ,1392,Whether to display the additional requirements installed with each tool
uv," __fish_uv_using_subcommand tool; and list", ,show-extras, , ,1393,Whether to display the extra requirements installed with each tool
uv," __fish_uv_using_subcommand tool; and list", ,show-python, , ,1394,Whether to display the Python version associated with each tool
uv," __fish_uv_using_subcommand tool; and list", ,no-python-downloads, , ,1395, 
uv," __fish_uv_using_subcommand tool; and list",n,no-cache, , ,1396,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand tool; and list", ,managed-python, , ,1397,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and list", ,no-managed-python, , ,1398,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and list", ,allow-python-downloads, , ,1399,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand tool; and list",q,quiet, , ,1400,Use quiet output
uv," __fish_uv_using_subcommand tool; and list",v,verbose, , ,1401,Use verbose output
uv," __fish_uv_using_subcommand tool; and list", ,no-color, , ,1402,Disable colors
uv," __fish_uv_using_subcommand tool; and list", ,native-tls, , ,1403,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand tool; and list", ,no-native-tls, , ,1404, 
uv," __fish_uv_using_subcommand tool; and list", ,offline, , ,1405,Disable network access
uv," __fish_uv_using_subcommand tool; and list", ,no-offline, , ,1406, 
uv," __fish_uv_using_subcommand tool; and list", ,preview, , ,1407,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand tool; and list", ,no-preview, , ,1408, 
uv," __fish_uv_using_subcommand tool; and list", ,isolated, , ,1409,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand tool; and list", ,show-settings, , ,1410,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand tool; and list", ,no-progress, , ,1411,Hide all progress outputs
uv," __fish_uv_using_subcommand tool; and list", ,no-installer-metadata, , ,1412,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand tool; and list", ,no-config, , ,1413,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand tool; and list",h,help, , ,1414,Display the concise help for this command
uv," __fish_uv_using_subcommand tool; and uninstall", ,cache-dir, ,@r,1415,Path to the cache directory
uv," __fish_uv_using_subcommand tool; and uninstall", ,python-preference,only-managed,@f @r,1416, 
uv," __fish_uv_using_subcommand tool; and uninstall", ,python-fetch,automatic,@f @r,1417,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand tool; and uninstall", ,color,auto,@f @r,1418,Control the use of color in output
uv," __fish_uv_using_subcommand tool; and uninstall", ,allow-insecure-host, , ,1419,Allow insecure connections to a host
uv," __fish_uv_using_subcommand tool; and uninstall", ,preview-features, , ,1420,Enable experimental preview features
uv," __fish_uv_using_subcommand tool; and uninstall", ,directory, ,@r,1421,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand tool; and uninstall", ,project, ,@r,1422,Run the command within the given project directory
uv," __fish_uv_using_subcommand tool; and uninstall", ,config-file, ,@r,1423,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand tool; and uninstall", ,all, , ,1424,Uninstall all tools
uv," __fish_uv_using_subcommand tool; and uninstall",n,no-cache, , ,1425,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand tool; and uninstall", ,managed-python, , ,1426,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and uninstall", ,no-managed-python, , ,1427,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and uninstall", ,allow-python-downloads, , ,1428,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand tool; and uninstall", ,no-python-downloads, , ,1429,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand tool; and uninstall",q,quiet, , ,1430,Use quiet output
uv," __fish_uv_using_subcommand tool; and uninstall",v,verbose, , ,1431,Use verbose output
uv," __fish_uv_using_subcommand tool; and uninstall", ,no-color, , ,1432,Disable colors
uv," __fish_uv_using_subcommand tool; and uninstall", ,native-tls, , ,1433,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand tool; and uninstall", ,no-native-tls, , ,1434, 
uv," __fish_uv_using_subcommand tool; and uninstall", ,offline, , ,1435,Disable network access
uv," __fish_uv_using_subcommand tool; and uninstall", ,no-offline, , ,1436, 
uv," __fish_uv_using_subcommand tool; and uninstall", ,preview, , ,1437,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand tool; and uninstall", ,no-preview, , ,1438, 
uv," __fish_uv_using_subcommand tool; and uninstall", ,isolated, , ,1439,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand tool; and uninstall", ,show-settings, , ,1440,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand tool; and uninstall", ,no-progress, , ,1441,Hide all progress outputs
uv," __fish_uv_using_subcommand tool; and uninstall", ,no-installer-metadata, , ,1442,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand tool; and uninstall", ,no-config, , ,1443,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand tool; and uninstall",h,help, , ,1444,Display the concise help for this command
uv," __fish_uv_using_subcommand tool; and update-shell", ,cache-dir, ,@r,1445,Path to the cache directory
uv," __fish_uv_using_subcommand tool; and update-shell", ,python-preference,only-managed,@f @r,1446, 
uv," __fish_uv_using_subcommand tool; and update-shell", ,python-fetch,automatic,@f @r,1447,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand tool; and update-shell", ,color,auto,@f @r,1448,Control the use of color in output
uv," __fish_uv_using_subcommand tool; and update-shell", ,allow-insecure-host, , ,1449,Allow insecure connections to a host
uv," __fish_uv_using_subcommand tool; and update-shell", ,preview-features, , ,1450,Enable experimental preview features
uv," __fish_uv_using_subcommand tool; and update-shell", ,directory, ,@r,1451,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand tool; and update-shell", ,project, ,@r,1452,Run the command within the given project directory
uv," __fish_uv_using_subcommand tool; and update-shell", ,config-file, ,@r,1453,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand tool; and update-shell",n,no-cache, , ,1454,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand tool; and update-shell", ,managed-python, , ,1455,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and update-shell", ,no-managed-python, , ,1456,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and update-shell", ,allow-python-downloads, , ,1457,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand tool; and update-shell", ,no-python-downloads, , ,1458,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand tool; and update-shell",q,quiet, , ,1459,Use quiet output
uv," __fish_uv_using_subcommand tool; and update-shell",v,verbose, , ,1460,Use verbose output
uv," __fish_uv_using_subcommand tool; and update-shell", ,no-color, , ,1461,Disable colors
uv," __fish_uv_using_subcommand tool; and update-shell", ,native-tls, , ,1462,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand tool; and update-shell", ,no-native-tls, , ,1463, 
uv," __fish_uv_using_subcommand tool; and update-shell", ,offline, , ,1464,Disable network access
uv," __fish_uv_using_subcommand tool; and update-shell", ,no-offline, , ,1465, 
uv," __fish_uv_using_subcommand tool; and update-shell", ,preview, , ,1466,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand tool; and update-shell", ,no-preview, , ,1467, 
uv," __fish_uv_using_subcommand tool; and update-shell", ,isolated, , ,1468,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand tool; and update-shell", ,show-settings, , ,1469,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand tool; and update-shell", ,no-progress, , ,1470,Hide all progress outputs
uv," __fish_uv_using_subcommand tool; and update-shell", ,no-installer-metadata, , ,1471,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand tool; and update-shell", ,no-config, , ,1472,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand tool; and update-shell",h,help, , ,1473,Display the concise help for this command
uv," __fish_uv_using_subcommand tool; and dir", ,cache-dir, ,@r,1474,Path to the cache directory
uv," __fish_uv_using_subcommand tool; and dir", ,python-preference,only-managed,@f @r,1475, 
uv," __fish_uv_using_subcommand tool; and dir", ,python-fetch,automatic,@f @r,1476,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand tool; and dir", ,color,auto,@f @r,1477,Control the use of color in output
uv," __fish_uv_using_subcommand tool; and dir", ,allow-insecure-host, , ,1478,Allow insecure connections to a host
uv," __fish_uv_using_subcommand tool; and dir", ,preview-features, , ,1479,Enable experimental preview features
uv," __fish_uv_using_subcommand tool; and dir", ,directory, ,@r,1480,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand tool; and dir", ,project, ,@r,1481,Run the command within the given project directory
uv," __fish_uv_using_subcommand tool; and dir", ,config-file, ,@r,1482,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand tool; and dir", ,bin, , ,1483,Show the directory into which `uv tool` will install executables.
uv," __fish_uv_using_subcommand tool; and dir",n,no-cache, , ,1484,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand tool; and dir", ,managed-python, , ,1485,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and dir", ,no-managed-python, , ,1486,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand tool; and dir", ,allow-python-downloads, , ,1487,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand tool; and dir", ,no-python-downloads, , ,1488,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand tool; and dir",q,quiet, , ,1489,Use quiet output
uv," __fish_uv_using_subcommand tool; and dir",v,verbose, , ,1490,Use verbose output
uv," __fish_uv_using_subcommand tool; and dir", ,no-color, , ,1491,Disable colors
uv," __fish_uv_using_subcommand tool; and dir", ,native-tls, , ,1492,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand tool; and dir", ,no-native-tls, , ,1493, 
uv," __fish_uv_using_subcommand tool; and dir", ,offline, , ,1494,Disable network access
uv," __fish_uv_using_subcommand tool; and dir", ,no-offline, , ,1495, 
uv," __fish_uv_using_subcommand tool; and dir", ,preview, , ,1496,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand tool; and dir", ,no-preview, , ,1497, 
uv," __fish_uv_using_subcommand tool; and dir", ,isolated, , ,1498,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand tool; and dir", ,show-settings, , ,1499,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand tool; and dir", ,no-progress, , ,1500,Hide all progress outputs
uv," __fish_uv_using_subcommand tool; and dir", ,no-installer-metadata, , ,1501,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand tool; and dir", ,no-config, , ,1502,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand tool; and dir",h,help, , ,1503,Display the concise help for this command
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,cache-dir, ,@r,1503,Path to the cache directory
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,python-preference,only-managed,@f @r,1503, 
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,python-fetch,automatic,@f @r,1503,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,color,auto,@f @r,1503,Control the use of color in output
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,allow-insecure-host, , ,1503,Allow insecure connections to a host
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,preview-features, , ,1503,Enable experimental preview features
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,directory, ,@r,1503,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,project, ,@r,1503,Run the command within the given project directory
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,config-file, ,@r,1503,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell",n,no-cache, , ,1503,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,managed-python, , ,1503,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,no-managed-python, , ,1503,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,allow-python-downloads, , ,1503,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,no-python-downloads, , ,1503,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell",q,quiet, , ,1503,Use quiet output
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell",v,verbose, , ,1503,Use verbose output
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,no-color, , ,1503,Disable colors
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,native-tls, , ,1503,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,no-native-tls, , ,1503, 
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,offline, , ,1503,Disable network access
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,no-offline, , ,1503, 
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,preview, , ,1503,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,no-preview, , ,1503, 
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,isolated, , ,1503,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,show-settings, , ,1503,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,no-progress, , ,1503,Hide all progress outputs
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,no-installer-metadata, , ,1503,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", ,no-config, , ,1503,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell",h,help, , ,1503,Display the concise help for this command
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", , ,list,@f,1503,List the available Python installations
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", , ,install,@f,1503,Download and install Python versions
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", , ,upgrade,@f,1503,Upgrade installed Python versions
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", , ,find,@f,1503,Search for a Python installation
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", , ,pin,@f,1503,Pin to a specific Python version
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", , ,dir,@f,1503,Show the uv Python installation directory
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", , ,uninstall,@f,1503,Uninstall Python versions
uv," __fish_uv_using_subcommand python; and list install upgrade find pin dir uninstall update-shell", , ,update-shell,@f,1503,Ensure that the Python executable directory is on the `PATH`
uv," __fish_uv_using_subcommand python; and list", ,output-format,text,@f @r,1504,Select the output format
uv," __fish_uv_using_subcommand python; and list", ,python-downloads-json-url, , ,1505,URL pointing to JSON of custom Python installations
uv," __fish_uv_using_subcommand python; and list", ,cache-dir, ,@r,1506,Path to the cache directory
uv," __fish_uv_using_subcommand python; and list", ,python-preference,only-managed,@f @r,1507, 
uv," __fish_uv_using_subcommand python; and list", ,python-fetch,automatic,@f @r,1508,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand python; and list", ,color,auto,@f @r,1509,Control the use of color in output
uv," __fish_uv_using_subcommand python; and list", ,allow-insecure-host, , ,1510,Allow insecure connections to a host
uv," __fish_uv_using_subcommand python; and list", ,preview-features, , ,1511,Enable experimental preview features
uv," __fish_uv_using_subcommand python; and list", ,directory, ,@r,1512,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand python; and list", ,project, ,@r,1513,Run the command within the given project directory
uv," __fish_uv_using_subcommand python; and list", ,config-file, ,@r,1514,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand python; and list", ,all-versions, , ,1515,"List all Python versions, including old patch versions"
uv," __fish_uv_using_subcommand python; and list", ,all-platforms, , ,1516,List Python downloads for all platforms
uv," __fish_uv_using_subcommand python; and list", ,all-arches, , ,1517,List Python downloads for all architectures
uv," __fish_uv_using_subcommand python; and list", ,only-installed, , ,1518,Only show installed Python versions
uv," __fish_uv_using_subcommand python; and list", ,only-downloads, , ,1519,Only show available Python downloads
uv," __fish_uv_using_subcommand python; and list", ,show-urls, , ,1520,Show the URLs of available Python downloads
uv," __fish_uv_using_subcommand python; and list",n,no-cache, , ,1521,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand python; and list", ,managed-python, , ,1522,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and list", ,no-managed-python, , ,1523,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and list", ,allow-python-downloads, , ,1524,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand python; and list", ,no-python-downloads, , ,1525,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand python; and list",q,quiet, , ,1526,Use quiet output
uv," __fish_uv_using_subcommand python; and list",v,verbose, , ,1527,Use verbose output
uv," __fish_uv_using_subcommand python; and list", ,no-color, , ,1528,Disable colors
uv," __fish_uv_using_subcommand python; and list", ,native-tls, , ,1529,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand python; and list", ,no-native-tls, , ,1530, 
uv," __fish_uv_using_subcommand python; and list", ,offline, , ,1531,Disable network access
uv," __fish_uv_using_subcommand python; and list", ,no-offline, , ,1532, 
uv," __fish_uv_using_subcommand python; and list", ,preview, , ,1533,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand python; and list", ,no-preview, , ,1534, 
uv," __fish_uv_using_subcommand python; and list", ,isolated, , ,1535,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand python; and list", ,show-settings, , ,1536,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand python; and list", ,no-progress, , ,1537,Hide all progress outputs
uv," __fish_uv_using_subcommand python; and list", ,no-installer-metadata, , ,1538,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand python; and list", ,no-config, , ,1539,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand python; and list",h,help, , ,1540,Display the concise help for this command
uv," __fish_uv_using_subcommand python; and install",i,install-dir, ,@r,1541,The directory to store the Python installation in
uv," __fish_uv_using_subcommand python; and install", ,mirror, , ,1542,Set the URL to use as the source for downloading Python installations
uv," __fish_uv_using_subcommand python; and install", ,pypy-mirror, , ,1543,Set the URL to use as the source for downloading PyPy installations
uv," __fish_uv_using_subcommand python; and install", ,python-downloads-json-url, , ,1544,URL pointing to JSON of custom Python installations
uv," __fish_uv_using_subcommand python; and install", ,cache-dir, ,@r,1545,Path to the cache directory
uv," __fish_uv_using_subcommand python; and install", ,python-preference,only-managed,@f @r,1546, 
uv," __fish_uv_using_subcommand python; and install", ,python-fetch,automatic,@f @r,1547,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand python; and install", ,color,auto,@f @r,1548,Control the use of color in output
uv," __fish_uv_using_subcommand python; and install", ,allow-insecure-host, , ,1549,Allow insecure connections to a host
uv," __fish_uv_using_subcommand python; and install", ,preview-features, , ,1550,Enable experimental preview features
uv," __fish_uv_using_subcommand python; and install", ,directory, ,@r,1551,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand python; and install", ,project, ,@r,1552,Run the command within the given project directory
uv," __fish_uv_using_subcommand python; and install", ,config-file, ,@r,1553,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand python; and install", ,bin, , ,1554,Install a Python executable into the `bin` directory
uv," __fish_uv_using_subcommand python; and install", ,no-bin, , ,1555,Do not install a Python executable into the `bin` directory
uv," __fish_uv_using_subcommand python; and install", ,registry, , ,1556,Register the Python installation in the Windows registry
uv," __fish_uv_using_subcommand python; and install", ,no-registry, , ,1557,Do not register the Python installation in the Windows registry
uv," __fish_uv_using_subcommand python; and install",r,reinstall, , ,1558,"Reinstall the requested Python version, if it's already installed"
uv," __fish_uv_using_subcommand python; and install",f,force, , ,1559,Replace existing Python executables during installation
uv," __fish_uv_using_subcommand python; and install",U,upgrade, , ,1560,Upgrade existing Python installations to the latest patch version
uv," __fish_uv_using_subcommand python; and install", ,default, , ,1561,Use as the default Python version
uv," __fish_uv_using_subcommand python; and install",n,no-cache, , ,1562,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand python; and install", ,managed-python, , ,1563,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and install", ,no-managed-python, , ,1564,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and install", ,allow-python-downloads, , ,1565,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand python; and install", ,no-python-downloads, , ,1566,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand python; and install",q,quiet, , ,1567,Use quiet output
uv," __fish_uv_using_subcommand python; and install",v,verbose, , ,1568,Use verbose output
uv," __fish_uv_using_subcommand python; and install", ,no-color, , ,1569,Disable colors
uv," __fish_uv_using_subcommand python; and install", ,native-tls, , ,1570,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand python; and install", ,no-native-tls, , ,1571, 
uv," __fish_uv_using_subcommand python; and install", ,offline, , ,1572,Disable network access
uv," __fish_uv_using_subcommand python; and install", ,no-offline, , ,1573, 
uv," __fish_uv_using_subcommand python; and install", ,preview, , ,1574,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand python; and install", ,no-preview, , ,1575, 
uv," __fish_uv_using_subcommand python; and install", ,isolated, , ,1576,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand python; and install", ,show-settings, , ,1577,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand python; and install", ,no-progress, , ,1578,Hide all progress outputs
uv," __fish_uv_using_subcommand python; and install", ,no-installer-metadata, , ,1579,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand python; and install", ,no-config, , ,1580,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand python; and install",h,help, , ,1581,Display the concise help for this command
uv," __fish_uv_using_subcommand python; and upgrade",i,install-dir, ,@r,1582,The directory Python installations are stored in
uv," __fish_uv_using_subcommand python; and upgrade", ,mirror, , ,1583,Set the URL to use as the source for downloading Python installations
uv," __fish_uv_using_subcommand python; and upgrade", ,pypy-mirror, , ,1584,Set the URL to use as the source for downloading PyPy installations
uv," __fish_uv_using_subcommand python; and upgrade", ,python-downloads-json-url, , ,1585,URL pointing to JSON of custom Python installations
uv," __fish_uv_using_subcommand python; and upgrade", ,cache-dir, ,@r,1586,Path to the cache directory
uv," __fish_uv_using_subcommand python; and upgrade", ,python-preference,only-managed,@f @r,1587, 
uv," __fish_uv_using_subcommand python; and upgrade", ,python-fetch,automatic,@f @r,1588,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand python; and upgrade", ,color,auto,@f @r,1589,Control the use of color in output
uv," __fish_uv_using_subcommand python; and upgrade", ,allow-insecure-host, , ,1590,Allow insecure connections to a host
uv," __fish_uv_using_subcommand python; and upgrade", ,preview-features, , ,1591,Enable experimental preview features
uv," __fish_uv_using_subcommand python; and upgrade", ,directory, ,@r,1592,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand python; and upgrade", ,project, ,@r,1593,Run the command within the given project directory
uv," __fish_uv_using_subcommand python; and upgrade", ,config-file, ,@r,1594,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand python; and upgrade",r,reinstall, , ,1595,"Reinstall the latest Python patch, if it's already installed"
uv," __fish_uv_using_subcommand python; and upgrade",n,no-cache, , ,1596,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand python; and upgrade", ,managed-python, , ,1597,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and upgrade", ,no-managed-python, , ,1598,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and upgrade", ,allow-python-downloads, , ,1599,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand python; and upgrade", ,no-python-downloads, , ,1600,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand python; and upgrade",q,quiet, , ,1601,Use quiet output
uv," __fish_uv_using_subcommand python; and upgrade",v,verbose, , ,1602,Use verbose output
uv," __fish_uv_using_subcommand python; and upgrade", ,no-color, , ,1603,Disable colors
uv," __fish_uv_using_subcommand python; and upgrade", ,native-tls, , ,1604,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand python; and upgrade", ,no-native-tls, , ,1605, 
uv," __fish_uv_using_subcommand python; and upgrade", ,offline, , ,1606,Disable network access
uv," __fish_uv_using_subcommand python; and upgrade", ,no-offline, , ,1607, 
uv," __fish_uv_using_subcommand python; and upgrade", ,preview, , ,1608,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand python; and upgrade", ,no-preview, , ,1609, 
uv," __fish_uv_using_subcommand python; and upgrade", ,isolated, , ,1610,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand python; and upgrade", ,show-settings, , ,1611,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand python; and upgrade", ,no-progress, , ,1612,Hide all progress outputs
uv," __fish_uv_using_subcommand python; and upgrade", ,no-installer-metadata, , ,1613,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand python; and upgrade", ,no-config, , ,1614,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand python; and upgrade",h,help, , ,1615,Display the concise help for this command
uv," __fish_uv_using_subcommand python; and find", ,script, ,@r,1616,"Find the environment for a Python script, rather than the current project"
uv," __fish_uv_using_subcommand python; and find", ,python-downloads-json-url, , ,1617,URL pointing to JSON of custom Python installations
uv," __fish_uv_using_subcommand python; and find", ,cache-dir, ,@r,1618,Path to the cache directory
uv," __fish_uv_using_subcommand python; and find", ,python-preference,only-managed,@f @r,1619, 
uv," __fish_uv_using_subcommand python; and find", ,python-fetch,automatic,@f @r,1620,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand python; and find", ,color,auto,@f @r,1621,Control the use of color in output
uv," __fish_uv_using_subcommand python; and find", ,allow-insecure-host, , ,1622,Allow insecure connections to a host
uv," __fish_uv_using_subcommand python; and find", ,preview-features, , ,1623,Enable experimental preview features
uv," __fish_uv_using_subcommand python; and find", ,directory, ,@r,1624,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand python; and find", ,project, ,@r,1625,Run the command within the given project directory
uv," __fish_uv_using_subcommand python; and find", ,config-file, ,@r,1626,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand python; and find", ,no-project, , ,1627,Avoid discovering a project or workspace
uv," __fish_uv_using_subcommand python; and find", ,system, , ,1628,Only find system Python interpreters
uv," __fish_uv_using_subcommand python; and find", ,no-system, , ,1629, 
uv," __fish_uv_using_subcommand python; and find", ,show-version, , ,1630,Show the Python version that would be used instead of the path to the interpreter
uv," __fish_uv_using_subcommand python; and find",n,no-cache, , ,1631,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand python; and find", ,managed-python, , ,1632,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and find", ,no-managed-python, , ,1633,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and find", ,allow-python-downloads, , ,1634,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand python; and find", ,no-python-downloads, , ,1635,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand python; and find",q,quiet, , ,1636,Use quiet output
uv," __fish_uv_using_subcommand python; and find",v,verbose, , ,1637,Use verbose output
uv," __fish_uv_using_subcommand python; and find", ,no-color, , ,1638,Disable colors
uv," __fish_uv_using_subcommand python; and find", ,native-tls, , ,1639,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand python; and find", ,no-native-tls, , ,1640, 
uv," __fish_uv_using_subcommand python; and find", ,offline, , ,1641,Disable network access
uv," __fish_uv_using_subcommand python; and find", ,no-offline, , ,1642, 
uv," __fish_uv_using_subcommand python; and find", ,preview, , ,1643,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand python; and find", ,no-preview, , ,1644, 
uv," __fish_uv_using_subcommand python; and find", ,isolated, , ,1645,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand python; and find", ,show-settings, , ,1646,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand python; and find", ,no-progress, , ,1647,Hide all progress outputs
uv," __fish_uv_using_subcommand python; and find", ,no-installer-metadata, , ,1648,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand python; and find", ,no-config, , ,1649,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand python; and find",h,help, , ,1650,Display the concise help for this command
uv," __fish_uv_using_subcommand python; and pin", ,cache-dir, ,@r,1651,Path to the cache directory
uv," __fish_uv_using_subcommand python; and pin", ,python-preference,only-managed,@f @r,1652, 
uv," __fish_uv_using_subcommand python; and pin", ,python-fetch,automatic,@f @r,1653,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand python; and pin", ,color,auto,@f @r,1654,Control the use of color in output
uv," __fish_uv_using_subcommand python; and pin", ,allow-insecure-host, , ,1655,Allow insecure connections to a host
uv," __fish_uv_using_subcommand python; and pin", ,preview-features, , ,1656,Enable experimental preview features
uv," __fish_uv_using_subcommand python; and pin", ,directory, ,@r,1657,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand python; and pin", ,project, ,@r,1658,Run the command within the given project directory
uv," __fish_uv_using_subcommand python; and pin", ,config-file, ,@r,1659,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand python; and pin", ,resolved, , ,1660,Write the resolved Python interpreter path instead of the request
uv," __fish_uv_using_subcommand python; and pin", ,no-resolved, , ,1661, 
uv," __fish_uv_using_subcommand python; and pin", ,no-project, , ,1662,Avoid validating the Python pin is compatible with the project or workspace
uv," __fish_uv_using_subcommand python; and pin", ,global, , ,1663,Update the global Python version pin
uv," __fish_uv_using_subcommand python; and pin", ,rm, , ,1664,Remove the Python version pin
uv," __fish_uv_using_subcommand python; and pin",n,no-cache, , ,1665,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand python; and pin", ,managed-python, , ,1666,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and pin", ,no-managed-python, , ,1667,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and pin", ,allow-python-downloads, , ,1668,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand python; and pin", ,no-python-downloads, , ,1669,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand python; and pin",q,quiet, , ,1670,Use quiet output
uv," __fish_uv_using_subcommand python; and pin",v,verbose, , ,1671,Use verbose output
uv," __fish_uv_using_subcommand python; and pin", ,no-color, , ,1672,Disable colors
uv," __fish_uv_using_subcommand python; and pin", ,native-tls, , ,1673,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand python; and pin", ,no-native-tls, , ,1674, 
uv," __fish_uv_using_subcommand python; and pin", ,offline, , ,1675,Disable network access
uv," __fish_uv_using_subcommand python; and pin", ,no-offline, , ,1676, 
uv," __fish_uv_using_subcommand python; and pin", ,preview, , ,1677,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand python; and pin", ,no-preview, , ,1678, 
uv," __fish_uv_using_subcommand python; and pin", ,isolated, , ,1679,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand python; and pin", ,show-settings, , ,1680,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand python; and pin", ,no-progress, , ,1681,Hide all progress outputs
uv," __fish_uv_using_subcommand python; and pin", ,no-installer-metadata, , ,1682,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand python; and pin", ,no-config, , ,1683,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand python; and pin",h,help, , ,1684,Display the concise help for this command
uv," __fish_uv_using_subcommand python; and dir", ,cache-dir, ,@r,1685,Path to the cache directory
uv," __fish_uv_using_subcommand python; and dir", ,python-preference,only-managed,@f @r,1686, 
uv," __fish_uv_using_subcommand python; and dir", ,python-fetch,automatic,@f @r,1687,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand python; and dir", ,color,auto,@f @r,1688,Control the use of color in output
uv," __fish_uv_using_subcommand python; and dir", ,allow-insecure-host, , ,1689,Allow insecure connections to a host
uv," __fish_uv_using_subcommand python; and dir", ,preview-features, , ,1690,Enable experimental preview features
uv," __fish_uv_using_subcommand python; and dir", ,directory, ,@r,1691,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand python; and dir", ,project, ,@r,1692,Run the command within the given project directory
uv," __fish_uv_using_subcommand python; and dir", ,config-file, ,@r,1693,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand python; and dir", ,bin, , ,1694,Show the directory into which `uv python` will install Python executables.
uv," __fish_uv_using_subcommand python; and dir",n,no-cache, , ,1695,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand python; and dir", ,managed-python, , ,1696,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and dir", ,no-managed-python, , ,1697,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and dir", ,allow-python-downloads, , ,1698,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand python; and dir", ,no-python-downloads, , ,1699,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand python; and dir",q,quiet, , ,1700,Use quiet output
uv," __fish_uv_using_subcommand python; and dir",v,verbose, , ,1701,Use verbose output
uv," __fish_uv_using_subcommand python; and dir", ,no-color, , ,1702,Disable colors
uv," __fish_uv_using_subcommand python; and dir", ,native-tls, , ,1703,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand python; and dir", ,no-native-tls, , ,1704, 
uv," __fish_uv_using_subcommand python; and dir", ,offline, , ,1705,Disable network access
uv," __fish_uv_using_subcommand python; and dir", ,no-offline, , ,1706, 
uv," __fish_uv_using_subcommand python; and dir", ,preview, , ,1707,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand python; and dir", ,no-preview, , ,1708, 
uv," __fish_uv_using_subcommand python; and dir", ,isolated, , ,1709,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand python; and dir", ,show-settings, , ,1710,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand python; and dir", ,no-progress, , ,1711,Hide all progress outputs
uv," __fish_uv_using_subcommand python; and dir", ,no-installer-metadata, , ,1712,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand python; and dir", ,no-config, , ,1713,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand python; and dir",h,help, , ,1714,Display the concise help for this command
uv," __fish_uv_using_subcommand python; and uninstall",i,install-dir, ,@r,1715,The directory where the Python was installed
uv," __fish_uv_using_subcommand python; and uninstall", ,cache-dir, ,@r,1716,Path to the cache directory
uv," __fish_uv_using_subcommand python; and uninstall", ,python-preference,only-managed,@f @r,1717, 
uv," __fish_uv_using_subcommand python; and uninstall", ,python-fetch,automatic,@f @r,1718,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand python; and uninstall", ,color,auto,@f @r,1719,Control the use of color in output
uv," __fish_uv_using_subcommand python; and uninstall", ,allow-insecure-host, , ,1720,Allow insecure connections to a host
uv," __fish_uv_using_subcommand python; and uninstall", ,preview-features, , ,1721,Enable experimental preview features
uv," __fish_uv_using_subcommand python; and uninstall", ,directory, ,@r,1722,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand python; and uninstall", ,project, ,@r,1723,Run the command within the given project directory
uv," __fish_uv_using_subcommand python; and uninstall", ,config-file, ,@r,1724,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand python; and uninstall", ,all, , ,1725,Uninstall all managed Python versions
uv," __fish_uv_using_subcommand python; and uninstall",n,no-cache, , ,1726,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand python; and uninstall", ,managed-python, , ,1727,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and uninstall", ,no-managed-python, , ,1728,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and uninstall", ,allow-python-downloads, , ,1729,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand python; and uninstall", ,no-python-downloads, , ,1730,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand python; and uninstall",q,quiet, , ,1731,Use quiet output
uv," __fish_uv_using_subcommand python; and uninstall",v,verbose, , ,1732,Use verbose output
uv," __fish_uv_using_subcommand python; and uninstall", ,no-color, , ,1733,Disable colors
uv," __fish_uv_using_subcommand python; and uninstall", ,native-tls, , ,1734,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand python; and uninstall", ,no-native-tls, , ,1735, 
uv," __fish_uv_using_subcommand python; and uninstall", ,offline, , ,1736,Disable network access
uv," __fish_uv_using_subcommand python; and uninstall", ,no-offline, , ,1737, 
uv," __fish_uv_using_subcommand python; and uninstall", ,preview, , ,1738,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand python; and uninstall", ,no-preview, , ,1739, 
uv," __fish_uv_using_subcommand python; and uninstall", ,isolated, , ,1740,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand python; and uninstall", ,show-settings, , ,1741,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand python; and uninstall", ,no-progress, , ,1742,Hide all progress outputs
uv," __fish_uv_using_subcommand python; and uninstall", ,no-installer-metadata, , ,1743,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand python; and uninstall", ,no-config, , ,1744,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand python; and uninstall",h,help, , ,1745,Display the concise help for this command
uv," __fish_uv_using_subcommand python; and update-shell", ,cache-dir, ,@r,1746,Path to the cache directory
uv," __fish_uv_using_subcommand python; and update-shell", ,python-preference,only-managed,@f @r,1747, 
uv," __fish_uv_using_subcommand python; and update-shell", ,python-fetch,automatic,@f @r,1748,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand python; and update-shell", ,color,auto,@f @r,1749,Control the use of color in output
uv," __fish_uv_using_subcommand python; and update-shell", ,allow-insecure-host, , ,1750,Allow insecure connections to a host
uv," __fish_uv_using_subcommand python; and update-shell", ,preview-features, , ,1751,Enable experimental preview features
uv," __fish_uv_using_subcommand python; and update-shell", ,directory, ,@r,1752,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand python; and update-shell", ,project, ,@r,1753,Run the command within the given project directory
uv," __fish_uv_using_subcommand python; and update-shell", ,config-file, ,@r,1754,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand python; and update-shell",n,no-cache, , ,1755,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand python; and update-shell", ,managed-python, , ,1756,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and update-shell", ,no-managed-python, , ,1757,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand python; and update-shell", ,allow-python-downloads, , ,1758,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand python; and update-shell", ,no-python-downloads, , ,1759,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand python; and update-shell",q,quiet, , ,1760,Use quiet output
uv," __fish_uv_using_subcommand python; and update-shell",v,verbose, , ,1761,Use verbose output
uv," __fish_uv_using_subcommand python; and update-shell", ,no-color, , ,1762,Disable colors
uv," __fish_uv_using_subcommand python; and update-shell", ,native-tls, , ,1763,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand python; and update-shell", ,no-native-tls, , ,1764, 
uv," __fish_uv_using_subcommand python; and update-shell", ,offline, , ,1765,Disable network access
uv," __fish_uv_using_subcommand python; and update-shell", ,no-offline, , ,1766, 
uv," __fish_uv_using_subcommand python; and update-shell", ,preview, , ,1767,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand python; and update-shell", ,no-preview, , ,1768, 
uv," __fish_uv_using_subcommand python; and update-shell", ,isolated, , ,1769,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand python; and update-shell", ,show-settings, , ,1770,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand python; and update-shell", ,no-progress, , ,1771,Hide all progress outputs
uv," __fish_uv_using_subcommand python; and update-shell", ,no-installer-metadata, , ,1772,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand python; and update-shell", ,no-config, , ,1773,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand python; and update-shell",h,help, , ,1774,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,cache-dir, ,@r,1774,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,python-preference,only-managed,@f @r,1774, 
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,python-fetch,automatic,@f @r,1774,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,color,auto,@f @r,1774,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,allow-insecure-host, , ,1774,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,preview-features, , ,1774,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,directory, ,@r,1774,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,project, ,@r,1774,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,config-file, ,@r,1774,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check",n,no-cache, , ,1774,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,managed-python, , ,1774,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,no-managed-python, , ,1774,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,allow-python-downloads, , ,1774,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,no-python-downloads, , ,1774,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check",q,quiet, , ,1774,Use quiet output
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check",v,verbose, , ,1774,Use verbose output
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,no-color, , ,1774,Disable colors
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,native-tls, , ,1774,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,no-native-tls, , ,1774, 
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,offline, , ,1774,Disable network access
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,no-offline, , ,1774, 
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,preview, , ,1774,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,no-preview, , ,1774, 
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,isolated, , ,1774,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,show-settings, , ,1774,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,no-progress, , ,1774,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,no-installer-metadata, , ,1774,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", ,no-config, , ,1774,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check",h,help, , ,1774,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", , ,compile,@f,1774,Compile a `requirements.in` file to a `requirements.txt` or `pylock.toml` file
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", , ,sync,@f,1774,Sync an environment with a `requirements.txt` or `pylock.toml` file
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", , ,install,@f,1774,Install packages into an environment
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", , ,uninstall,@f,1774,Uninstall packages from an environment
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", , ,freeze,@f,1774,"List, in requirements format, packages installed in an environment"
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", , ,list,@f,1774,"List, in tabular format, packages installed in an environment"
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", , ,show,@f,1774,Show information about one or more installed packages
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", , ,tree,@f,1774,Display the dependency tree for an environment
uv," __fish_uv_using_subcommand pip; and compile sync install uninstall freeze list show tree check", , ,check,@f,1774,Verify installed packages have compatible dependencies
uv," __fish_uv_using_subcommand pip; and compile",c,constraints, , ,1775,Constrain versions using the given requirements files
uv," __fish_uv_using_subcommand pip; and compile", ,overrides, , ,1776,Override versions using the given requirements files
uv," __fish_uv_using_subcommand pip; and compile", ,excludes, , ,1777,Exclude packages from resolution using the given requirements files
uv," __fish_uv_using_subcommand pip; and compile",b,build-constraints, , ,1778,Constrain build dependencies using the given requirements files when building source distributions
uv," __fish_uv_using_subcommand pip; and compile", ,extra, , ,1779,"Include optional dependencies from the specified extra name; may be provided more than once"
uv," __fish_uv_using_subcommand pip; and compile", ,group, , ,1780,Install the specified dependency group from a `pyproject.toml`
uv," __fish_uv_using_subcommand pip; and compile", ,index, , ,1781,"The URLs to use when resolving dependencies, in addition to the default index"
uv," __fish_uv_using_subcommand pip; and compile", ,default-index, , ,1782,The URL of the default package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and compile",i,index-url, , ,1783,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and compile", ,extra-index-url, , ,1784,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv," __fish_uv_using_subcommand pip; and compile",f,find-links, , ,1785,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv," __fish_uv_using_subcommand pip; and compile",P,upgrade-package, , ,1786,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand pip; and compile", ,index-strategy,first-index,@f @r,1787,The strategy to use when resolving against multiple index URLs
uv," __fish_uv_using_subcommand pip; and compile", ,keyring-provider,disabled,@f @r,1788,Attempt to use `keyring` for authentication for index URLs
uv," __fish_uv_using_subcommand pip; and compile", ,resolution,highest,@f @r,1789,The strategy to use when selecting between the different compatible versions for a given package requirement
uv," __fish_uv_using_subcommand pip; and compile", ,prerelease,disallow,@f @r,1790,The strategy to use when considering pre-release versions
uv," __fish_uv_using_subcommand pip; and compile", ,fork-strategy,fewest,@f @r,1791,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv," __fish_uv_using_subcommand pip; and compile",C,config-setting, , ,1792,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand pip; and compile", ,config-settings-package, , ,1793,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand pip; and compile", ,no-build-isolation-package, , ,1794,Disable isolation when building source distributions for a specific package
uv," __fish_uv_using_subcommand pip; and compile", ,exclude-newer, , ,1795,Limit candidate packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand pip; and compile", ,exclude-newer-package, , ,1796,Limit candidate packages for a specific package to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand pip; and compile", ,link-mode,clone,@f @r,1797,The method to use when installing packages from the global cache
uv," __fish_uv_using_subcommand pip; and compile", ,refresh-package, , ,1798,Refresh cached data for a specific package
uv," __fish_uv_using_subcommand pip; and compile",o,output-file, ,@r,1799,Write the compiled requirements to the given `requirements.txt` or `pylock.toml` file
uv," __fish_uv_using_subcommand pip; and compile", ,format,requirements.txt,@f @r,1800,The format in which the resolution should be output
uv," __fish_uv_using_subcommand pip; and compile", ,annotation-style,line,@f @r,1801,"The style of the annotation comments included in the output file, used to indicate the source of each package"
uv," __fish_uv_using_subcommand pip; and compile", ,custom-compile-command, , ,1802,The header comment to include at the top of the output file generated by `uv pip compile`
uv," __fish_uv_using_subcommand pip; and compile",p,python, , ,1803,The Python interpreter to use during resolution.
uv," __fish_uv_using_subcommand pip; and compile", ,no-binary, , ,1804,Don't install pre-built wheels
uv," __fish_uv_using_subcommand pip; and compile", ,only-binary, , ,1805,"Only use pre-built wheels; don't build source distributions"
uv," __fish_uv_using_subcommand pip; and compile", ,python-version, , ,1806,The Python version to use for resolution
uv," __fish_uv_using_subcommand pip; and compile", ,python-platform,windows,@f @r,1807,The platform for which requirements should be resolved
uv," __fish_uv_using_subcommand pip; and compile", ,no-emit-package, , ,1808,Specify a package to omit from the output resolution. Its dependencies will still be included in the resolution. Equivalent to pip-compile's `--unsafe-package` option
uv," __fish_uv_using_subcommand pip; and compile", ,torch-backend,auto,@f @r,1809,"The backend to use when fetching packages in the PyTorch ecosystem (e.g., `cpu`, `cu126`, or `auto`)"
uv," __fish_uv_using_subcommand pip; and compile", ,resolver,backtracking,@f @r,1810, 
uv," __fish_uv_using_subcommand pip; and compile", ,max-rounds, , ,1811, 
uv," __fish_uv_using_subcommand pip; and compile", ,cert, , ,1812, 
uv," __fish_uv_using_subcommand pip; and compile", ,client-cert, , ,1813, 
uv," __fish_uv_using_subcommand pip; and compile", ,config, , ,1814, 
uv," __fish_uv_using_subcommand pip; and compile", ,pip-args, , ,1815, 
uv," __fish_uv_using_subcommand pip; and compile", ,cache-dir, ,@r,1816,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and compile", ,python-preference,only-managed,@f @r,1817, 
uv," __fish_uv_using_subcommand pip; and compile", ,python-fetch,automatic,@f @r,1818,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and compile", ,color,auto,@f @r,1819,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and compile", ,allow-insecure-host, , ,1820,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and compile", ,preview-features, , ,1821,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and compile", ,directory, ,@r,1822,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and compile", ,project, ,@r,1823,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and compile", ,config-file, ,@r,1824,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and compile", ,all-extras, , ,1825,Include all optional dependencies
uv," __fish_uv_using_subcommand pip; and compile", ,no-all-extras, , ,1826, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-index, , ,1827,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv," __fish_uv_using_subcommand pip; and compile",U,upgrade, , ,1828,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv," __fish_uv_using_subcommand pip; and compile", ,no-upgrade, , ,1829, 
uv," __fish_uv_using_subcommand pip; and compile", ,pre, , ,1830, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-build-isolation, , ,1831,Disable isolation when building source distributions
uv," __fish_uv_using_subcommand pip; and compile", ,build-isolation, , ,1832, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-sources, , ,1833,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv," __fish_uv_using_subcommand pip; and compile", ,refresh, , ,1834,Refresh all cached data
uv," __fish_uv_using_subcommand pip; and compile", ,no-refresh, , ,1835, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-deps, , ,1836,"Ignore package dependencies, instead only add those packages explicitly listed on the command line to the resulting requirements file"
uv," __fish_uv_using_subcommand pip; and compile", ,deps, , ,1837, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-strip-extras, , ,1838,Include extras in the output file
uv," __fish_uv_using_subcommand pip; and compile", ,strip-extras, , ,1839, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-strip-markers, , ,1840,Include environment markers in the output file
uv," __fish_uv_using_subcommand pip; and compile", ,strip-markers, , ,1841, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-annotate, , ,1842,Exclude comment annotations indicating the source of each package
uv," __fish_uv_using_subcommand pip; and compile", ,annotate, , ,1843, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-header, , ,1844,Exclude the comment header at the top of the generated output file
uv," __fish_uv_using_subcommand pip; and compile", ,header, , ,1845, 
uv," __fish_uv_using_subcommand pip; and compile", ,system, , ,1846,Install packages into the system Python environment
uv," __fish_uv_using_subcommand pip; and compile", ,no-system, , ,1847, 
uv," __fish_uv_using_subcommand pip; and compile", ,generate-hashes, , ,1848,Include distribution hashes in the output file
uv," __fish_uv_using_subcommand pip; and compile", ,no-generate-hashes, , ,1849, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-build, , ,1850,Don't build source distributions
uv," __fish_uv_using_subcommand pip; and compile", ,build, , ,1851, 
uv," __fish_uv_using_subcommand pip; and compile", ,universal, , ,1852,"Perform a universal resolution, attempting to generate a single `requirements.txt` output file that is compatible with all operating systems, architectures, and Python implementations"
uv," __fish_uv_using_subcommand pip; and compile", ,no-universal, , ,1853, 
uv," __fish_uv_using_subcommand pip; and compile", ,emit-index-url, , ,1854,Include `--index-url` and `--extra-index-url` entries in the generated output file
uv," __fish_uv_using_subcommand pip; and compile", ,no-emit-index-url, , ,1855, 
uv," __fish_uv_using_subcommand pip; and compile", ,emit-find-links, , ,1856,Include `--find-links` entries in the generated output file
uv," __fish_uv_using_subcommand pip; and compile", ,no-emit-find-links, , ,1857, 
uv," __fish_uv_using_subcommand pip; and compile", ,emit-build-options, , ,1858,Include `--no-binary` and `--only-binary` entries in the generated output file
uv," __fish_uv_using_subcommand pip; and compile", ,no-emit-build-options, , ,1859, 
uv," __fish_uv_using_subcommand pip; and compile", ,emit-marker-expression, , ,1860,Whether to emit a marker string indicating when it is known that the resulting set of pinned dependencies is valid
uv," __fish_uv_using_subcommand pip; and compile", ,no-emit-marker-expression, , ,1861, 
uv," __fish_uv_using_subcommand pip; and compile", ,emit-index-annotation, , ,1862,"Include comment annotations indicating the index used to resolve each package (e.g., `# from https://pypi.org/simple`)"
uv," __fish_uv_using_subcommand pip; and compile", ,no-emit-index-annotation, , ,1863, 
uv," __fish_uv_using_subcommand pip; and compile", ,allow-unsafe, , ,1864, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-allow-unsafe, , ,1865, 
uv," __fish_uv_using_subcommand pip; and compile", ,reuse-hashes, , ,1866, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-reuse-hashes, , ,1867, 
uv," __fish_uv_using_subcommand pip; and compile", ,emit-trusted-host, , ,1868, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-emit-trusted-host, , ,1869, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-config, , ,1870, 
uv," __fish_uv_using_subcommand pip; and compile", ,emit-options, , ,1871, 
uv," __fish_uv_using_subcommand pip; and compile", ,no-emit-options, , ,1872, 
uv," __fish_uv_using_subcommand pip; and compile",n,no-cache, , ,1873,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and compile", ,managed-python, , ,1874,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and compile", ,no-managed-python, , ,1875,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and compile", ,allow-python-downloads, , ,1876,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and compile", ,no-python-downloads, , ,1877,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and compile",q,quiet, , ,1878,Use quiet output
uv," __fish_uv_using_subcommand pip; and compile",v,verbose, , ,1879,Use verbose output
uv," __fish_uv_using_subcommand pip; and compile", ,no-color, , ,1880,Disable colors
uv," __fish_uv_using_subcommand pip; and compile", ,native-tls, , ,1881,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and compile", ,no-native-tls, , ,1882, 
uv," __fish_uv_using_subcommand pip; and compile", ,offline, , ,1883,Disable network access
uv," __fish_uv_using_subcommand pip; and compile", ,no-offline, , ,1884, 
uv," __fish_uv_using_subcommand pip; and compile", ,preview, , ,1885,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and compile", ,no-preview, , ,1886, 
uv," __fish_uv_using_subcommand pip; and compile", ,isolated, , ,1887,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and compile", ,show-settings, , ,1888,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and compile", ,no-progress, , ,1889,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and compile", ,no-installer-metadata, , ,1890,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and compile",h,help, , ,1891,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and sync",c,constraints, , ,1892,Constrain versions using the given requirements files
uv," __fish_uv_using_subcommand pip; and sync",b,build-constraints, , ,1893,Constrain build dependencies using the given requirements files when building source distributions
uv," __fish_uv_using_subcommand pip; and sync", ,extra, , ,1894,"Include optional dependencies from the specified extra name; may be provided more than once"
uv," __fish_uv_using_subcommand pip; and sync", ,group, , ,1895,Install the specified dependency group from a `pylock.toml` or `pyproject.toml`
uv," __fish_uv_using_subcommand pip; and sync", ,index, , ,1896,"The URLs to use when resolving dependencies, in addition to the default index"
uv," __fish_uv_using_subcommand pip; and sync", ,default-index, , ,1897,The URL of the default package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and sync",i,index-url, , ,1898,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and sync", ,extra-index-url, , ,1899,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv," __fish_uv_using_subcommand pip; and sync",f,find-links, , ,1900,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv," __fish_uv_using_subcommand pip; and sync", ,reinstall-package, , ,1901,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand pip; and sync", ,index-strategy,first-index,@f @r,1902,The strategy to use when resolving against multiple index URLs
uv," __fish_uv_using_subcommand pip; and sync", ,keyring-provider,disabled,@f @r,1903,Attempt to use `keyring` for authentication for index URLs
uv," __fish_uv_using_subcommand pip; and sync",C,config-setting, , ,1904,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand pip; and sync", ,config-settings-package, , ,1905,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand pip; and sync", ,exclude-newer, , ,1906,Limit candidate packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand pip; and sync", ,exclude-newer-package, , ,1907,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand pip; and sync", ,link-mode,clone,@f @r,1908,The method to use when installing packages from the global cache
uv," __fish_uv_using_subcommand pip; and sync", ,refresh-package, , ,1909,Refresh cached data for a specific package
uv," __fish_uv_using_subcommand pip; and sync",p,python, , ,1910,The Python interpreter into which packages should be installed.
uv," __fish_uv_using_subcommand pip; and sync", ,target, ,@r,1911,"Install packages into the specified directory, rather than into the virtual or system Python environment. The packages will be installed at the top-level of the directory"
uv," __fish_uv_using_subcommand pip; and sync", ,prefix, ,@r,1912,"Install packages into `lib`, `bin`, and other top-level folders under the specified directory, as if a virtual environment were present at that location"
uv," __fish_uv_using_subcommand pip; and sync", ,no-binary, , ,1913,Don't install pre-built wheels
uv," __fish_uv_using_subcommand pip; and sync", ,only-binary, , ,1914,"Only use pre-built wheels; don't build source distributions"
uv," __fish_uv_using_subcommand pip; and sync", ,python-version, , ,1915,"The minimum Python version that should be supported by the requirements (e.g., `3.7` or `3.7.9`)"
uv," __fish_uv_using_subcommand pip; and sync", ,python-platform,windows,@f @r,1916,The platform for which requirements should be installed
uv," __fish_uv_using_subcommand pip; and sync", ,torch-backend,auto,@f @r,1917,"The backend to use when fetching packages in the PyTorch ecosystem (e.g., `cpu`, `cu126`, or `auto`)"
uv," __fish_uv_using_subcommand pip; and sync", ,python-executable, , ,1918, 
uv," __fish_uv_using_subcommand pip; and sync", ,cert, , ,1919, 
uv," __fish_uv_using_subcommand pip; and sync", ,client-cert, , ,1920, 
uv," __fish_uv_using_subcommand pip; and sync", ,config, , ,1921, 
uv," __fish_uv_using_subcommand pip; and sync", ,pip-args, , ,1922, 
uv," __fish_uv_using_subcommand pip; and sync", ,cache-dir, ,@r,1923,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and sync", ,python-preference,only-managed,@f @r,1924, 
uv," __fish_uv_using_subcommand pip; and sync", ,python-fetch,automatic,@f @r,1925,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and sync", ,color,auto,@f @r,1926,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and sync", ,allow-insecure-host, , ,1927,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and sync", ,preview-features, , ,1928,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and sync", ,directory, ,@r,1929,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and sync", ,project, ,@r,1930,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and sync", ,config-file, ,@r,1931,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and sync", ,all-extras, , ,1932,Include all optional dependencies
uv," __fish_uv_using_subcommand pip; and sync", ,no-all-extras, , ,1933, 
uv," __fish_uv_using_subcommand pip; and sync", ,no-index, , ,1934,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv," __fish_uv_using_subcommand pip; and sync", ,reinstall, , ,1935,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv," __fish_uv_using_subcommand pip; and sync", ,no-reinstall, , ,1936, 
uv," __fish_uv_using_subcommand pip; and sync", ,no-build-isolation, , ,1937,Disable isolation when building source distributions
uv," __fish_uv_using_subcommand pip; and sync", ,build-isolation, , ,1938, 
uv," __fish_uv_using_subcommand pip; and sync", ,compile-bytecode, , ,1939,Compile Python files to bytecode after installation
uv," __fish_uv_using_subcommand pip; and sync", ,no-compile-bytecode, , ,1940, 
uv," __fish_uv_using_subcommand pip; and sync", ,no-sources, , ,1941,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv," __fish_uv_using_subcommand pip; and sync", ,refresh, , ,1942,Refresh all cached data
uv," __fish_uv_using_subcommand pip; and sync", ,no-refresh, , ,1943, 
uv," __fish_uv_using_subcommand pip; and sync", ,require-hashes, , ,1944,Require a matching hash for each requirement
uv," __fish_uv_using_subcommand pip; and sync", ,no-require-hashes, , ,1945, 
uv," __fish_uv_using_subcommand pip; and sync", ,verify-hashes, , ,1946, 
uv," __fish_uv_using_subcommand pip; and sync", ,no-verify-hashes, , ,1947,Disable validation of hashes in the requirements file
uv," __fish_uv_using_subcommand pip; and sync", ,system, , ,1948,Install packages into the system Python environment
uv," __fish_uv_using_subcommand pip; and sync", ,no-system, , ,1949, 
uv," __fish_uv_using_subcommand pip; and sync", ,break-system-packages, , ,1950,Allow uv to modify an `EXTERNALLY-MANAGED` Python installation
uv," __fish_uv_using_subcommand pip; and sync", ,no-break-system-packages, , ,1951, 
uv," __fish_uv_using_subcommand pip; and sync", ,no-build, , ,1952,Don't build source distributions
uv," __fish_uv_using_subcommand pip; and sync", ,build, , ,1953, 
uv," __fish_uv_using_subcommand pip; and sync", ,allow-empty-requirements, , ,1954,"Allow sync of empty requirements, which will clear the environment of all packages"
uv," __fish_uv_using_subcommand pip; and sync", ,no-allow-empty-requirements, , ,1955, 
uv," __fish_uv_using_subcommand pip; and sync", ,strict, , ,1956,"Validate the Python environment after completing the installation, to detect packages with missing dependencies or other issues"
uv," __fish_uv_using_subcommand pip; and sync", ,no-strict, , ,1957, 
uv," __fish_uv_using_subcommand pip; and sync", ,dry-run, , ,1958,"Perform a dry run, i.e., don't actually install anything but resolve the dependencies and print the resulting plan"
uv," __fish_uv_using_subcommand pip; and sync",a,ask, , ,1959, 
uv," __fish_uv_using_subcommand pip; and sync", ,user, , ,1960, 
uv," __fish_uv_using_subcommand pip; and sync", ,no-config, , ,1961, 
uv," __fish_uv_using_subcommand pip; and sync",n,no-cache, , ,1962,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and sync", ,managed-python, , ,1963,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and sync", ,no-managed-python, , ,1964,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and sync", ,allow-python-downloads, , ,1965,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and sync", ,no-python-downloads, , ,1966,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and sync",q,quiet, , ,1967,Use quiet output
uv," __fish_uv_using_subcommand pip; and sync",v,verbose, , ,1968,Use verbose output
uv," __fish_uv_using_subcommand pip; and sync", ,no-color, , ,1969,Disable colors
uv," __fish_uv_using_subcommand pip; and sync", ,native-tls, , ,1970,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and sync", ,no-native-tls, , ,1971, 
uv," __fish_uv_using_subcommand pip; and sync", ,offline, , ,1972,Disable network access
uv," __fish_uv_using_subcommand pip; and sync", ,no-offline, , ,1973, 
uv," __fish_uv_using_subcommand pip; and sync", ,preview, , ,1974,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and sync", ,no-preview, , ,1975, 
uv," __fish_uv_using_subcommand pip; and sync", ,isolated, , ,1976,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and sync", ,show-settings, , ,1977,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and sync", ,no-progress, , ,1978,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and sync", ,no-installer-metadata, , ,1979,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and sync",h,help, , ,1980,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and install",r,requirements, ,@r,1981,Install the packages listed in the given files
uv," __fish_uv_using_subcommand pip; and install",e,editable, , ,1982,Install the editable package based on the provided local file path
uv," __fish_uv_using_subcommand pip; and install",c,constraints, , ,1983,Constrain versions using the given requirements files
uv," __fish_uv_using_subcommand pip; and install", ,overrides, , ,1984,Override versions using the given requirements files
uv," __fish_uv_using_subcommand pip; and install", ,excludes, , ,1985,Exclude packages from resolution using the given requirements files
uv," __fish_uv_using_subcommand pip; and install",b,build-constraints, , ,1986,Constrain build dependencies using the given requirements files when building source distributions
uv," __fish_uv_using_subcommand pip; and install", ,extra, , ,1987,"Include optional dependencies from the specified extra name; may be provided more than once"
uv," __fish_uv_using_subcommand pip; and install", ,group, , ,1988,Install the specified dependency group from a `pylock.toml` or `pyproject.toml`
uv," __fish_uv_using_subcommand pip; and install", ,index, , ,1989,"The URLs to use when resolving dependencies, in addition to the default index"
uv," __fish_uv_using_subcommand pip; and install", ,default-index, , ,1990,The URL of the default package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and install",i,index-url, , ,1991,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and install", ,extra-index-url, , ,1992,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv," __fish_uv_using_subcommand pip; and install",f,find-links, , ,1993,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv," __fish_uv_using_subcommand pip; and install",P,upgrade-package, , ,1994,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand pip; and install", ,reinstall-package, , ,1995,"Reinstall a specific package, regardless of whether it's already installed. Implies `--refresh-package`"
uv," __fish_uv_using_subcommand pip; and install", ,index-strategy,first-index,@f @r,1996,The strategy to use when resolving against multiple index URLs
uv," __fish_uv_using_subcommand pip; and install", ,keyring-provider,disabled,@f @r,1997,Attempt to use `keyring` for authentication for index URLs
uv," __fish_uv_using_subcommand pip; and install", ,resolution,highest,@f @r,1998,The strategy to use when selecting between the different compatible versions for a given package requirement
uv," __fish_uv_using_subcommand pip; and install", ,prerelease,disallow,@f @r,1999,The strategy to use when considering pre-release versions
uv," __fish_uv_using_subcommand pip; and install", ,fork-strategy,fewest,@f @r,2000,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv," __fish_uv_using_subcommand pip; and install",C,config-setting, , ,2001,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand pip; and install", ,config-settings-package, , ,2002,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv," __fish_uv_using_subcommand pip; and install", ,no-build-isolation-package, , ,2003,Disable isolation when building source distributions for a specific package
uv," __fish_uv_using_subcommand pip; and install", ,exclude-newer, , ,2004,Limit candidate packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand pip; and install", ,exclude-newer-package, , ,2005,Limit candidate packages for specific packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand pip; and install", ,link-mode,clone,@f @r,2006,The method to use when installing packages from the global cache
uv," __fish_uv_using_subcommand pip; and install", ,refresh-package, , ,2007,Refresh cached data for a specific package
uv," __fish_uv_using_subcommand pip; and install",p,python, , ,2008,The Python interpreter into which packages should be installed.
uv," __fish_uv_using_subcommand pip; and install", ,target, ,@r,2009,"Install packages into the specified directory, rather than into the virtual or system Python environment. The packages will be installed at the top-level of the directory"
uv," __fish_uv_using_subcommand pip; and install", ,prefix, ,@r,2010,"Install packages into `lib`, `bin`, and other top-level folders under the specified directory, as if a virtual environment were present at that location"
uv," __fish_uv_using_subcommand pip; and install", ,no-binary, , ,2011,Don't install pre-built wheels
uv," __fish_uv_using_subcommand pip; and install", ,only-binary, , ,2012,"Only use pre-built wheels; don't build source distributions"
uv," __fish_uv_using_subcommand pip; and install", ,python-version, , ,2013,"The minimum Python version that should be supported by the requirements (e.g., `3.7` or `3.7.9`)"
uv," __fish_uv_using_subcommand pip; and install", ,python-platform,windows,@f @r,2014,The platform for which requirements should be installed
uv," __fish_uv_using_subcommand pip; and install", ,torch-backend,auto,@f @r,2015,"The backend to use when fetching packages in the PyTorch ecosystem (e.g., `cpu`, `cu126`, or `auto`)"
uv," __fish_uv_using_subcommand pip; and install", ,cache-dir, ,@r,2016,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and install", ,python-preference,only-managed,@f @r,2017, 
uv," __fish_uv_using_subcommand pip; and install", ,python-fetch,automatic,@f @r,2018,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and install", ,color,auto,@f @r,2019,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and install", ,allow-insecure-host, , ,2020,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and install", ,preview-features, , ,2021,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and install", ,directory, ,@r,2022,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and install", ,project, ,@r,2023,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and install", ,config-file, ,@r,2024,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and install", ,all-extras, , ,2025,Include all optional dependencies
uv," __fish_uv_using_subcommand pip; and install", ,no-all-extras, , ,2026, 
uv," __fish_uv_using_subcommand pip; and install", ,no-index, , ,2027,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv," __fish_uv_using_subcommand pip; and install",U,upgrade, , ,2028,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv," __fish_uv_using_subcommand pip; and install", ,no-upgrade, , ,2029, 
uv," __fish_uv_using_subcommand pip; and install", ,reinstall, , ,2030,"Reinstall all packages, regardless of whether they're already installed. Implies `--refresh`"
uv," __fish_uv_using_subcommand pip; and install", ,no-reinstall, , ,2031, 
uv," __fish_uv_using_subcommand pip; and install", ,pre, , ,2032, 
uv," __fish_uv_using_subcommand pip; and install", ,no-build-isolation, , ,2033,Disable isolation when building source distributions
uv," __fish_uv_using_subcommand pip; and install", ,build-isolation, , ,2034, 
uv," __fish_uv_using_subcommand pip; and install", ,compile-bytecode, , ,2035,Compile Python files to bytecode after installation
uv," __fish_uv_using_subcommand pip; and install", ,no-compile-bytecode, , ,2036, 
uv," __fish_uv_using_subcommand pip; and install", ,no-sources, , ,2037,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv," __fish_uv_using_subcommand pip; and install", ,refresh, , ,2038,Refresh all cached data
uv," __fish_uv_using_subcommand pip; and install", ,no-refresh, , ,2039, 
uv," __fish_uv_using_subcommand pip; and install", ,no-deps, , ,2040,"Ignore package dependencies, instead only installing those packages explicitly listed on the command line or in the requirements files"
uv," __fish_uv_using_subcommand pip; and install", ,deps, , ,2041, 
uv," __fish_uv_using_subcommand pip; and install", ,require-hashes, , ,2042,Require a matching hash for each requirement
uv," __fish_uv_using_subcommand pip; and install", ,no-require-hashes, , ,2043, 
uv," __fish_uv_using_subcommand pip; and install", ,verify-hashes, , ,2044, 
uv," __fish_uv_using_subcommand pip; and install", ,no-verify-hashes, , ,2045,Disable validation of hashes in the requirements file
uv," __fish_uv_using_subcommand pip; and install", ,system, , ,2046,Install packages into the system Python environment
uv," __fish_uv_using_subcommand pip; and install", ,no-system, , ,2047, 
uv," __fish_uv_using_subcommand pip; and install", ,break-system-packages, , ,2048,Allow uv to modify an `EXTERNALLY-MANAGED` Python installation
uv," __fish_uv_using_subcommand pip; and install", ,no-break-system-packages, , ,2049, 
uv," __fish_uv_using_subcommand pip; and install", ,no-build, , ,2050,Don't build source distributions
uv," __fish_uv_using_subcommand pip; and install", ,build, , ,2051, 
uv," __fish_uv_using_subcommand pip; and install", ,inexact, , ,2052,Do not remove extraneous packages present in the environment
uv," __fish_uv_using_subcommand pip; and install", ,exact, , ,2053,"Perform an exact sync, removing extraneous packages"
uv," __fish_uv_using_subcommand pip; and install", ,strict, , ,2054,"Validate the Python environment after completing the installation, to detect packages with missing dependencies or other issues"
uv," __fish_uv_using_subcommand pip; and install", ,no-strict, , ,2055, 
uv," __fish_uv_using_subcommand pip; and install", ,dry-run, , ,2056,"Perform a dry run, i.e., don't actually install anything but resolve the dependencies and print the resulting plan"
uv," __fish_uv_using_subcommand pip; and install", ,disable-pip-version-check, , ,2057, 
uv," __fish_uv_using_subcommand pip; and install", ,user, , ,2058, 
uv," __fish_uv_using_subcommand pip; and install",n,no-cache, , ,2059,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and install", ,managed-python, , ,2060,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and install", ,no-managed-python, , ,2061,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and install", ,allow-python-downloads, , ,2062,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and install", ,no-python-downloads, , ,2063,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and install",q,quiet, , ,2064,Use quiet output
uv," __fish_uv_using_subcommand pip; and install",v,verbose, , ,2065,Use verbose output
uv," __fish_uv_using_subcommand pip; and install", ,no-color, , ,2066,Disable colors
uv," __fish_uv_using_subcommand pip; and install", ,native-tls, , ,2067,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and install", ,no-native-tls, , ,2068, 
uv," __fish_uv_using_subcommand pip; and install", ,offline, , ,2069,Disable network access
uv," __fish_uv_using_subcommand pip; and install", ,no-offline, , ,2070, 
uv," __fish_uv_using_subcommand pip; and install", ,preview, , ,2071,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and install", ,no-preview, , ,2072, 
uv," __fish_uv_using_subcommand pip; and install", ,isolated, , ,2073,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and install", ,show-settings, , ,2074,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and install", ,no-progress, , ,2075,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and install", ,no-installer-metadata, , ,2076,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and install", ,no-config, , ,2077,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand pip; and install",h,help, , ,2078,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and uninstall",r,requirements, ,@r,2079,Uninstall the packages listed in the given files
uv," __fish_uv_using_subcommand pip; and uninstall",p,python, , ,2080,The Python interpreter from which packages should be uninstalled.
uv," __fish_uv_using_subcommand pip; and uninstall", ,keyring-provider,disabled,@f @r,2081,Attempt to use `keyring` for authentication for remote requirements files
uv," __fish_uv_using_subcommand pip; and uninstall", ,target, ,@r,2082,Uninstall packages from the specified `--target` directory
uv," __fish_uv_using_subcommand pip; and uninstall", ,prefix, ,@r,2083,Uninstall packages from the specified `--prefix` directory
uv," __fish_uv_using_subcommand pip; and uninstall", ,cache-dir, ,@r,2084,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and uninstall", ,python-preference,only-managed,@f @r,2085, 
uv," __fish_uv_using_subcommand pip; and uninstall", ,python-fetch,automatic,@f @r,2086,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and uninstall", ,color,auto,@f @r,2087,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and uninstall", ,allow-insecure-host, , ,2088,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and uninstall", ,preview-features, , ,2089,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and uninstall", ,directory, ,@r,2090,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and uninstall", ,project, ,@r,2091,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and uninstall", ,config-file, ,@r,2092,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and uninstall", ,system, , ,2093,Use the system Python to uninstall packages
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-system, , ,2094, 
uv," __fish_uv_using_subcommand pip; and uninstall", ,break-system-packages, , ,2095,Allow uv to modify an `EXTERNALLY-MANAGED` Python installation
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-break-system-packages, , ,2096, 
uv," __fish_uv_using_subcommand pip; and uninstall", ,dry-run, , ,2097,"Perform a dry run, i.e., don't actually uninstall anything but print the resulting plan"
uv," __fish_uv_using_subcommand pip; and uninstall", ,disable-pip-version-check, , ,2098, 
uv," __fish_uv_using_subcommand pip; and uninstall",n,no-cache, , ,2099,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and uninstall", ,managed-python, , ,2100,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-managed-python, , ,2101,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and uninstall", ,allow-python-downloads, , ,2102,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-python-downloads, , ,2103,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and uninstall",q,quiet, , ,2104,Use quiet output
uv," __fish_uv_using_subcommand pip; and uninstall",v,verbose, , ,2105,Use verbose output
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-color, , ,2106,Disable colors
uv," __fish_uv_using_subcommand pip; and uninstall", ,native-tls, , ,2107,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-native-tls, , ,2108, 
uv," __fish_uv_using_subcommand pip; and uninstall", ,offline, , ,2109,Disable network access
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-offline, , ,2110, 
uv," __fish_uv_using_subcommand pip; and uninstall", ,preview, , ,2111,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-preview, , ,2112, 
uv," __fish_uv_using_subcommand pip; and uninstall", ,isolated, , ,2113,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and uninstall", ,show-settings, , ,2114,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-progress, , ,2115,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-installer-metadata, , ,2116,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and uninstall", ,no-config, , ,2117,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand pip; and uninstall",h,help, , ,2118,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and freeze",p,python, , ,2119,The Python interpreter for which packages should be listed.
uv," __fish_uv_using_subcommand pip; and freeze", ,path, ,@r,2120,Restrict to the specified installation path for listing packages (can be used multiple times)
uv," __fish_uv_using_subcommand pip; and freeze", ,cache-dir, ,@r,2121,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and freeze", ,python-preference,only-managed,@f @r,2122, 
uv," __fish_uv_using_subcommand pip; and freeze", ,python-fetch,automatic,@f @r,2123,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and freeze", ,color,auto,@f @r,2124,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and freeze", ,allow-insecure-host, , ,2125,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and freeze", ,preview-features, , ,2126,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and freeze", ,directory, ,@r,2127,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and freeze", ,project, ,@r,2128,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and freeze", ,config-file, ,@r,2129,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and freeze", ,exclude-editable, , ,2130,Exclude any editable packages from output
uv," __fish_uv_using_subcommand pip; and freeze", ,strict, , ,2131,"Validate the Python environment, to detect packages with missing dependencies and other issues"
uv," __fish_uv_using_subcommand pip; and freeze", ,no-strict, , ,2132, 
uv," __fish_uv_using_subcommand pip; and freeze", ,system, , ,2133,List packages in the system Python environment
uv," __fish_uv_using_subcommand pip; and freeze", ,no-system, , ,2134, 
uv," __fish_uv_using_subcommand pip; and freeze", ,disable-pip-version-check, , ,2135, 
uv," __fish_uv_using_subcommand pip; and freeze",n,no-cache, , ,2136,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and freeze", ,managed-python, , ,2137,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and freeze", ,no-managed-python, , ,2138,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and freeze", ,allow-python-downloads, , ,2139,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and freeze", ,no-python-downloads, , ,2140,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and freeze",q,quiet, , ,2141,Use quiet output
uv," __fish_uv_using_subcommand pip; and freeze",v,verbose, , ,2142,Use verbose output
uv," __fish_uv_using_subcommand pip; and freeze", ,no-color, , ,2143,Disable colors
uv," __fish_uv_using_subcommand pip; and freeze", ,native-tls, , ,2144,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and freeze", ,no-native-tls, , ,2145, 
uv," __fish_uv_using_subcommand pip; and freeze", ,offline, , ,2146,Disable network access
uv," __fish_uv_using_subcommand pip; and freeze", ,no-offline, , ,2147, 
uv," __fish_uv_using_subcommand pip; and freeze", ,preview, , ,2148,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and freeze", ,no-preview, , ,2149, 
uv," __fish_uv_using_subcommand pip; and freeze", ,isolated, , ,2150,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and freeze", ,show-settings, , ,2151,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and freeze", ,no-progress, , ,2152,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and freeze", ,no-installer-metadata, , ,2153,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and freeze", ,no-config, , ,2154,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand pip; and freeze",h,help, , ,2155,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and list", ,exclude, , ,2156,Exclude the specified package(s) from the output
uv," __fish_uv_using_subcommand pip; and list", ,format,columns,@f @r,2157,Select the output format
uv," __fish_uv_using_subcommand pip; and list", ,index, , ,2158,"The URLs to use when resolving dependencies, in addition to the default index"
uv," __fish_uv_using_subcommand pip; and list", ,default-index, , ,2159,The URL of the default package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and list",i,index-url, , ,2160,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and list", ,extra-index-url, , ,2161,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv," __fish_uv_using_subcommand pip; and list",f,find-links, , ,2162,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv," __fish_uv_using_subcommand pip; and list", ,index-strategy,first-index,@f @r,2163,The strategy to use when resolving against multiple index URLs
uv," __fish_uv_using_subcommand pip; and list", ,keyring-provider,disabled,@f @r,2164,Attempt to use `keyring` for authentication for index URLs
uv," __fish_uv_using_subcommand pip; and list", ,exclude-newer, , ,2165,Limit candidate packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand pip; and list",p,python, , ,2166,The Python interpreter for which packages should be listed.
uv," __fish_uv_using_subcommand pip; and list", ,cache-dir, ,@r,2167,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and list", ,python-preference,only-managed,@f @r,2168, 
uv," __fish_uv_using_subcommand pip; and list", ,python-fetch,automatic,@f @r,2169,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and list", ,color,auto,@f @r,2170,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and list", ,allow-insecure-host, , ,2171,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and list", ,preview-features, , ,2172,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and list", ,directory, ,@r,2173,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and list", ,project, ,@r,2174,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and list", ,config-file, ,@r,2175,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and list",e,editable, , ,2176,Only include editable projects
uv," __fish_uv_using_subcommand pip; and list", ,exclude-editable, , ,2177,Exclude any editable packages from output
uv," __fish_uv_using_subcommand pip; and list", ,outdated, , ,2178,List outdated packages
uv," __fish_uv_using_subcommand pip; and list", ,no-outdated, , ,2179, 
uv," __fish_uv_using_subcommand pip; and list", ,strict, , ,2180,"Validate the Python environment, to detect packages with missing dependencies and other issues"
uv," __fish_uv_using_subcommand pip; and list", ,no-strict, , ,2181, 
uv," __fish_uv_using_subcommand pip; and list", ,no-index, , ,2182,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv," __fish_uv_using_subcommand pip; and list", ,system, , ,2183,List packages in the system Python environment
uv," __fish_uv_using_subcommand pip; and list", ,no-system, , ,2184, 
uv," __fish_uv_using_subcommand pip; and list", ,disable-pip-version-check, , ,2185, 
uv," __fish_uv_using_subcommand pip; and list",n,no-cache, , ,2186,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and list", ,managed-python, , ,2187,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and list", ,no-managed-python, , ,2188,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and list", ,allow-python-downloads, , ,2189,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and list", ,no-python-downloads, , ,2190,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and list",q,quiet, , ,2191,Use quiet output
uv," __fish_uv_using_subcommand pip; and list",v,verbose, , ,2192,Use verbose output
uv," __fish_uv_using_subcommand pip; and list", ,no-color, , ,2193,Disable colors
uv," __fish_uv_using_subcommand pip; and list", ,native-tls, , ,2194,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and list", ,no-native-tls, , ,2195, 
uv," __fish_uv_using_subcommand pip; and list", ,offline, , ,2196,Disable network access
uv," __fish_uv_using_subcommand pip; and list", ,no-offline, , ,2197, 
uv," __fish_uv_using_subcommand pip; and list", ,preview, , ,2198,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and list", ,no-preview, , ,2199, 
uv," __fish_uv_using_subcommand pip; and list", ,isolated, , ,2200,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and list", ,show-settings, , ,2201,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and list", ,no-progress, , ,2202,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and list", ,no-installer-metadata, , ,2203,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and list", ,no-config, , ,2204,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand pip; and list",h,help, , ,2205,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and show",p,python, , ,2206,The Python interpreter to find the package in.
uv," __fish_uv_using_subcommand pip; and show", ,cache-dir, ,@r,2207,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and show", ,python-preference,only-managed,@f @r,2208, 
uv," __fish_uv_using_subcommand pip; and show", ,python-fetch,automatic,@f @r,2209,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and show", ,color,auto,@f @r,2210,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and show", ,allow-insecure-host, , ,2211,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and show", ,preview-features, , ,2212,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and show", ,directory, ,@r,2213,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and show", ,project, ,@r,2214,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and show", ,config-file, ,@r,2215,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and show", ,strict, , ,2216,"Validate the Python environment, to detect packages with missing dependencies and other issues"
uv," __fish_uv_using_subcommand pip; and show", ,no-strict, , ,2217, 
uv," __fish_uv_using_subcommand pip; and show",f,files, , ,2218,Show the full list of installed files for each package
uv," __fish_uv_using_subcommand pip; and show", ,system, , ,2219,Show a package in the system Python environment
uv," __fish_uv_using_subcommand pip; and show", ,no-system, , ,2220, 
uv," __fish_uv_using_subcommand pip; and show", ,disable-pip-version-check, , ,2221, 
uv," __fish_uv_using_subcommand pip; and show",n,no-cache, , ,2222,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and show", ,managed-python, , ,2223,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and show", ,no-managed-python, , ,2224,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and show", ,allow-python-downloads, , ,2225,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and show", ,no-python-downloads, , ,2226,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and show",q,quiet, , ,2227,Use quiet output
uv," __fish_uv_using_subcommand pip; and show",v,verbose, , ,2228,Use verbose output
uv," __fish_uv_using_subcommand pip; and show", ,no-color, , ,2229,Disable colors
uv," __fish_uv_using_subcommand pip; and show", ,native-tls, , ,2230,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and show", ,no-native-tls, , ,2231, 
uv," __fish_uv_using_subcommand pip; and show", ,offline, , ,2232,Disable network access
uv," __fish_uv_using_subcommand pip; and show", ,no-offline, , ,2233, 
uv," __fish_uv_using_subcommand pip; and show", ,preview, , ,2234,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and show", ,no-preview, , ,2235, 
uv," __fish_uv_using_subcommand pip; and show", ,isolated, , ,2236,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and show", ,show-settings, , ,2237,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and show", ,no-progress, , ,2238,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and show", ,no-installer-metadata, , ,2239,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and show", ,no-config, , ,2240,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand pip; and show",h,help, , ,2241,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and tree",d,depth, , ,2242,Maximum display depth of the dependency tree
uv," __fish_uv_using_subcommand pip; and tree", ,prune, , ,2243,Prune the given package from the display of the dependency tree
uv," __fish_uv_using_subcommand pip; and tree", ,package, , ,2244,Display only the specified packages
uv," __fish_uv_using_subcommand pip; and tree", ,index, , ,2245,"The URLs to use when resolving dependencies, in addition to the default index"
uv," __fish_uv_using_subcommand pip; and tree", ,default-index, , ,2246,The URL of the default package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and tree",i,index-url, , ,2247,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv," __fish_uv_using_subcommand pip; and tree", ,extra-index-url, , ,2248,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv," __fish_uv_using_subcommand pip; and tree",f,find-links, , ,2249,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv," __fish_uv_using_subcommand pip; and tree", ,index-strategy,first-index,@f @r,2250,The strategy to use when resolving against multiple index URLs
uv," __fish_uv_using_subcommand pip; and tree", ,keyring-provider,disabled,@f @r,2251,Attempt to use `keyring` for authentication for index URLs
uv," __fish_uv_using_subcommand pip; and tree", ,exclude-newer, , ,2252,Limit candidate packages to those that were uploaded prior to the given date
uv," __fish_uv_using_subcommand pip; and tree",p,python, , ,2253,The Python interpreter for which packages should be listed.
uv," __fish_uv_using_subcommand pip; and tree", ,cache-dir, ,@r,2254,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and tree", ,python-preference,only-managed,@f @r,2255, 
uv," __fish_uv_using_subcommand pip; and tree", ,python-fetch,automatic,@f @r,2256,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and tree", ,color,auto,@f @r,2257,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and tree", ,allow-insecure-host, , ,2258,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and tree", ,preview-features, , ,2259,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and tree", ,directory, ,@r,2260,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and tree", ,project, ,@r,2261,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and tree", ,config-file, ,@r,2262,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and tree", ,show-version-specifiers, , ,2263,Show the version constraint(s) imposed on each package
uv," __fish_uv_using_subcommand pip; and tree", ,no-dedupe, , ,2264,"Do not de-duplicate repeated dependencies. Usually, when a package has already displayed its dependencies, further occurrences will not re-display its dependencies, and will include a (*) to indicate it has already been shown. This flag will cause those duplicates to be repeated"
uv," __fish_uv_using_subcommand pip; and tree", ,invert, , ,2265,Show the reverse dependencies for the given package. This flag will invert the tree and display the packages that depend on the given package
uv," __fish_uv_using_subcommand pip; and tree", ,outdated, , ,2266,Show the latest available version of each package in the tree
uv," __fish_uv_using_subcommand pip; and tree", ,show-sizes, , ,2267,Show compressed wheel sizes for packages in the tree
uv," __fish_uv_using_subcommand pip; and tree", ,strict, , ,2268,"Validate the Python environment, to detect packages with missing dependencies and other issues"
uv," __fish_uv_using_subcommand pip; and tree", ,no-strict, , ,2269, 
uv," __fish_uv_using_subcommand pip; and tree", ,no-index, , ,2270,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv," __fish_uv_using_subcommand pip; and tree", ,system, , ,2271,List packages in the system Python environment
uv," __fish_uv_using_subcommand pip; and tree", ,no-system, , ,2272, 
uv," __fish_uv_using_subcommand pip; and tree", ,disable-pip-version-check, , ,2273, 
uv," __fish_uv_using_subcommand pip; and tree",n,no-cache, , ,2274,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and tree", ,managed-python, , ,2275,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and tree", ,no-managed-python, , ,2276,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and tree", ,allow-python-downloads, , ,2277,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and tree", ,no-python-downloads, , ,2278,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and tree",q,quiet, , ,2279,Use quiet output
uv," __fish_uv_using_subcommand pip; and tree",v,verbose, , ,2280,Use verbose output
uv," __fish_uv_using_subcommand pip; and tree", ,no-color, , ,2281,Disable colors
uv," __fish_uv_using_subcommand pip; and tree", ,native-tls, , ,2282,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and tree", ,no-native-tls, , ,2283, 
uv," __fish_uv_using_subcommand pip; and tree", ,offline, , ,2284,Disable network access
uv," __fish_uv_using_subcommand pip; and tree", ,no-offline, , ,2285, 
uv," __fish_uv_using_subcommand pip; and tree", ,preview, , ,2286,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and tree", ,no-preview, , ,2287, 
uv," __fish_uv_using_subcommand pip; and tree", ,isolated, , ,2288,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and tree", ,show-settings, , ,2289,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and tree", ,no-progress, , ,2290,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and tree", ,no-installer-metadata, , ,2291,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and tree", ,no-config, , ,2292,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand pip; and tree",h,help, , ,2293,Display the concise help for this command
uv," __fish_uv_using_subcommand pip; and check",p,python, , ,2294,The Python interpreter for which packages should be checked.
uv," __fish_uv_using_subcommand pip; and check", ,python-version, , ,2295,The Python version against which packages should be checked
uv," __fish_uv_using_subcommand pip; and check", ,python-platform,windows,@f @r,2296,The platform for which packages should be checked
uv," __fish_uv_using_subcommand pip; and check", ,cache-dir, ,@r,2297,Path to the cache directory
uv," __fish_uv_using_subcommand pip; and check", ,python-preference,only-managed,@f @r,2298, 
uv," __fish_uv_using_subcommand pip; and check", ,python-fetch,automatic,@f @r,2299,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand pip; and check", ,color,auto,@f @r,2300,Control the use of color in output
uv," __fish_uv_using_subcommand pip; and check", ,allow-insecure-host, , ,2301,Allow insecure connections to a host
uv," __fish_uv_using_subcommand pip; and check", ,preview-features, , ,2302,Enable experimental preview features
uv," __fish_uv_using_subcommand pip; and check", ,directory, ,@r,2303,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand pip; and check", ,project, ,@r,2304,Run the command within the given project directory
uv," __fish_uv_using_subcommand pip; and check", ,config-file, ,@r,2305,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand pip; and check", ,system, , ,2306,Check packages in the system Python environment
uv," __fish_uv_using_subcommand pip; and check", ,no-system, , ,2307, 
uv," __fish_uv_using_subcommand pip; and check",n,no-cache, , ,2308,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand pip; and check", ,managed-python, , ,2309,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and check", ,no-managed-python, , ,2310,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand pip; and check", ,allow-python-downloads, , ,2311,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand pip; and check", ,no-python-downloads, , ,2312,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand pip; and check",q,quiet, , ,2313,Use quiet output
uv," __fish_uv_using_subcommand pip; and check",v,verbose, , ,2314,Use verbose output
uv," __fish_uv_using_subcommand pip; and check", ,no-color, , ,2315,Disable colors
uv," __fish_uv_using_subcommand pip; and check", ,native-tls, , ,2316,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand pip; and check", ,no-native-tls, , ,2317, 
uv," __fish_uv_using_subcommand pip; and check", ,offline, , ,2318,Disable network access
uv," __fish_uv_using_subcommand pip; and check", ,no-offline, , ,2319, 
uv," __fish_uv_using_subcommand pip; and check", ,preview, , ,2320,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand pip; and check", ,no-preview, , ,2321, 
uv," __fish_uv_using_subcommand pip; and check", ,isolated, , ,2322,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand pip; and check", ,show-settings, , ,2323,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand pip; and check", ,no-progress, , ,2324,Hide all progress outputs
uv," __fish_uv_using_subcommand pip; and check", ,no-installer-metadata, , ,2325,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand pip; and check", ,no-config, , ,2326,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand pip; and check",h,help, , ,2327,Display the concise help for this command
uv, __fish_uv_using_subcommand venv,p,python, , ,2328,The Python interpreter to use for the virtual environment.
uv, __fish_uv_using_subcommand venv, ,prompt, , ,2329,Provide an alternative prompt prefix for the virtual environment.
uv, __fish_uv_using_subcommand venv, ,index, , ,2330,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand venv, ,default-index, , ,2331,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand venv,i,index-url, , ,2332,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand venv, ,extra-index-url, , ,2333,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand venv,f,find-links, , ,2334,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand venv, ,index-strategy,first-index,@f @r,2335,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand venv, ,keyring-provider,disabled,@f @r,2336,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand venv, ,exclude-newer, , ,2337,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand venv, ,exclude-newer-package, , ,2338,Limit candidate packages for a specific package to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand venv, ,link-mode,clone,@f @r,2339,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand venv, ,refresh-package, , ,2340,Refresh cached data for a specific package
uv, __fish_uv_using_subcommand venv, ,cache-dir, ,@r,2341,Path to the cache directory
uv, __fish_uv_using_subcommand venv, ,python-preference,only-managed,@f @r,2342, 
uv, __fish_uv_using_subcommand venv, ,python-fetch,automatic,@f @r,2343,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand venv, ,color,auto,@f @r,2344,Control the use of color in output
uv, __fish_uv_using_subcommand venv, ,allow-insecure-host, , ,2345,Allow insecure connections to a host
uv, __fish_uv_using_subcommand venv, ,preview-features, , ,2346,Enable experimental preview features
uv, __fish_uv_using_subcommand venv, ,directory, ,@r,2347,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand venv, ,project, ,@r,2348,Run the command within the given project directory
uv, __fish_uv_using_subcommand venv, ,config-file, ,@r,2349,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand venv, ,system, , ,2350,Ignore virtual environments when searching for the Python interpreter
uv, __fish_uv_using_subcommand venv, ,no-system, , ,2351,"This flag is included for compatibility only, it has no effect"
uv, __fish_uv_using_subcommand venv, ,no-project, , ,2352,Avoid discovering a project or workspace
uv, __fish_uv_using_subcommand venv, ,seed, , ,2353,"Install seed packages (one or more of: `pip`, `setuptools`, and `wheel`) into the virtual environment"
uv, __fish_uv_using_subcommand venv,c,clear, , ,2354,Remove any existing files or directories at the target path
uv, __fish_uv_using_subcommand venv, ,no-clear, , ,2355,Fail without prompting if any existing files or directories are present at the target path
uv, __fish_uv_using_subcommand venv, ,allow-existing, , ,2356,Preserve any existing files or directories at the target path
uv, __fish_uv_using_subcommand venv, ,system-site-packages, , ,2357,Give the virtual environment access to the system site packages directory
uv, __fish_uv_using_subcommand venv, ,relocatable, , ,2358,Make the virtual environment relocatable
uv, __fish_uv_using_subcommand venv, ,no-index, , ,2359,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand venv, ,refresh, , ,2360,Refresh all cached data
uv, __fish_uv_using_subcommand venv, ,no-refresh, , ,2361, 
uv, __fish_uv_using_subcommand venv, ,no-seed, , ,2362, 
uv, __fish_uv_using_subcommand venv, ,no-pip, , ,2363, 
uv, __fish_uv_using_subcommand venv, ,no-setuptools, , ,2364, 
uv, __fish_uv_using_subcommand venv, ,no-wheel, , ,2365, 
uv, __fish_uv_using_subcommand venv,n,no-cache, , ,2366,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand venv, ,managed-python, , ,2367,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand venv, ,no-managed-python, , ,2368,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand venv, ,allow-python-downloads, , ,2369,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand venv, ,no-python-downloads, , ,2370,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand venv,q,quiet, , ,2371,Use quiet output
uv, __fish_uv_using_subcommand venv,v,verbose, , ,2372,Use verbose output
uv, __fish_uv_using_subcommand venv, ,no-color, , ,2373,Disable colors
uv, __fish_uv_using_subcommand venv, ,native-tls, , ,2374,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand venv, ,no-native-tls, , ,2375, 
uv, __fish_uv_using_subcommand venv, ,offline, , ,2376,Disable network access
uv, __fish_uv_using_subcommand venv, ,no-offline, , ,2377, 
uv, __fish_uv_using_subcommand venv, ,preview, , ,2378,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand venv, ,no-preview, , ,2379, 
uv, __fish_uv_using_subcommand venv, ,isolated, , ,2380,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand venv, ,show-settings, , ,2381,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand venv, ,no-progress, , ,2382,Hide all progress outputs
uv, __fish_uv_using_subcommand venv, ,no-installer-metadata, , ,2383,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand venv, ,no-config, , ,2384,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand venv,h,help, , ,2385,Display the concise help for this command
uv, __fish_uv_using_subcommand build, ,package, , ,2386,Build a specific package in the workspace
uv, __fish_uv_using_subcommand build,o,out-dir, ,@r,2387,The output directory to which distributions should be written
uv, __fish_uv_using_subcommand build,b,build-constraints, , ,2388,Constrain build dependencies using the given requirements files when building distributions
uv, __fish_uv_using_subcommand build,p,python, , ,2389,The Python interpreter to use for the build environment.
uv, __fish_uv_using_subcommand build, ,index, , ,2390,"The URLs to use when resolving dependencies, in addition to the default index"
uv, __fish_uv_using_subcommand build, ,default-index, , ,2391,The URL of the default package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand build,i,index-url, , ,2392,(Deprecated: use `--default-index` instead) The URL of the Python package index (by default: <https://pypi.org/simple>)
uv, __fish_uv_using_subcommand build, ,extra-index-url, , ,2393,"(Deprecated: use `--index` instead) Extra URLs of package indexes to use, in addition to `--index-url`"
uv, __fish_uv_using_subcommand build,f,find-links, , ,2394,"Locations to search for candidate distributions, in addition to those found in the registry indexes"
uv, __fish_uv_using_subcommand build,P,upgrade-package, , ,2395,"Allow upgrades for a specific package, ignoring pinned versions in any existing output file. Implies `--refresh-package`"
uv, __fish_uv_using_subcommand build, ,index-strategy,first-index,@f @r,2396,The strategy to use when resolving against multiple index URLs
uv, __fish_uv_using_subcommand build, ,keyring-provider,disabled,@f @r,2397,Attempt to use `keyring` for authentication for index URLs
uv, __fish_uv_using_subcommand build, ,resolution,highest,@f @r,2398,The strategy to use when selecting between the different compatible versions for a given package requirement
uv, __fish_uv_using_subcommand build, ,prerelease,disallow,@f @r,2399,The strategy to use when considering pre-release versions
uv, __fish_uv_using_subcommand build, ,fork-strategy,fewest,@f @r,2400,The strategy to use when selecting multiple versions of a given package across Python versions and platforms
uv, __fish_uv_using_subcommand build,C,config-setting, , ,2401,"Settings to pass to the PEP 517 build backend, specified as `KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand build, ,config-settings-package, , ,2402,"Settings to pass to the PEP 517 build backend for a specific package, specified as `PACKAGE:KEY=VALUE` pairs"
uv, __fish_uv_using_subcommand build, ,no-build-isolation-package, , ,2403,Disable isolation when building source distributions for a specific package
uv, __fish_uv_using_subcommand build, ,exclude-newer, , ,2404,Limit candidate packages to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand build, ,exclude-newer-package, , ,2405,Limit candidate packages for a specific package to those that were uploaded prior to the given date
uv, __fish_uv_using_subcommand build, ,link-mode,clone,@f @r,2406,The method to use when installing packages from the global cache
uv, __fish_uv_using_subcommand build, ,no-build-package, , ,2407,Don't build source distributions for a specific package
uv, __fish_uv_using_subcommand build, ,no-binary-package, , ,2408,Don't install pre-built wheels for a specific package
uv, __fish_uv_using_subcommand build, ,refresh-package, , ,2409,Refresh cached data for a specific package
uv, __fish_uv_using_subcommand build, ,cache-dir, ,@r,2410,Path to the cache directory
uv, __fish_uv_using_subcommand build, ,python-preference,only-managed,@f @r,2411, 
uv, __fish_uv_using_subcommand build, ,python-fetch,automatic,@f @r,2412,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand build, ,color,auto,@f @r,2413,Control the use of color in output
uv, __fish_uv_using_subcommand build, ,allow-insecure-host, , ,2414,Allow insecure connections to a host
uv, __fish_uv_using_subcommand build, ,preview-features, , ,2415,Enable experimental preview features
uv, __fish_uv_using_subcommand build, ,directory, ,@r,2416,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand build, ,project, ,@r,2417,Run the command within the given project directory
uv, __fish_uv_using_subcommand build, ,config-file, ,@r,2418,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand build, ,all-packages, , ,2419,Builds all packages in the workspace
uv, __fish_uv_using_subcommand build, ,sdist, , ,2420,Build a source distribution ('sdist') from the given directory
uv, __fish_uv_using_subcommand build, ,wheel, , ,2421,Build a binary distribution ('wheel') from the given directory
uv, __fish_uv_using_subcommand build, ,list, , ,2422,"When using the uv build backend, list the files that would be included when building"
uv, __fish_uv_using_subcommand build, ,build-logs, , ,2423, 
uv, __fish_uv_using_subcommand build, ,no-build-logs, , ,2424,Hide logs from the build backend
uv, __fish_uv_using_subcommand build, ,force-pep517, , ,2425,"Always build through PEP 517, don't use the fast path for the uv build backend"
uv, __fish_uv_using_subcommand build, ,clear, , ,2426,"Clear the output directory before the build, removing stale artifacts"
uv, __fish_uv_using_subcommand build, ,create-gitignore, , ,2427, 
uv, __fish_uv_using_subcommand build, ,no-create-gitignore, , ,2428,Do not create a `.gitignore` file in the output directory
uv, __fish_uv_using_subcommand build, ,require-hashes, , ,2429,Require a matching hash for each requirement
uv, __fish_uv_using_subcommand build, ,no-require-hashes, , ,2430, 
uv, __fish_uv_using_subcommand build, ,verify-hashes, , ,2431, 
uv, __fish_uv_using_subcommand build, ,no-verify-hashes, , ,2432,Disable validation of hashes in the requirements file
uv, __fish_uv_using_subcommand build, ,no-index, , ,2433,"Ignore the registry index (e.g., PyPI), instead relying on direct URL dependencies and those provided via `--find-links`"
uv, __fish_uv_using_subcommand build,U,upgrade, , ,2434,"Allow package upgrades, ignoring pinned versions in any existing output file. Implies `--refresh`"
uv, __fish_uv_using_subcommand build, ,no-upgrade, , ,2435, 
uv, __fish_uv_using_subcommand build, ,pre, , ,2436, 
uv, __fish_uv_using_subcommand build, ,no-build-isolation, , ,2437,Disable isolation when building source distributions
uv, __fish_uv_using_subcommand build, ,build-isolation, , ,2438, 
uv, __fish_uv_using_subcommand build, ,no-sources, , ,2439,"Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the standards-compliant, publishable package metadata, as opposed to using any workspace, Git, URL, or local path sources"
uv, __fish_uv_using_subcommand build, ,no-build, , ,2440,Don't build source distributions
uv, __fish_uv_using_subcommand build, ,build, , ,2441, 
uv, __fish_uv_using_subcommand build, ,no-binary, , ,2442,Don't install pre-built wheels
uv, __fish_uv_using_subcommand build, ,binary, , ,2443, 
uv, __fish_uv_using_subcommand build, ,refresh, , ,2444,Refresh all cached data
uv, __fish_uv_using_subcommand build, ,no-refresh, , ,2445, 
uv, __fish_uv_using_subcommand build,n,no-cache, , ,2446,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand build, ,managed-python, , ,2447,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand build, ,no-managed-python, , ,2448,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand build, ,allow-python-downloads, , ,2449,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand build, ,no-python-downloads, , ,2450,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand build,q,quiet, , ,2451,Use quiet output
uv, __fish_uv_using_subcommand build,v,verbose, , ,2452,Use verbose output
uv, __fish_uv_using_subcommand build, ,no-color, , ,2453,Disable colors
uv, __fish_uv_using_subcommand build, ,native-tls, , ,2454,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand build, ,no-native-tls, , ,2455, 
uv, __fish_uv_using_subcommand build, ,offline, , ,2456,Disable network access
uv, __fish_uv_using_subcommand build, ,no-offline, , ,2457, 
uv, __fish_uv_using_subcommand build, ,preview, , ,2458,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand build, ,no-preview, , ,2459, 
uv, __fish_uv_using_subcommand build, ,isolated, , ,2460,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand build, ,show-settings, , ,2461,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand build, ,no-progress, , ,2462,Hide all progress outputs
uv, __fish_uv_using_subcommand build, ,no-installer-metadata, , ,2463,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand build, ,no-config, , ,2464,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand build,h,help, , ,2465,Display the concise help for this command
uv, __fish_uv_using_subcommand publish, ,index, , ,2466,The name of an index in the configuration to use for publishing.
uv, __fish_uv_using_subcommand publish,u,username, , ,2467,The username for the upload
uv, __fish_uv_using_subcommand publish,p,password, , ,2468,The password for the upload
uv, __fish_uv_using_subcommand publish,t,token, , ,2469,The token for the upload
uv, __fish_uv_using_subcommand publish, ,trusted-publishing,automatic,@f @r,2470,Configure trusted publishing
uv, __fish_uv_using_subcommand publish, ,keyring-provider,disabled,@f @r,2471,Attempt to use `keyring` for authentication for remote requirements files
uv, __fish_uv_using_subcommand publish, ,publish-url, , ,2472,The URL of the upload endpoint (not the index URL)
uv, __fish_uv_using_subcommand publish, ,check-url, , ,2473,Check an index URL for existing files to skip duplicate uploads
uv, __fish_uv_using_subcommand publish, ,cache-dir, ,@r,2474,Path to the cache directory
uv, __fish_uv_using_subcommand publish, ,python-preference,only-managed,@f @r,2475, 
uv, __fish_uv_using_subcommand publish, ,python-fetch,automatic,@f @r,2476,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand publish, ,color,auto,@f @r,2477,Control the use of color in output
uv, __fish_uv_using_subcommand publish, ,allow-insecure-host, , ,2478,Allow insecure connections to a host
uv, __fish_uv_using_subcommand publish, ,preview-features, , ,2479,Enable experimental preview features
uv, __fish_uv_using_subcommand publish, ,directory, ,@r,2480,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand publish, ,project, ,@r,2481,Run the command within the given project directory
uv, __fish_uv_using_subcommand publish, ,config-file, ,@r,2482,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand publish, ,skip-existing, , ,2483, 
uv, __fish_uv_using_subcommand publish, ,dry-run, , ,2484,Perform a dry run without uploading files
uv, __fish_uv_using_subcommand publish, ,no-attestations, , ,2485,Do not upload attestations for the published files
uv, __fish_uv_using_subcommand publish,n,no-cache, , ,2486,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand publish, ,managed-python, , ,2487,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand publish, ,no-managed-python, , ,2488,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand publish, ,allow-python-downloads, , ,2489,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand publish, ,no-python-downloads, , ,2490,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand publish,q,quiet, , ,2491,Use quiet output
uv, __fish_uv_using_subcommand publish,v,verbose, , ,2492,Use verbose output
uv, __fish_uv_using_subcommand publish, ,no-color, , ,2493,Disable colors
uv, __fish_uv_using_subcommand publish, ,native-tls, , ,2494,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand publish, ,no-native-tls, , ,2495, 
uv, __fish_uv_using_subcommand publish, ,offline, , ,2496,Disable network access
uv, __fish_uv_using_subcommand publish, ,no-offline, , ,2497, 
uv, __fish_uv_using_subcommand publish, ,preview, , ,2498,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand publish, ,no-preview, , ,2499, 
uv, __fish_uv_using_subcommand publish, ,isolated, , ,2500,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand publish, ,show-settings, , ,2501,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand publish, ,no-progress, , ,2502,Hide all progress outputs
uv, __fish_uv_using_subcommand publish, ,no-installer-metadata, , ,2503,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand publish, ,no-config, , ,2504,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand publish,h,help, , ,2505,Display the concise help for this command
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,cache-dir, ,@r,2505,Path to the cache directory
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,python-preference,only-managed,@f @r,2505, 
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,python-fetch,automatic,@f @r,2505,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,color,auto,@f @r,2505,Control the use of color in output
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,allow-insecure-host, , ,2505,Allow insecure connections to a host
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,preview-features, , ,2505,Enable experimental preview features
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,directory, ,@r,2505,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,project, ,@r,2505,Run the command within the given project directory
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,config-file, ,@r,2505,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand workspace; and metadata dir list",n,no-cache, , ,2505,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,managed-python, , ,2505,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,no-managed-python, , ,2505,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,allow-python-downloads, , ,2505,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,no-python-downloads, , ,2505,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand workspace; and metadata dir list",q,quiet, , ,2505,Use quiet output
uv," __fish_uv_using_subcommand workspace; and metadata dir list",v,verbose, , ,2505,Use verbose output
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,no-color, , ,2505,Disable colors
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,native-tls, , ,2505,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,no-native-tls, , ,2505, 
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,offline, , ,2505,Disable network access
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,no-offline, , ,2505, 
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,preview, , ,2505,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,no-preview, , ,2505, 
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,isolated, , ,2505,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,show-settings, , ,2505,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,no-progress, , ,2505,Hide all progress outputs
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,no-installer-metadata, , ,2505,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand workspace; and metadata dir list", ,no-config, , ,2505,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand workspace; and metadata dir list",h,help, , ,2505,Display the concise help for this command
uv," __fish_uv_using_subcommand workspace; and metadata dir list", , ,metadata,@f,2505,View metadata about the current workspace
uv," __fish_uv_using_subcommand workspace; and metadata dir list", , ,dir,@f,2505,Display the path of a workspace member
uv," __fish_uv_using_subcommand workspace; and metadata dir list", , ,list,@f,2505,List the members of a workspace
uv," __fish_uv_using_subcommand workspace; and metadata", ,cache-dir, ,@r,2506,Path to the cache directory
uv," __fish_uv_using_subcommand workspace; and metadata", ,python-preference,only-managed,@f @r,2507, 
uv," __fish_uv_using_subcommand workspace; and metadata", ,python-fetch,automatic,@f @r,2508,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand workspace; and metadata", ,color,auto,@f @r,2509,Control the use of color in output
uv," __fish_uv_using_subcommand workspace; and metadata", ,allow-insecure-host, , ,2510,Allow insecure connections to a host
uv," __fish_uv_using_subcommand workspace; and metadata", ,preview-features, , ,2511,Enable experimental preview features
uv," __fish_uv_using_subcommand workspace; and metadata", ,directory, ,@r,2512,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand workspace; and metadata", ,project, ,@r,2513,Run the command within the given project directory
uv," __fish_uv_using_subcommand workspace; and metadata", ,config-file, ,@r,2514,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand workspace; and metadata",n,no-cache, , ,2515,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand workspace; and metadata", ,managed-python, , ,2516,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand workspace; and metadata", ,no-managed-python, , ,2517,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand workspace; and metadata", ,allow-python-downloads, , ,2518,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand workspace; and metadata", ,no-python-downloads, , ,2519,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand workspace; and metadata",q,quiet, , ,2520,Use quiet output
uv," __fish_uv_using_subcommand workspace; and metadata",v,verbose, , ,2521,Use verbose output
uv," __fish_uv_using_subcommand workspace; and metadata", ,no-color, , ,2522,Disable colors
uv," __fish_uv_using_subcommand workspace; and metadata", ,native-tls, , ,2523,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand workspace; and metadata", ,no-native-tls, , ,2524, 
uv," __fish_uv_using_subcommand workspace; and metadata", ,offline, , ,2525,Disable network access
uv," __fish_uv_using_subcommand workspace; and metadata", ,no-offline, , ,2526, 
uv," __fish_uv_using_subcommand workspace; and metadata", ,preview, , ,2527,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand workspace; and metadata", ,no-preview, , ,2528, 
uv," __fish_uv_using_subcommand workspace; and metadata", ,isolated, , ,2529,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand workspace; and metadata", ,show-settings, , ,2530,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand workspace; and metadata", ,no-progress, , ,2531,Hide all progress outputs
uv," __fish_uv_using_subcommand workspace; and metadata", ,no-installer-metadata, , ,2532,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand workspace; and metadata", ,no-config, , ,2533,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand workspace; and metadata",h,help, , ,2534,Display the concise help for this command
uv," __fish_uv_using_subcommand workspace; and dir", ,package, , ,2535,Display the path to a specific package in the workspace
uv," __fish_uv_using_subcommand workspace; and dir", ,cache-dir, ,@r,2536,Path to the cache directory
uv," __fish_uv_using_subcommand workspace; and dir", ,python-preference,only-managed,@f @r,2537, 
uv," __fish_uv_using_subcommand workspace; and dir", ,python-fetch,automatic,@f @r,2538,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand workspace; and dir", ,color,auto,@f @r,2539,Control the use of color in output
uv," __fish_uv_using_subcommand workspace; and dir", ,allow-insecure-host, , ,2540,Allow insecure connections to a host
uv," __fish_uv_using_subcommand workspace; and dir", ,preview-features, , ,2541,Enable experimental preview features
uv," __fish_uv_using_subcommand workspace; and dir", ,directory, ,@r,2542,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand workspace; and dir", ,project, ,@r,2543,Run the command within the given project directory
uv," __fish_uv_using_subcommand workspace; and dir", ,config-file, ,@r,2544,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand workspace; and dir",n,no-cache, , ,2545,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand workspace; and dir", ,managed-python, , ,2546,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand workspace; and dir", ,no-managed-python, , ,2547,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand workspace; and dir", ,allow-python-downloads, , ,2548,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand workspace; and dir", ,no-python-downloads, , ,2549,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand workspace; and dir",q,quiet, , ,2550,Use quiet output
uv," __fish_uv_using_subcommand workspace; and dir",v,verbose, , ,2551,Use verbose output
uv," __fish_uv_using_subcommand workspace; and dir", ,no-color, , ,2552,Disable colors
uv," __fish_uv_using_subcommand workspace; and dir", ,native-tls, , ,2553,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand workspace; and dir", ,no-native-tls, , ,2554, 
uv," __fish_uv_using_subcommand workspace; and dir", ,offline, , ,2555,Disable network access
uv," __fish_uv_using_subcommand workspace; and dir", ,no-offline, , ,2556, 
uv," __fish_uv_using_subcommand workspace; and dir", ,preview, , ,2557,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand workspace; and dir", ,no-preview, , ,2558, 
uv," __fish_uv_using_subcommand workspace; and dir", ,isolated, , ,2559,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand workspace; and dir", ,show-settings, , ,2560,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand workspace; and dir", ,no-progress, , ,2561,Hide all progress outputs
uv," __fish_uv_using_subcommand workspace; and dir", ,no-installer-metadata, , ,2562,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand workspace; and dir", ,no-config, , ,2563,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand workspace; and dir",h,help, , ,2564,Display the concise help for this command
uv," __fish_uv_using_subcommand workspace; and list", ,cache-dir, ,@r,2565,Path to the cache directory
uv," __fish_uv_using_subcommand workspace; and list", ,python-preference,only-managed,@f @r,2566, 
uv," __fish_uv_using_subcommand workspace; and list", ,python-fetch,automatic,@f @r,2567,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand workspace; and list", ,color,auto,@f @r,2568,Control the use of color in output
uv," __fish_uv_using_subcommand workspace; and list", ,allow-insecure-host, , ,2569,Allow insecure connections to a host
uv," __fish_uv_using_subcommand workspace; and list", ,preview-features, , ,2570,Enable experimental preview features
uv," __fish_uv_using_subcommand workspace; and list", ,directory, ,@r,2571,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand workspace; and list", ,project, ,@r,2572,Run the command within the given project directory
uv," __fish_uv_using_subcommand workspace; and list", ,config-file, ,@r,2573,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand workspace; and list", ,paths, , ,2574,Show paths instead of names
uv," __fish_uv_using_subcommand workspace; and list",n,no-cache, , ,2575,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand workspace; and list", ,managed-python, , ,2576,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand workspace; and list", ,no-managed-python, , ,2577,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand workspace; and list", ,allow-python-downloads, , ,2578,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand workspace; and list", ,no-python-downloads, , ,2579,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand workspace; and list",q,quiet, , ,2580,Use quiet output
uv," __fish_uv_using_subcommand workspace; and list",v,verbose, , ,2581,Use verbose output
uv," __fish_uv_using_subcommand workspace; and list", ,no-color, , ,2582,Disable colors
uv," __fish_uv_using_subcommand workspace; and list", ,native-tls, , ,2583,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand workspace; and list", ,no-native-tls, , ,2584, 
uv," __fish_uv_using_subcommand workspace; and list", ,offline, , ,2585,Disable network access
uv," __fish_uv_using_subcommand workspace; and list", ,no-offline, , ,2586, 
uv," __fish_uv_using_subcommand workspace; and list", ,preview, , ,2587,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand workspace; and list", ,no-preview, , ,2588, 
uv," __fish_uv_using_subcommand workspace; and list", ,isolated, , ,2589,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand workspace; and list", ,show-settings, , ,2590,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand workspace; and list", ,no-progress, , ,2591,Hide all progress outputs
uv," __fish_uv_using_subcommand workspace; and list", ,no-installer-metadata, , ,2592,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand workspace; and list", ,no-config, , ,2593,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand workspace; and list",h,help, , ,2594,Display the concise help for this command
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,cache-dir, ,@r,2594,Path to the cache directory
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,python-preference,only-managed,@f @r,2594, 
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,python-fetch,automatic,@f @r,2594,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,color,auto,@f @r,2594,Control the use of color in output
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,allow-insecure-host, , ,2594,Allow insecure connections to a host
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,preview-features, , ,2594,Enable experimental preview features
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,directory, ,@r,2594,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,project, ,@r,2594,Run the command within the given project directory
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,config-file, ,@r,2594,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable",n,no-cache, , ,2594,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,managed-python, , ,2594,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,no-managed-python, , ,2594,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,allow-python-downloads, , ,2594,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,no-python-downloads, , ,2594,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable",q,quiet, , ,2594,Use quiet output
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable",v,verbose, , ,2594,Use verbose output
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,no-color, , ,2594,Disable colors
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,native-tls, , ,2594,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,no-native-tls, , ,2594, 
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,offline, , ,2594,Disable network access
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,no-offline, , ,2594, 
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,preview, , ,2594,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,no-preview, , ,2594, 
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,isolated, , ,2594,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,show-settings, , ,2594,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,no-progress, , ,2594,Hide all progress outputs
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,no-installer-metadata, , ,2594,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", ,no-config, , ,2594,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable",h,help, , ,2594,Display the concise help for this command
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", , ,build-sdist,@f,2594,PEP 517 hook `build_sdist`
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", , ,build-wheel,@f,2594,PEP 517 hook `build_wheel`
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", , ,build-editable,@f,2594,PEP 660 hook `build_editable`
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", , ,get-requires-for-build-sdist,@f,2594,PEP 517 hook `get_requires_for_build_sdist`
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", , ,get-requires-for-build-wheel,@f,2594,PEP 517 hook `get_requires_for_build_wheel`
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", , ,prepare-metadata-for-build-wheel,@f,2594,PEP 517 hook `prepare_metadata_for_build_wheel`
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", , ,get-requires-for-build-editable,@f,2594,PEP 660 hook `get_requires_for_build_editable`
uv," __fish_uv_using_subcommand build-backend; and build-sdist build-wheel build-editable get-requires-for-build-sdist get-requires-for-build-wheel prepare-metadata-for-build-wheel get-requires-for-build-editable prepare-metadata-for-build-editable", , ,prepare-metadata-for-build-editable,@f,2594,PEP 660 hook `prepare_metadata_for_build_editable`
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,cache-dir, ,@r,2595,Path to the cache directory
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,python-preference,only-managed,@f @r,2596, 
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,python-fetch,automatic,@f @r,2597,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,color,auto,@f @r,2598,Control the use of color in output
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,allow-insecure-host, , ,2599,Allow insecure connections to a host
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,preview-features, , ,2600,Enable experimental preview features
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,directory, ,@r,2601,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,project, ,@r,2602,Run the command within the given project directory
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,config-file, ,@r,2603,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand build-backend; and build-sdist",n,no-cache, , ,2604,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,managed-python, , ,2605,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,no-managed-python, , ,2606,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,allow-python-downloads, , ,2607,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,no-python-downloads, , ,2608,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand build-backend; and build-sdist",q,quiet, , ,2609,Use quiet output
uv," __fish_uv_using_subcommand build-backend; and build-sdist",v,verbose, , ,2610,Use verbose output
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,no-color, , ,2611,Disable colors
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,native-tls, , ,2612,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,no-native-tls, , ,2613, 
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,offline, , ,2614,Disable network access
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,no-offline, , ,2615, 
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,preview, , ,2616,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,no-preview, , ,2617, 
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,isolated, , ,2618,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,show-settings, , ,2619,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,no-progress, , ,2620,Hide all progress outputs
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,no-installer-metadata, , ,2621,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand build-backend; and build-sdist", ,no-config, , ,2622,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand build-backend; and build-sdist",h,help, , ,2623,Display the concise help for this command
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,metadata-directory, ,@r,2624, 
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,cache-dir, ,@r,2625,Path to the cache directory
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,python-preference,only-managed,@f @r,2626, 
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,python-fetch,automatic,@f @r,2627,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,color,auto,@f @r,2628,Control the use of color in output
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,allow-insecure-host, , ,2629,Allow insecure connections to a host
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,preview-features, , ,2630,Enable experimental preview features
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,directory, ,@r,2631,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,project, ,@r,2632,Run the command within the given project directory
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,config-file, ,@r,2633,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand build-backend; and build-wheel",n,no-cache, , ,2634,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,managed-python, , ,2635,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,no-managed-python, , ,2636,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,allow-python-downloads, , ,2637,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,no-python-downloads, , ,2638,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand build-backend; and build-wheel",q,quiet, , ,2639,Use quiet output
uv," __fish_uv_using_subcommand build-backend; and build-wheel",v,verbose, , ,2640,Use verbose output
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,no-color, , ,2641,Disable colors
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,native-tls, , ,2642,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,no-native-tls, , ,2643, 
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,offline, , ,2644,Disable network access
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,no-offline, , ,2645, 
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,preview, , ,2646,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,no-preview, , ,2647, 
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,isolated, , ,2648,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,show-settings, , ,2649,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,no-progress, , ,2650,Hide all progress outputs
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,no-installer-metadata, , ,2651,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand build-backend; and build-wheel", ,no-config, , ,2652,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand build-backend; and build-wheel",h,help, , ,2653,Display the concise help for this command
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,metadata-directory, ,@r,2654, 
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,cache-dir, ,@r,2655,Path to the cache directory
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,python-preference,only-managed,@f @r,2656, 
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,python-fetch,automatic,@f @r,2657,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,color,auto,@f @r,2658,Control the use of color in output
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,allow-insecure-host, , ,2659,Allow insecure connections to a host
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,preview-features, , ,2660,Enable experimental preview features
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,directory, ,@r,2661,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,project, ,@r,2662,Run the command within the given project directory
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,config-file, ,@r,2663,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand build-backend; and build-editable",n,no-cache, , ,2664,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,managed-python, , ,2665,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,no-managed-python, , ,2666,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,allow-python-downloads, , ,2667,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,no-python-downloads, , ,2668,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand build-backend; and build-editable",q,quiet, , ,2669,Use quiet output
uv," __fish_uv_using_subcommand build-backend; and build-editable",v,verbose, , ,2670,Use verbose output
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,no-color, , ,2671,Disable colors
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,native-tls, , ,2672,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,no-native-tls, , ,2673, 
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,offline, , ,2674,Disable network access
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,no-offline, , ,2675, 
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,preview, , ,2676,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,no-preview, , ,2677, 
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,isolated, , ,2678,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,show-settings, , ,2679,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,no-progress, , ,2680,Hide all progress outputs
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,no-installer-metadata, , ,2681,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand build-backend; and build-editable", ,no-config, , ,2682,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand build-backend; and build-editable",h,help, , ,2683,Display the concise help for this command
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,cache-dir, ,@r,2684,Path to the cache directory
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,python-preference,only-managed,@f @r,2685, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,python-fetch,automatic,@f @r,2686,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,color,auto,@f @r,2687,Control the use of color in output
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,allow-insecure-host, , ,2688,Allow insecure connections to a host
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,preview-features, , ,2689,Enable experimental preview features
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,directory, ,@r,2690,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,project, ,@r,2691,Run the command within the given project directory
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,config-file, ,@r,2692,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist",n,no-cache, , ,2693,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,managed-python, , ,2694,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,no-managed-python, , ,2695,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,allow-python-downloads, , ,2696,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,no-python-downloads, , ,2697,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist",q,quiet, , ,2698,Use quiet output
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist",v,verbose, , ,2699,Use verbose output
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,no-color, , ,2700,Disable colors
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,native-tls, , ,2701,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,no-native-tls, , ,2702, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,offline, , ,2703,Disable network access
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,no-offline, , ,2704, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,preview, , ,2705,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,no-preview, , ,2706, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,isolated, , ,2707,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,show-settings, , ,2708,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,no-progress, , ,2709,Hide all progress outputs
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,no-installer-metadata, , ,2710,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist", ,no-config, , ,2711,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-sdist",h,help, , ,2712,Display the concise help for this command
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,cache-dir, ,@r,2713,Path to the cache directory
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,python-preference,only-managed,@f @r,2714, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,python-fetch,automatic,@f @r,2715,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,color,auto,@f @r,2716,Control the use of color in output
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,allow-insecure-host, , ,2717,Allow insecure connections to a host
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,preview-features, , ,2718,Enable experimental preview features
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,directory, ,@r,2719,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,project, ,@r,2720,Run the command within the given project directory
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,config-file, ,@r,2721,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel",n,no-cache, , ,2722,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,managed-python, , ,2723,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,no-managed-python, , ,2724,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,allow-python-downloads, , ,2725,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,no-python-downloads, , ,2726,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel",q,quiet, , ,2727,Use quiet output
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel",v,verbose, , ,2728,Use verbose output
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,no-color, , ,2729,Disable colors
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,native-tls, , ,2730,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,no-native-tls, , ,2731, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,offline, , ,2732,Disable network access
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,no-offline, , ,2733, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,preview, , ,2734,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,no-preview, , ,2735, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,isolated, , ,2736,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,show-settings, , ,2737,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,no-progress, , ,2738,Hide all progress outputs
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,no-installer-metadata, , ,2739,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel", ,no-config, , ,2740,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-wheel",h,help, , ,2741,Display the concise help for this command
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,cache-dir, ,@r,2742,Path to the cache directory
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,python-preference,only-managed,@f @r,2743, 
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,python-fetch,automatic,@f @r,2744,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,color,auto,@f @r,2745,Control the use of color in output
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,allow-insecure-host, , ,2746,Allow insecure connections to a host
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,preview-features, , ,2747,Enable experimental preview features
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,directory, ,@r,2748,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,project, ,@r,2749,Run the command within the given project directory
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,config-file, ,@r,2750,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel",n,no-cache, , ,2751,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,managed-python, , ,2752,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,no-managed-python, , ,2753,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,allow-python-downloads, , ,2754,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,no-python-downloads, , ,2755,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel",q,quiet, , ,2756,Use quiet output
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel",v,verbose, , ,2757,Use verbose output
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,no-color, , ,2758,Disable colors
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,native-tls, , ,2759,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,no-native-tls, , ,2760, 
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,offline, , ,2761,Disable network access
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,no-offline, , ,2762, 
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,preview, , ,2763,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,no-preview, , ,2764, 
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,isolated, , ,2765,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,show-settings, , ,2766,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,no-progress, , ,2767,Hide all progress outputs
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,no-installer-metadata, , ,2768,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel", ,no-config, , ,2769,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-wheel",h,help, , ,2770,Display the concise help for this command
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,cache-dir, ,@r,2771,Path to the cache directory
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,python-preference,only-managed,@f @r,2772, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,python-fetch,automatic,@f @r,2773,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,color,auto,@f @r,2774,Control the use of color in output
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,allow-insecure-host, , ,2775,Allow insecure connections to a host
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,preview-features, , ,2776,Enable experimental preview features
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,directory, ,@r,2777,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,project, ,@r,2778,Run the command within the given project directory
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,config-file, ,@r,2779,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable",n,no-cache, , ,2780,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,managed-python, , ,2781,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,no-managed-python, , ,2782,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,allow-python-downloads, , ,2783,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,no-python-downloads, , ,2784,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable",q,quiet, , ,2785,Use quiet output
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable",v,verbose, , ,2786,Use verbose output
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,no-color, , ,2787,Disable colors
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,native-tls, , ,2788,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,no-native-tls, , ,2789, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,offline, , ,2790,Disable network access
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,no-offline, , ,2791, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,preview, , ,2792,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,no-preview, , ,2793, 
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,isolated, , ,2794,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,show-settings, , ,2795,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,no-progress, , ,2796,Hide all progress outputs
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,no-installer-metadata, , ,2797,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable", ,no-config, , ,2798,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand build-backend; and get-requires-for-build-editable",h,help, , ,2799,Display the concise help for this command
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,cache-dir, ,@r,2800,Path to the cache directory
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,python-preference,only-managed,@f @r,2801, 
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,python-fetch,automatic,@f @r,2802,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,color,auto,@f @r,2803,Control the use of color in output
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,allow-insecure-host, , ,2804,Allow insecure connections to a host
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,preview-features, , ,2805,Enable experimental preview features
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,directory, ,@r,2806,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,project, ,@r,2807,Run the command within the given project directory
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,config-file, ,@r,2808,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable",n,no-cache, , ,2809,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,managed-python, , ,2810,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,no-managed-python, , ,2811,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,allow-python-downloads, , ,2812,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,no-python-downloads, , ,2813,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable",q,quiet, , ,2814,Use quiet output
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable",v,verbose, , ,2815,Use verbose output
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,no-color, , ,2816,Disable colors
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,native-tls, , ,2817,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,no-native-tls, , ,2818, 
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,offline, , ,2819,Disable network access
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,no-offline, , ,2820, 
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,preview, , ,2821,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,no-preview, , ,2822, 
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,isolated, , ,2823,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,show-settings, , ,2824,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,no-progress, , ,2825,Hide all progress outputs
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,no-installer-metadata, , ,2826,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable", ,no-config, , ,2827,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand build-backend; and prepare-metadata-for-build-editable",h,help, , ,2828,Display the concise help for this command
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,cache-dir, ,@r,2828,Path to the cache directory
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,python-preference,only-managed,@f @r,2828, 
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,python-fetch,automatic,@f @r,2828,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,color,auto,@f @r,2828,Control the use of color in output
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,allow-insecure-host, , ,2828,Allow insecure connections to a host
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,preview-features, , ,2828,Enable experimental preview features
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,directory, ,@r,2828,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,project, ,@r,2828,Run the command within the given project directory
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,config-file, ,@r,2828,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand cache; and clean prune dir size",n,no-cache, , ,2828,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,managed-python, , ,2828,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,no-managed-python, , ,2828,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,allow-python-downloads, , ,2828,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,no-python-downloads, , ,2828,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand cache; and clean prune dir size",q,quiet, , ,2828,Use quiet output
uv," __fish_uv_using_subcommand cache; and clean prune dir size",v,verbose, , ,2828,Use verbose output
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,no-color, , ,2828,Disable colors
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,native-tls, , ,2828,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,no-native-tls, , ,2828, 
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,offline, , ,2828,Disable network access
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,no-offline, , ,2828, 
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,preview, , ,2828,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,no-preview, , ,2828, 
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,isolated, , ,2828,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,show-settings, , ,2828,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,no-progress, , ,2828,Hide all progress outputs
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,no-installer-metadata, , ,2828,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand cache; and clean prune dir size", ,no-config, , ,2828,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand cache; and clean prune dir size",h,help, , ,2828,Display the concise help for this command
uv," __fish_uv_using_subcommand cache; and clean prune dir size", , ,clean,@f,2828,"Clear the cache, removing all entries or those linked to specific packages"
uv," __fish_uv_using_subcommand cache; and clean prune dir size", , ,prune,@f,2828,Prune all unreachable objects from the cache
uv," __fish_uv_using_subcommand cache; and clean prune dir size", , ,dir,@f,2828,Show the cache directory
uv," __fish_uv_using_subcommand cache; and clean prune dir size", , ,size,@f,2828,Show the cache size
uv," __fish_uv_using_subcommand cache; and clean", ,cache-dir, ,@r,2829,Path to the cache directory
uv," __fish_uv_using_subcommand cache; and clean", ,python-preference,only-managed,@f @r,2830, 
uv," __fish_uv_using_subcommand cache; and clean", ,python-fetch,automatic,@f @r,2831,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand cache; and clean", ,color,auto,@f @r,2832,Control the use of color in output
uv," __fish_uv_using_subcommand cache; and clean", ,allow-insecure-host, , ,2833,Allow insecure connections to a host
uv," __fish_uv_using_subcommand cache; and clean", ,preview-features, , ,2834,Enable experimental preview features
uv," __fish_uv_using_subcommand cache; and clean", ,directory, ,@r,2835,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand cache; and clean", ,project, ,@r,2836,Run the command within the given project directory
uv," __fish_uv_using_subcommand cache; and clean", ,config-file, ,@r,2837,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand cache; and clean", ,force, , ,2838,"Force removal of the cache, ignoring in-use checks"
uv," __fish_uv_using_subcommand cache; and clean",n,no-cache, , ,2839,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand cache; and clean", ,managed-python, , ,2840,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and clean", ,no-managed-python, , ,2841,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and clean", ,allow-python-downloads, , ,2842,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand cache; and clean", ,no-python-downloads, , ,2843,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand cache; and clean",q,quiet, , ,2844,Use quiet output
uv," __fish_uv_using_subcommand cache; and clean",v,verbose, , ,2845,Use verbose output
uv," __fish_uv_using_subcommand cache; and clean", ,no-color, , ,2846,Disable colors
uv," __fish_uv_using_subcommand cache; and clean", ,native-tls, , ,2847,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand cache; and clean", ,no-native-tls, , ,2848, 
uv," __fish_uv_using_subcommand cache; and clean", ,offline, , ,2849,Disable network access
uv," __fish_uv_using_subcommand cache; and clean", ,no-offline, , ,2850, 
uv," __fish_uv_using_subcommand cache; and clean", ,preview, , ,2851,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand cache; and clean", ,no-preview, , ,2852, 
uv," __fish_uv_using_subcommand cache; and clean", ,isolated, , ,2853,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand cache; and clean", ,show-settings, , ,2854,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand cache; and clean", ,no-progress, , ,2855,Hide all progress outputs
uv," __fish_uv_using_subcommand cache; and clean", ,no-installer-metadata, , ,2856,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand cache; and clean", ,no-config, , ,2857,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand cache; and clean",h,help, , ,2858,Display the concise help for this command
uv," __fish_uv_using_subcommand cache; and prune", ,cache-dir, ,@r,2859,Path to the cache directory
uv," __fish_uv_using_subcommand cache; and prune", ,python-preference,only-managed,@f @r,2860, 
uv," __fish_uv_using_subcommand cache; and prune", ,python-fetch,automatic,@f @r,2861,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand cache; and prune", ,color,auto,@f @r,2862,Control the use of color in output
uv," __fish_uv_using_subcommand cache; and prune", ,allow-insecure-host, , ,2863,Allow insecure connections to a host
uv," __fish_uv_using_subcommand cache; and prune", ,preview-features, , ,2864,Enable experimental preview features
uv," __fish_uv_using_subcommand cache; and prune", ,directory, ,@r,2865,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand cache; and prune", ,project, ,@r,2866,Run the command within the given project directory
uv," __fish_uv_using_subcommand cache; and prune", ,config-file, ,@r,2867,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand cache; and prune", ,ci, , ,2868,"Optimize the cache for persistence in a continuous integration environment, like GitHub Actions"
uv," __fish_uv_using_subcommand cache; and prune", ,force, , ,2869,"Force removal of the cache, ignoring in-use checks"
uv," __fish_uv_using_subcommand cache; and prune",n,no-cache, , ,2870,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand cache; and prune", ,managed-python, , ,2871,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and prune", ,no-managed-python, , ,2872,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and prune", ,allow-python-downloads, , ,2873,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand cache; and prune", ,no-python-downloads, , ,2874,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand cache; and prune",q,quiet, , ,2875,Use quiet output
uv," __fish_uv_using_subcommand cache; and prune",v,verbose, , ,2876,Use verbose output
uv," __fish_uv_using_subcommand cache; and prune", ,no-color, , ,2877,Disable colors
uv," __fish_uv_using_subcommand cache; and prune", ,native-tls, , ,2878,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand cache; and prune", ,no-native-tls, , ,2879, 
uv," __fish_uv_using_subcommand cache; and prune", ,offline, , ,2880,Disable network access
uv," __fish_uv_using_subcommand cache; and prune", ,no-offline, , ,2881, 
uv," __fish_uv_using_subcommand cache; and prune", ,preview, , ,2882,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand cache; and prune", ,no-preview, , ,2883, 
uv," __fish_uv_using_subcommand cache; and prune", ,isolated, , ,2884,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand cache; and prune", ,show-settings, , ,2885,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand cache; and prune", ,no-progress, , ,2886,Hide all progress outputs
uv," __fish_uv_using_subcommand cache; and prune", ,no-installer-metadata, , ,2887,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand cache; and prune", ,no-config, , ,2888,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand cache; and prune",h,help, , ,2889,Display the concise help for this command
uv," __fish_uv_using_subcommand cache; and dir", ,cache-dir, ,@r,2890,Path to the cache directory
uv," __fish_uv_using_subcommand cache; and dir", ,python-preference,only-managed,@f @r,2891, 
uv," __fish_uv_using_subcommand cache; and dir", ,python-fetch,automatic,@f @r,2892,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand cache; and dir", ,color,auto,@f @r,2893,Control the use of color in output
uv," __fish_uv_using_subcommand cache; and dir", ,allow-insecure-host, , ,2894,Allow insecure connections to a host
uv," __fish_uv_using_subcommand cache; and dir", ,preview-features, , ,2895,Enable experimental preview features
uv," __fish_uv_using_subcommand cache; and dir", ,directory, ,@r,2896,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand cache; and dir", ,project, ,@r,2897,Run the command within the given project directory
uv," __fish_uv_using_subcommand cache; and dir", ,config-file, ,@r,2898,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand cache; and dir",n,no-cache, , ,2899,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand cache; and dir", ,managed-python, , ,2900,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and dir", ,no-managed-python, , ,2901,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and dir", ,allow-python-downloads, , ,2902,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand cache; and dir", ,no-python-downloads, , ,2903,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand cache; and dir",q,quiet, , ,2904,Use quiet output
uv," __fish_uv_using_subcommand cache; and dir",v,verbose, , ,2905,Use verbose output
uv," __fish_uv_using_subcommand cache; and dir", ,no-color, , ,2906,Disable colors
uv," __fish_uv_using_subcommand cache; and dir", ,native-tls, , ,2907,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand cache; and dir", ,no-native-tls, , ,2908, 
uv," __fish_uv_using_subcommand cache; and dir", ,offline, , ,2909,Disable network access
uv," __fish_uv_using_subcommand cache; and dir", ,no-offline, , ,2910, 
uv," __fish_uv_using_subcommand cache; and dir", ,preview, , ,2911,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand cache; and dir", ,no-preview, , ,2912, 
uv," __fish_uv_using_subcommand cache; and dir", ,isolated, , ,2913,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand cache; and dir", ,show-settings, , ,2914,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand cache; and dir", ,no-progress, , ,2915,Hide all progress outputs
uv," __fish_uv_using_subcommand cache; and dir", ,no-installer-metadata, , ,2916,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand cache; and dir", ,no-config, , ,2917,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand cache; and dir",h,help, , ,2918,Display the concise help for this command
uv," __fish_uv_using_subcommand cache; and size", ,cache-dir, ,@r,2919,Path to the cache directory
uv," __fish_uv_using_subcommand cache; and size", ,python-preference,only-managed,@f @r,2920, 
uv," __fish_uv_using_subcommand cache; and size", ,python-fetch,automatic,@f @r,2921,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand cache; and size", ,color,auto,@f @r,2922,Control the use of color in output
uv," __fish_uv_using_subcommand cache; and size", ,allow-insecure-host, , ,2923,Allow insecure connections to a host
uv," __fish_uv_using_subcommand cache; and size", ,preview-features, , ,2924,Enable experimental preview features
uv," __fish_uv_using_subcommand cache; and size", ,directory, ,@r,2925,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand cache; and size", ,project, ,@r,2926,Run the command within the given project directory
uv," __fish_uv_using_subcommand cache; and size", ,config-file, ,@r,2927,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand cache; and size",H,human, , ,2928,"Display the cache size in human-readable format (e.g., `1.2 GiB` instead of raw bytes)"
uv," __fish_uv_using_subcommand cache; and size",n,no-cache, , ,2929,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand cache; and size", ,managed-python, , ,2930,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and size", ,no-managed-python, , ,2931,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand cache; and size", ,allow-python-downloads, , ,2932,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand cache; and size", ,no-python-downloads, , ,2933,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand cache; and size",q,quiet, , ,2934,Use quiet output
uv," __fish_uv_using_subcommand cache; and size",v,verbose, , ,2935,Use verbose output
uv," __fish_uv_using_subcommand cache; and size", ,no-color, , ,2936,Disable colors
uv," __fish_uv_using_subcommand cache; and size", ,native-tls, , ,2937,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand cache; and size", ,no-native-tls, , ,2938, 
uv," __fish_uv_using_subcommand cache; and size", ,offline, , ,2939,Disable network access
uv," __fish_uv_using_subcommand cache; and size", ,no-offline, , ,2940, 
uv," __fish_uv_using_subcommand cache; and size", ,preview, , ,2941,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand cache; and size", ,no-preview, , ,2942, 
uv," __fish_uv_using_subcommand cache; and size", ,isolated, , ,2943,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand cache; and size", ,show-settings, , ,2944,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand cache; and size", ,no-progress, , ,2945,Hide all progress outputs
uv," __fish_uv_using_subcommand cache; and size", ,no-installer-metadata, , ,2946,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand cache; and size", ,no-config, , ,2947,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand cache; and size",h,help, , ,2948,Display the concise help for this command
uv," __fish_uv_using_subcommand self; and update version", ,cache-dir, ,@r,2948,Path to the cache directory
uv," __fish_uv_using_subcommand self; and update version", ,python-preference,only-managed,@f @r,2948, 
uv," __fish_uv_using_subcommand self; and update version", ,python-fetch,automatic,@f @r,2948,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand self; and update version", ,color,auto,@f @r,2948,Control the use of color in output
uv," __fish_uv_using_subcommand self; and update version", ,allow-insecure-host, , ,2948,Allow insecure connections to a host
uv," __fish_uv_using_subcommand self; and update version", ,preview-features, , ,2948,Enable experimental preview features
uv," __fish_uv_using_subcommand self; and update version", ,directory, ,@r,2948,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand self; and update version", ,project, ,@r,2948,Run the command within the given project directory
uv," __fish_uv_using_subcommand self; and update version", ,config-file, ,@r,2948,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand self; and update version",n,no-cache, , ,2948,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand self; and update version", ,managed-python, , ,2948,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand self; and update version", ,no-managed-python, , ,2948,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand self; and update version", ,allow-python-downloads, , ,2948,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand self; and update version", ,no-python-downloads, , ,2948,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand self; and update version",q,quiet, , ,2948,Use quiet output
uv," __fish_uv_using_subcommand self; and update version",v,verbose, , ,2948,Use verbose output
uv," __fish_uv_using_subcommand self; and update version", ,no-color, , ,2948,Disable colors
uv," __fish_uv_using_subcommand self; and update version", ,native-tls, , ,2948,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand self; and update version", ,no-native-tls, , ,2948, 
uv," __fish_uv_using_subcommand self; and update version", ,offline, , ,2948,Disable network access
uv," __fish_uv_using_subcommand self; and update version", ,no-offline, , ,2948, 
uv," __fish_uv_using_subcommand self; and update version", ,preview, , ,2948,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand self; and update version", ,no-preview, , ,2948, 
uv," __fish_uv_using_subcommand self; and update version", ,isolated, , ,2948,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand self; and update version", ,show-settings, , ,2948,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand self; and update version", ,no-progress, , ,2948,Hide all progress outputs
uv," __fish_uv_using_subcommand self; and update version", ,no-installer-metadata, , ,2948,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand self; and update version", ,no-config, , ,2948,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand self; and update version",h,help, , ,2948,Display the concise help for this command
uv," __fish_uv_using_subcommand self; and update version", , ,update,@f,2948,Update uv
uv," __fish_uv_using_subcommand self; and update version", , ,version,@f,2948,Display uv's version
uv," __fish_uv_using_subcommand self; and update", ,token, , ,2949,A GitHub token for authentication. A token is not required but can be used to reduce the chance of encountering rate limits
uv," __fish_uv_using_subcommand self; and update", ,cache-dir, ,@r,2950,Path to the cache directory
uv," __fish_uv_using_subcommand self; and update", ,python-preference,only-managed,@f @r,2951, 
uv," __fish_uv_using_subcommand self; and update", ,python-fetch,automatic,@f @r,2952,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand self; and update", ,color,auto,@f @r,2953,Control the use of color in output
uv," __fish_uv_using_subcommand self; and update", ,allow-insecure-host, , ,2954,Allow insecure connections to a host
uv," __fish_uv_using_subcommand self; and update", ,preview-features, , ,2955,Enable experimental preview features
uv," __fish_uv_using_subcommand self; and update", ,directory, ,@r,2956,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand self; and update", ,project, ,@r,2957,Run the command within the given project directory
uv," __fish_uv_using_subcommand self; and update", ,config-file, ,@r,2958,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand self; and update", ,dry-run, , ,2959,Run without performing the update
uv," __fish_uv_using_subcommand self; and update",n,no-cache, , ,2960,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand self; and update", ,managed-python, , ,2961,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand self; and update", ,no-managed-python, , ,2962,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand self; and update", ,allow-python-downloads, , ,2963,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand self; and update", ,no-python-downloads, , ,2964,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand self; and update",q,quiet, , ,2965,Use quiet output
uv," __fish_uv_using_subcommand self; and update",v,verbose, , ,2966,Use verbose output
uv," __fish_uv_using_subcommand self; and update", ,no-color, , ,2967,Disable colors
uv," __fish_uv_using_subcommand self; and update", ,native-tls, , ,2968,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand self; and update", ,no-native-tls, , ,2969, 
uv," __fish_uv_using_subcommand self; and update", ,offline, , ,2970,Disable network access
uv," __fish_uv_using_subcommand self; and update", ,no-offline, , ,2971, 
uv," __fish_uv_using_subcommand self; and update", ,preview, , ,2972,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand self; and update", ,no-preview, , ,2973, 
uv," __fish_uv_using_subcommand self; and update", ,isolated, , ,2974,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand self; and update", ,show-settings, , ,2975,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand self; and update", ,no-progress, , ,2976,Hide all progress outputs
uv," __fish_uv_using_subcommand self; and update", ,no-installer-metadata, , ,2977,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand self; and update", ,no-config, , ,2978,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand self; and update",h,help, , ,2979,Display the concise help for this command
uv," __fish_uv_using_subcommand self; and version", ,output-format,text,@f @r,2980, 
uv," __fish_uv_using_subcommand self; and version", ,cache-dir, ,@r,2981,Path to the cache directory
uv," __fish_uv_using_subcommand self; and version", ,python-preference,only-managed,@f @r,2982, 
uv," __fish_uv_using_subcommand self; and version", ,python-fetch,automatic,@f @r,2983,Deprecated version of [`Self::python_downloads`]
uv," __fish_uv_using_subcommand self; and version", ,color,auto,@f @r,2984,Control the use of color in output
uv," __fish_uv_using_subcommand self; and version", ,allow-insecure-host, , ,2985,Allow insecure connections to a host
uv," __fish_uv_using_subcommand self; and version", ,preview-features, , ,2986,Enable experimental preview features
uv," __fish_uv_using_subcommand self; and version", ,directory, ,@r,2987,Change to the given directory prior to running the command
uv," __fish_uv_using_subcommand self; and version", ,project, ,@r,2988,Run the command within the given project directory
uv," __fish_uv_using_subcommand self; and version", ,config-file, ,@r,2989,The path to a `uv.toml` file to use for configuration
uv," __fish_uv_using_subcommand self; and version", ,short, , ,2990,Only print the version
uv," __fish_uv_using_subcommand self; and version",n,no-cache, , ,2991,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv," __fish_uv_using_subcommand self; and version", ,managed-python, , ,2992,Require use of uv-managed Python versions
uv," __fish_uv_using_subcommand self; and version", ,no-managed-python, , ,2993,Disable use of uv-managed Python versions
uv," __fish_uv_using_subcommand self; and version", ,allow-python-downloads, , ,2994,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv," __fish_uv_using_subcommand self; and version", ,no-python-downloads, , ,2995,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv," __fish_uv_using_subcommand self; and version",q,quiet, , ,2996,Use quiet output
uv," __fish_uv_using_subcommand self; and version",v,verbose, , ,2997,Use verbose output
uv," __fish_uv_using_subcommand self; and version", ,no-color, , ,2998,Disable colors
uv," __fish_uv_using_subcommand self; and version", ,native-tls, , ,2999,Whether to load TLS certificates from the platform's native certificate store
uv," __fish_uv_using_subcommand self; and version", ,no-native-tls, , ,3000, 
uv," __fish_uv_using_subcommand self; and version", ,offline, , ,3001,Disable network access
uv," __fish_uv_using_subcommand self; and version", ,no-offline, , ,3002, 
uv," __fish_uv_using_subcommand self; and version", ,preview, , ,3003,Whether to enable all experimental preview features
uv," __fish_uv_using_subcommand self; and version", ,no-preview, , ,3004, 
uv," __fish_uv_using_subcommand self; and version", ,isolated, , ,3005,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv," __fish_uv_using_subcommand self; and version", ,show-settings, , ,3006,Show the resolved settings for the current command
uv," __fish_uv_using_subcommand self; and version", ,no-progress, , ,3007,Hide all progress outputs
uv," __fish_uv_using_subcommand self; and version", ,no-installer-metadata, , ,3008,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv," __fish_uv_using_subcommand self; and version", ,no-config, , ,3009,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv," __fish_uv_using_subcommand self; and version",h,help, , ,3010,Display the concise help for this command
uv, __fish_uv_using_subcommand clean, ,cache-dir, ,@r,3011,Path to the cache directory
uv, __fish_uv_using_subcommand clean, ,python-preference,only-managed,@f @r,3012, 
uv, __fish_uv_using_subcommand clean, ,python-fetch,automatic,@f @r,3013,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand clean, ,color,auto,@f @r,3014,Control the use of color in output
uv, __fish_uv_using_subcommand clean, ,allow-insecure-host, , ,3015,Allow insecure connections to a host
uv, __fish_uv_using_subcommand clean, ,preview-features, , ,3016,Enable experimental preview features
uv, __fish_uv_using_subcommand clean, ,directory, ,@r,3017,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand clean, ,project, ,@r,3018,Run the command within the given project directory
uv, __fish_uv_using_subcommand clean, ,config-file, ,@r,3019,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand clean, ,force, , ,3020,"Force removal of the cache, ignoring in-use checks"
uv, __fish_uv_using_subcommand clean,n,no-cache, , ,3021,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand clean, ,managed-python, , ,3022,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand clean, ,no-managed-python, , ,3023,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand clean, ,allow-python-downloads, , ,3024,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand clean, ,no-python-downloads, , ,3025,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand clean,q,quiet, , ,3026,Use quiet output
uv, __fish_uv_using_subcommand clean,v,verbose, , ,3027,Use verbose output
uv, __fish_uv_using_subcommand clean, ,no-color, , ,3028,Disable colors
uv, __fish_uv_using_subcommand clean, ,native-tls, , ,3029,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand clean, ,no-native-tls, , ,3030, 
uv, __fish_uv_using_subcommand clean, ,offline, , ,3031,Disable network access
uv, __fish_uv_using_subcommand clean, ,no-offline, , ,3032, 
uv, __fish_uv_using_subcommand clean, ,preview, , ,3033,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand clean, ,no-preview, , ,3034, 
uv, __fish_uv_using_subcommand clean, ,isolated, , ,3035,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand clean, ,show-settings, , ,3036,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand clean, ,no-progress, , ,3037,Hide all progress outputs
uv, __fish_uv_using_subcommand clean, ,no-installer-metadata, , ,3038,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand clean, ,no-config, , ,3039,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand clean,h,help, , ,3040,Display the concise help for this command
uv, __fish_uv_using_subcommand generate-shell-completion, ,cache-dir, ,@r,3041, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,python-preference,only-managed,@f @r,3042, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,color,auto,@f @r,3043, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,config-file, ,@r,3044, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,python-fetch,automatic,@f @r,3045,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand generate-shell-completion, ,allow-insecure-host, , ,3046,Allow insecure connections to a host
uv, __fish_uv_using_subcommand generate-shell-completion, ,preview-features, , ,3047,Enable experimental preview features
uv, __fish_uv_using_subcommand generate-shell-completion, ,directory, ,@r,3048,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand generate-shell-completion, ,project, ,@r,3049,Run the command within the given project directory
uv, __fish_uv_using_subcommand generate-shell-completion,n,no-cache, , ,3050, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,no-python-downloads, , ,3051, 
uv, __fish_uv_using_subcommand generate-shell-completion,q,quiet, , ,3052, 
uv, __fish_uv_using_subcommand generate-shell-completion,v,verbose, , ,3053, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,native-tls, , ,3054, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,offline, , ,3055, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,no-progress, , ,3056, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,no-config, , ,3057, 
uv, __fish_uv_using_subcommand generate-shell-completion,h,help, , ,3058, 
uv, __fish_uv_using_subcommand generate-shell-completion,V,version, , ,3059, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,managed-python, , ,3060,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand generate-shell-completion, ,no-managed-python, , ,3061,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand generate-shell-completion, ,allow-python-downloads, , ,3062,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand generate-shell-completion, ,no-color, , ,3063,Disable colors
uv, __fish_uv_using_subcommand generate-shell-completion, ,no-native-tls, , ,3064, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,no-offline, , ,3065, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,preview, , ,3066,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand generate-shell-completion, ,no-preview, , ,3067, 
uv, __fish_uv_using_subcommand generate-shell-completion, ,isolated, , ,3068,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand generate-shell-completion, ,show-settings, , ,3069,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand generate-shell-completion, ,no-installer-metadata, , ,3070,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand help, ,cache-dir, ,@r,3071,Path to the cache directory
uv, __fish_uv_using_subcommand help, ,python-preference,only-managed,@f @r,3072, 
uv, __fish_uv_using_subcommand help, ,python-fetch,automatic,@f @r,3073,Deprecated version of [`Self::python_downloads`]
uv, __fish_uv_using_subcommand help, ,color,auto,@f @r,3074,Control the use of color in output
uv, __fish_uv_using_subcommand help, ,allow-insecure-host, , ,3075,Allow insecure connections to a host
uv, __fish_uv_using_subcommand help, ,preview-features, , ,3076,Enable experimental preview features
uv, __fish_uv_using_subcommand help, ,directory, ,@r,3077,Change to the given directory prior to running the command
uv, __fish_uv_using_subcommand help, ,project, ,@r,3078,Run the command within the given project directory
uv, __fish_uv_using_subcommand help, ,config-file, ,@r,3079,The path to a `uv.toml` file to use for configuration
uv, __fish_uv_using_subcommand help, ,no-pager, , ,3080,Disable pager when printing help
uv, __fish_uv_using_subcommand help,n,no-cache, , ,3081,"Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation"
uv, __fish_uv_using_subcommand help, ,managed-python, , ,3082,Require use of uv-managed Python versions
uv, __fish_uv_using_subcommand help, ,no-managed-python, , ,3083,Disable use of uv-managed Python versions
uv, __fish_uv_using_subcommand help, ,allow-python-downloads, , ,3084,Allow automatically downloading Python when required. [env: 'UV_PYTHON_DOWNLOADS=auto']
uv, __fish_uv_using_subcommand help, ,no-python-downloads, , ,3085,Disable automatic downloads of Python. [env: 'UV_PYTHON_DOWNLOADS=never']
uv, __fish_uv_using_subcommand help,q,quiet, , ,3086,Use quiet output
uv, __fish_uv_using_subcommand help,v,verbose, , ,3087,Use verbose output
uv, __fish_uv_using_subcommand help, ,no-color, , ,3088,Disable colors
uv, __fish_uv_using_subcommand help, ,native-tls, , ,3089,Whether to load TLS certificates from the platform's native certificate store
uv, __fish_uv_using_subcommand help, ,no-native-tls, , ,3090, 
uv, __fish_uv_using_subcommand help, ,offline, , ,3091,Disable network access
uv, __fish_uv_using_subcommand help, ,no-offline, , ,3092, 
uv, __fish_uv_using_subcommand help, ,preview, , ,3093,Whether to enable all experimental preview features
uv, __fish_uv_using_subcommand help, ,no-preview, , ,3094, 
uv, __fish_uv_using_subcommand help, ,isolated, , ,3095,Avoid discovering a `pyproject.toml` or `uv.toml` file
uv, __fish_uv_using_subcommand help, ,show-settings, , ,3096,Show the resolved settings for the current command
uv, __fish_uv_using_subcommand help, ,no-progress, , ,3097,Hide all progress outputs
uv, __fish_uv_using_subcommand help, ,no-installer-metadata, , ,3098,"Skip writing `uv` installer metadata files (e.g., `INSTALLER`, `REQUESTED`, and `direct_url.json`) to site-packages `.dist-info` directories"
uv, __fish_uv_using_subcommand help, ,no-config, , ,3099,"Avoid discovering configuration files (`pyproject.toml`, `uv.toml`)"
uv, __fish_uv_using_subcommand help,h,help, , ,3100,Display the concise help for this command