summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.0105
blob: fe689753b70ef0c13a0145b7e60ae3ab9c75fe5c (plain)
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
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
To: vim_dev@googlegroups.com
Subject: Patch 8.1.0105
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 8.1.0105
Problem:    All tab stops are the same.
Solution:   Add the variable tabstop feature. (Christian Brabandt,
            closes #2711)
Files:	    runtime/doc/change.txt, runtime/doc/options.txt,
            runtime/doc/various.txt, runtime/optwin.vim, src/beval.c,
            src/beval.h, src/buffer.c, src/charset.c, src/edit.c,
            src/evalfunc.c, src/ex_cmds.c, src/feature.h, src/gui_beval.c,
            src/gui_w32.c, src/hardcopy.c, src/message.c, src/misc1.c,
            src/ops.c, src/option.c, src/option.h, src/proto/misc1.pro,
            src/proto/option.pro, src/screen.c, src/structs.h,
            src/testdir/Make_all.mak, src/testdir/gen_opt_test.vim,
            src/testdir/test_breakindent.vim, src/testdir/test_vartabs.vim,
            src/version.c, src/workshop.c, src/Makefile


*** ../vim-8.1.0104/runtime/doc/change.txt	2018-05-17 13:40:51.000000000 +0200
--- runtime/doc/change.txt	2018-06-23 17:41:10.096366118 +0200
***************
*** 987,992 ****
--- 987,997 ----
  			this (that's a good habit anyway).
  			`:retab!` may also change a sequence of spaces by
  			<Tab> characters, which can mess up a printf().
+ 			If the |+vartabs| feature is enabled then a list of
+ 			tab widths separated by commas may be used in place of
+ 			a single tabstop.  Each value in the list represents
+ 			the width of one tabstop, except the final value which
+ 			applies to all following tabstops.
  			{not in Vi}
  
  							*retab-example*
*** ../vim-8.1.0104/runtime/doc/options.txt	2018-06-03 14:42:17.832505129 +0200
--- runtime/doc/options.txt	2018-06-23 17:41:10.100366093 +0200
***************
*** 7172,7177 ****
--- 7172,7181 ----
  	set.
  	NOTE: This option is set to 0 when 'compatible' is set.
  
+ 	If Vim is compiled with the |+vartabs| feature then the value of
+ 	'softtabstop' will be ignored if |'varsofttabstop'| is set to
+ 	anything other than an empty string.
+ 
  						*'spell'* *'nospell'*
  'spell'			boolean	(default off)
  			local to window
***************
*** 7723,7728 ****
--- 7727,7736 ----
  	   though.  Otherwise aligned comments will be wrong when 'tabstop' is
  	   changed.
  
+ 	If Vim is compiled with the |+vartabs| feature then the value of
+ 	'tabstop' will be ignored if |'vartabstop'| is set to anything other
+ 	than an empty string.
+ 
  			*'tagbsearch'* *'tbs'* *'notagbsearch'* *'notbs'*
  'tagbsearch' 'tbs'	boolean	(default on)
  			global
***************
*** 8468,8473 ****
--- 8476,8519 ----
  	written to disk (see |crash-recovery|).  Also used for the
  	|CursorHold| autocommand event.
  
+ 					*'varsofttabstop'* *'vsts'*
+ 'varsofttabstop' 'vsts'	string	(default "")
+ 			local to buffer
+ 			{only available when compiled with the |+vartabs|
+ 			feature}
+ 			{not in Vi}
+ 	A list of the number of spaces that a <Tab> counts for while editing,
+ 	such as inserting a <Tab> or using <BS>.  It "feels" like variable-
+ 	width <Tab>s are being inserted, while in fact a mixture of spaces
+ 	and <Tab>s is used.  Tab widths are separated with commas, with the
+ 	final value applying to all subsequent tabs.
+ 
+ 	For example, when editing assembly language files where statements
+ 	start in the 8th column and comments in the 40th, it may be useful
+ 	to use the following: >
+ 		:set varsofttabstop=8,32,8
+ <	This will set soft tabstops at the 8th and 40th columns, and at every
+ 	8th column thereafter.
+ 
+ 	Note that the value of |'softtabstop'| will be ignored while
+ 	'varsofttabstop' is set.
+ 
+ 						*'vartabstop'* *'vts'*
+ 'vartabstop' 'vts'	string	(default "")
+ 			local to buffer
+ 			{only available when compiled with the |+vartabs|
+ 			feature}
+ 			{not in Vi}
+ 	A list of the number of spaces that a <Tab> in the file counts for,
+ 	separated by commas.  Each value corresponds to one tab, with the
+ 	final value applying to all subsequent tabs. For example: >
+ 		:set vartabstop=4,20,10,8
+ <	This will make the first tab 4 spaces wide, the second 20 spaces,
+ 	the third 10 spaces, and all following tabs 8 spaces.
+ 
+ 	Note that the value of |'tabstop'| will be ignored while 'vartabstop'
+ 	is set.
+ 
  						*'verbose'* *'vbs'*
  'verbose' 'vbs'		number	(default 0)
  			global
*** ../vim-8.1.0104/runtime/doc/various.txt	2018-05-17 13:42:04.000000000 +0200
--- runtime/doc/various.txt	2018-06-23 17:41:10.100366093 +0200
***************
*** 453,458 ****
--- 453,459 ----
  N  *+title*		Setting the window 'title' and 'icon'
  N  *+toolbar*		|gui-toolbar|
  N  *+user_commands*	User-defined commands. |user-commands|
+ B  *+vartabs*		Variable-width tabstops. |'vartabstop'|
  N  *+viminfo*		|'viminfo'|
     *+vertsplit*		Vertically split windows |:vsplit|; Always enabled
  			since 8.0.1118.
*** ../vim-8.1.0104/runtime/optwin.vim	2018-05-15 21:39:18.000000000 +0200
--- runtime/optwin.vim	2018-06-23 17:41:10.100366093 +0200
***************
*** 856,861 ****
--- 856,869 ----
  call append("$", "shiftwidth\tnumber of spaces used for each step of (auto)indent")
  call append("$", "\t(local to buffer)")
  call <SID>OptionL("sw")
+ if has("vartabs")
+   call append("$", "vartabstop\tlist of number of spaces a tab counts for")
+   call append("$", "\t(local to buffer)")
+   call <SID>OptionL("vts")
+   call append("$", "varsofttabstop\tlist of number of spaces a soft tabsstop counts for")
+   call append("$", "\t(local to buffer)")
+   call <SID>OptionL("vsts")
+ endif
  call append("$", "smarttab\ta <Tab> in an indent inserts 'shiftwidth' spaces")
  call <SID>BinOptionG("sta", &sta)
  call append("$", "softtabstop\tif non-zero, number of spaces to insert for a <Tab>")
*** ../vim-8.1.0104/src/beval.c	2018-02-06 22:46:29.000000000 +0100
--- src/beval.c	2018-06-23 18:34:30.918950814 +0200
***************
*** 124,129 ****
--- 124,134 ----
  		*lnump = lnum;
  		*textp = lbuf;
  		*colp = col;
+ #ifdef FEAT_VARTABS
+ 		if (beval->vts)
+ 		    vim_free(beval->vts);
+ 		beval->vts = tabstop_copy(wp->w_buffer->b_p_vts_array);
+ #endif
  		beval->ts = wp->w_buffer->b_p_ts;
  		return OK;
  	    }
*** ../vim-8.1.0104/src/beval.h	2017-11-19 20:22:17.000000000 +0100
--- src/beval.h	2018-06-23 18:42:21.444354814 +0200
***************
*** 71,77 ****
      void		*clientData;	/* For callback */
  #endif
  
!     int			ts;		/* tabstop setting for this buffer */
      char_u		*msg;
  } BalloonEval;
  
--- 71,80 ----
      void		*clientData;	/* For callback */
  #endif
  
!     int			ts;		// tabstop setting for this buffer
! #ifdef FEAT_VARTABS
!     int			*vts;		// vartabstop setting for this buffer
! #endif
      char_u		*msg;
  } BalloonEval;
  
*** ../vim-8.1.0104/src/buffer.c	2018-06-16 22:58:11.791025515 +0200
--- src/buffer.c	2018-06-23 18:34:40.502898381 +0200
***************
*** 271,277 ****
      /*
       * Set/reset the Changed flag first, autocmds may change the buffer.
       * Apply the automatic commands, before processing the modelines.
!      * So the modelines have priority over auto commands.
       */
      /* When reading stdin, the buffer contents always needs writing, so set
       * the changed flag.  Unless in readonly mode: "ls | gview -".
--- 271,277 ----
      /*
       * Set/reset the Changed flag first, autocmds may change the buffer.
       * Apply the automatic commands, before processing the modelines.
!      * So the modelines have priority over autocommands.
       */
      /* When reading stdin, the buffer contents always needs writing, so set
       * the changed flag.  Unless in readonly mode: "ls | gview -".
***************
*** 2159,2164 ****
--- 2159,2177 ----
      clear_string_option(&buf->b_p_fo);
      clear_string_option(&buf->b_p_flp);
      clear_string_option(&buf->b_p_isk);
+ #ifdef FEAT_VARTABS
+     clear_string_option(&buf->b_p_vsts);
+     if (buf->b_p_vsts_nopaste)
+ 	vim_free(buf->b_p_vsts_nopaste);
+     buf->b_p_vsts_nopaste = NULL;
+     if (buf->b_p_vsts_array)
+ 	vim_free(buf->b_p_vsts_array);
+     buf->b_p_vsts_array = NULL;
+     clear_string_option(&buf->b_p_vts);
+     if (buf->b_p_vts_array)
+ 	vim_free(buf->b_p_vts_array);
+     buf->b_p_vts_array = NULL;
+ #endif
  #ifdef FEAT_KEYMAP
      clear_string_option(&buf->b_p_keymap);
      keymap_clear(&buf->b_kmap_ga);
***************
*** 5190,5196 ****
  		win_close(wp, FALSE);
  		wpnext = firstwin;	/* just in case an autocommand does
  					   something strange with windows */
! 		tpnext = first_tabpage;	/* start all over...*/
  		open_wins = 0;
  	    }
  	    else
--- 5203,5209 ----
  		win_close(wp, FALSE);
  		wpnext = firstwin;	/* just in case an autocommand does
  					   something strange with windows */
! 		tpnext = first_tabpage;	/* start all over... */
  		open_wins = 0;
  	    }
  	    else
***************
*** 5650,5657 ****
  }
  
  /*
!  * Return TRUE if "buf" is a "nofile", "acwrite" or "terminal" buffer.
!  * This means the buffer name is not a file name.
   */
      int
  bt_nofile(buf_T *buf)
--- 5663,5670 ----
  }
  
  /*
!  * Return TRUE if "buf" is a "nofile", "acwrite", "terminal" or "prompt"
!  * buffer.  This means the buffer name is not a file name.
   */
      int
  bt_nofile(buf_T *buf)
***************
*** 5663,5669 ****
  }
  
  /*
!  * Return TRUE if "buf" is a "nowrite", "nofile" or "terminal" buffer.
   */
      int
  bt_dontwrite(buf_T *buf)
--- 5676,5683 ----
  }
  
  /*
!  * Return TRUE if "buf" is a "nowrite", "nofile", "terminal" or "prompt"
!  * buffer.
   */
      int
  bt_dontwrite(buf_T *buf)
*** ../vim-8.1.0104/src/charset.c	2018-06-12 17:25:32.054404315 +0200
--- src/charset.c	2018-06-23 18:42:59.804141756 +0200
***************
*** 812,818 ****
   * Also see getvcol() below.
   */
  
! #define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \
      if (*(p) == TAB && (!(wp)->w_p_list || lcs_tab1)) \
      { \
  	int ts; \
--- 812,827 ----
   * Also see getvcol() below.
   */
  
! #ifdef FEAT_VARTABS
! # define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \
!     if (*(p) == TAB && (!(wp)->w_p_list || lcs_tab1)) \
!     { \
! 	return tabstop_padding(col, (buf)->b_p_ts, (buf)->b_p_vts_array); \
!     } \
!     else \
! 	return ptr2cells(p);
! #else
! # define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \
      if (*(p) == TAB && (!(wp)->w_p_list || lcs_tab1)) \
      { \
  	int ts; \
***************
*** 821,826 ****
--- 830,836 ----
      } \
      else \
  	return ptr2cells(p);
+ #endif
  
      int
  chartabsize(char_u *p, colnr_T col)
***************
*** 1221,1228 ****
--- 1231,1243 ----
  
      if (*s == TAB && (!wp->w_p_list || lcs_tab1))
      {
+ # ifdef FEAT_VARTABS
+ 	return tabstop_padding(col, wp->w_buffer->b_p_ts,
+ 				    wp->w_buffer->b_p_vts_array);
+ # else
  	n = wp->w_buffer->b_p_ts;
  	return (int)(n - (col % n));
+ # endif
      }
      n = ptr2cells(s);
      /* Add one cell for a double-width character in the last column of the
***************
*** 1282,1287 ****
--- 1297,1305 ----
      char_u	*line;		/* start of the line */
      int		incr;
      int		head;
+ #ifdef FEAT_VARTABS
+     int		*vts = wp->w_buffer->b_p_vts_array;
+ #endif
      int		ts = wp->w_buffer->b_p_ts;
      int		c;
  
***************
*** 1332,1338 ****
--- 1350,1360 ----
  	    }
  	    /* A tab gets expanded, depending on the current column */
  	    if (c == TAB)
+ #ifdef FEAT_VARTABS
+ 		incr = tabstop_padding(vcol, ts, vts);
+ #else
  		incr = ts - (vcol % ts);
+ #endif
  	    else
  	    {
  #ifdef FEAT_MBYTE
*** ../vim-8.1.0104/src/edit.c	2018-06-17 19:36:30.215317108 +0200
--- src/edit.c	2018-06-23 18:56:42.835538285 +0200
***************
*** 742,748 ****
  	    mincol = curwin->w_wcol;
  	    validate_cursor_col();
  
! 	    if ((int)curwin->w_wcol < mincol - curbuf->b_p_ts
  		    && curwin->w_wrow == W_WINROW(curwin)
  						 + curwin->w_height - 1 - p_so
  		    && (curwin->w_cursor.lnum != curwin->w_topline
--- 742,755 ----
  	    mincol = curwin->w_wcol;
  	    validate_cursor_col();
  
! 	    if (
! #ifdef FEAT_VARTABS
! 		(int)curwin->w_wcol < mincol - tabstop_at(
! 					  get_nolist_virtcol(), curbuf->b_p_ts,
! 							 curbuf->b_p_vts_array)
! #else
! 		(int)curwin->w_wcol < mincol - curbuf->b_p_ts
! #endif
  		    && curwin->w_wrow == W_WINROW(curwin)
  						 + curwin->w_height - 1 - p_so
  		    && (curwin->w_cursor.lnum != curwin->w_topline
***************
*** 9329,9351 ****
  	 */
  	if (	   mode == BACKSPACE_CHAR
  		&& ((p_sta && in_indent)
! 		    || (get_sts_value() != 0
  			&& curwin->w_cursor.col > 0
  			&& (*(ml_get_cursor() - 1) == TAB
  			    || (*(ml_get_cursor() - 1) == ' '
  				&& (!*inserted_space_p
  				    || arrow_used))))))
  	{
  	    int		ts;
  	    colnr_T	vcol;
  	    colnr_T	want_vcol;
  	    colnr_T	start_vcol;
  
  	    *inserted_space_p = FALSE;
  	    if (p_sta && in_indent)
  		ts = (int)get_sw_value(curbuf);
  	    else
  		ts = (int)get_sts_value();
  	    /* Compute the virtual column where we want to be.  Since
  	     * 'showbreak' may get in the way, need to get the last column of
  	     * the previous character. */
--- 9336,9366 ----
  	 */
  	if (	   mode == BACKSPACE_CHAR
  		&& ((p_sta && in_indent)
! 		    || ((get_sts_value() != 0
! #ifdef FEAT_VARTABS
! 			|| tabstop_count(curbuf->b_p_vsts_array)
! #endif
! 			)
  			&& curwin->w_cursor.col > 0
  			&& (*(ml_get_cursor() - 1) == TAB
  			    || (*(ml_get_cursor() - 1) == ' '
  				&& (!*inserted_space_p
  				    || arrow_used))))))
  	{
+ #ifndef FEAT_VARTABS
  	    int		ts;
+ #endif
  	    colnr_T	vcol;
  	    colnr_T	want_vcol;
  	    colnr_T	start_vcol;
  
  	    *inserted_space_p = FALSE;
+ #ifndef FEAT_VARTABS
  	    if (p_sta && in_indent)
  		ts = (int)get_sw_value(curbuf);
  	    else
  		ts = (int)get_sts_value();
+ #endif
  	    /* Compute the virtual column where we want to be.  Since
  	     * 'showbreak' may get in the way, need to get the last column of
  	     * the previous character. */
***************
*** 9354,9360 ****
--- 9369,9383 ----
  	    dec_cursor();
  	    getvcol(curwin, &curwin->w_cursor, NULL, NULL, &want_vcol);
  	    inc_cursor();
+ #ifdef FEAT_VARTABS
+ 	    if (p_sta && in_indent)
+ 		want_vcol = (want_vcol / curbuf->b_p_sw) * curbuf->b_p_sw;
+ 	    else
+ 		want_vcol = tabstop_start(want_vcol, curbuf->b_p_sts,
+ 						     curbuf->b_p_vsts_array);
+ #else
  	    want_vcol = (want_vcol / ts) * ts;
+ #endif
  
  	    /* delete characters until we are at or before want_vcol */
  	    while (vcol > want_vcol
***************
*** 10144,10153 ****
  #endif
  
      /*
!      * When nothing special, insert TAB like a normal character
       */
      if (!curbuf->b_p_et
  	    && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
  	    && get_sts_value() == 0)
  	return TRUE;
  
--- 10167,10188 ----
  #endif
  
      /*
!      * When nothing special, insert TAB like a normal character.
       */
      if (!curbuf->b_p_et
+ #ifdef FEAT_VARTABS
+ 	    && !(p_sta && ind
+ 		/* These five lines mean 'tabstop' != 'shiftwidth' */
+ 		&& ((tabstop_count(curbuf->b_p_vts_array) > 1)
+ 		    || (tabstop_count(curbuf->b_p_vts_array) == 1
+ 		        && tabstop_first(curbuf->b_p_vts_array)
+ 						       != get_sw_value(curbuf))
+ 	            || (tabstop_count(curbuf->b_p_vts_array) == 0
+ 		        && curbuf->b_p_ts != get_sw_value(curbuf))))
+ 	    && tabstop_count(curbuf->b_p_vsts_array) == 0
+ #else
  	    && !(p_sta && ind && curbuf->b_p_ts != get_sw_value(curbuf))
+ #endif
  	    && get_sts_value() == 0)
  	return TRUE;
  
***************
*** 10162,10167 ****
--- 10197,10216 ----
  #endif
      AppendToRedobuff((char_u *)"\t");
  
+ #ifdef FEAT_VARTABS
+     if (p_sta && ind)		/* insert tab in indent, use 'shiftwidth' */
+     {
+ 	temp = (int)curbuf->b_p_sw;
+ 	temp -= get_nolist_virtcol() % temp;
+     }
+     else if (tabstop_count(curbuf->b_p_vsts_array) > 0 || curbuf->b_p_sts > 0)
+ 	                        /* use 'softtabstop' when set */
+ 	temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_sts,
+ 						     curbuf->b_p_vsts_array);
+     else			/* otherwise use 'tabstop' */
+ 	temp = tabstop_padding(get_nolist_virtcol(), curbuf->b_p_ts,
+ 						     curbuf->b_p_vts_array);
+ #else
      if (p_sta && ind)		/* insert tab in indent, use 'shiftwidth' */
  	temp = (int)get_sw_value(curbuf);
      else if (curbuf->b_p_sts != 0) /* use 'softtabstop' when set */
***************
*** 10169,10174 ****
--- 10218,10224 ----
      else			/* otherwise use 'tabstop' */
  	temp = (int)curbuf->b_p_ts;
      temp -= get_nolist_virtcol() % temp;
+ #endif
  
      /*
       * Insert the first space with ins_char().	It will delete one char in
***************
*** 10193,10199 ****
--- 10243,10255 ----
      /*
       * When 'expandtab' not set: Replace spaces by TABs where possible.
       */
+ #ifdef FEAT_VARTABS
+     if (!curbuf->b_p_et && (tabstop_count(curbuf->b_p_vsts_array) > 0
+                             || get_sts_value() > 0
+ 			    || (p_sta && ind)))
+ #else
      if (!curbuf->b_p_et && (get_sts_value() || (p_sta && ind)))
+ #endif
      {
  	char_u		*ptr;
  #ifdef FEAT_VREPLACE
*** ../vim-8.1.0104/src/evalfunc.c	2018-06-23 14:21:38.467484932 +0200
--- src/evalfunc.c	2018-06-23 17:41:10.108366044 +0200
***************
*** 6436,6441 ****
--- 6436,6444 ----
  	"user-commands",    /* was accidentally included in 5.4 */
  	"user_commands",
  #endif
+ #ifdef FEAT_VARTABS
+ 	"vartabs",
+ #endif
  #ifdef FEAT_VIMINFO
  	"viminfo",
  #endif
*** ../vim-8.1.0104/src/ex_cmds.c	2018-06-04 20:34:07.607373577 +0200
--- src/ex_cmds.c	2018-06-23 18:49:09.570076283 +0200
***************
*** 673,684 ****
      long	vcol;
      long	start_col = 0;		/* For start of white-space string */
      long	start_vcol = 0;		/* For start of white-space string */
-     int		temp;
      long	old_len;
      char_u	*ptr;
      char_u	*new_line = (char_u *)1;    /* init to non-NULL */
      int		did_undo;		/* called u_save for current line */
      int		new_ts;
      int		save_list;
      linenr_T	first_line = 0;		/* first changed line */
      linenr_T	last_line = 0;		/* last changed line */
--- 673,689 ----
      long	vcol;
      long	start_col = 0;		/* For start of white-space string */
      long	start_vcol = 0;		/* For start of white-space string */
      long	old_len;
      char_u	*ptr;
      char_u	*new_line = (char_u *)1;    /* init to non-NULL */
      int		did_undo;		/* called u_save for current line */
+ #ifdef FEAT_VARTABS
+     int		*new_ts = 0;
+     char_u	*new_ts_str;		/* string value of tab argument */
+ #else
+     int		temp;
      int		new_ts;
+ #endif
      int		save_list;
      linenr_T	first_line = 0;		/* first changed line */
      linenr_T	last_line = 0;		/* last changed line */
***************
*** 686,691 ****
--- 691,713 ----
      save_list = curwin->w_p_list;
      curwin->w_p_list = 0;	    /* don't want list mode here */
  
+ #ifdef FEAT_VARTABS
+     new_ts_str = eap->arg;
+     if (!tabstop_set(eap->arg, &new_ts))
+ 	return;
+     while (vim_isdigit(*(eap->arg)) || *(eap->arg) == ',')
+ 	++(eap->arg);
+ 
+     // This ensures that either new_ts and new_ts_str are freshly allocated,
+     // or new_ts points to an existing array and new_ts_str is null.
+     if (new_ts == 0)
+     {
+ 	new_ts = curbuf->b_p_vts_array;
+ 	new_ts_str = NULL;
+     }
+     else
+ 	new_ts_str = vim_strnsave(new_ts_str, eap->arg - new_ts_str);
+ #else
      new_ts = getdigits(&(eap->arg));
      if (new_ts < 0)
      {
***************
*** 694,699 ****
--- 716,722 ----
      }
      if (new_ts == 0)
  	new_ts = curbuf->b_p_ts;
+ #endif
      for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
      {
  	ptr = ml_get(lnum);
***************
*** 726,731 ****
--- 749,764 ----
  		    num_tabs = 0;
  		    if (!curbuf->b_p_et)
  		    {
+ #ifdef FEAT_VARTABS
+ 			int t, s;
+ 
+ 			tabstop_fromto(start_vcol, vcol,
+ 				       tabstop_count(new_ts)? 0: curbuf->b_p_ts,
+ 				       new_ts,
+ 				       &t, &s);
+ 			num_tabs = t;
+ 			num_spaces = s;
+ #else
  			temp = new_ts - (start_vcol % new_ts);
  			if (num_spaces >= temp)
  			{
***************
*** 734,739 ****
--- 767,773 ----
  			}
  			num_tabs += num_spaces / new_ts;
  			num_spaces -= (num_spaces / new_ts) * new_ts;
+ #endif
  		    }
  		    if (curbuf->b_p_et || got_tab ||
  					(num_spaces + num_tabs < len))
***************
*** 791,804 ****
--- 825,877 ----
      if (got_int)
  	EMSG(_(e_interr));
  
+ #ifdef FEAT_VARTABS
+     // If a single value was given then it can be considered equal to
+     // either the value of 'tabstop' or the value of 'vartabstop'.
+     if (tabstop_count(curbuf->b_p_vts_array) == 0
+ 	&& tabstop_count(new_ts) == 1
+ 	&& curbuf->b_p_ts == tabstop_first(new_ts))
+ 	; /* not changed */
+     else if (tabstop_count(curbuf->b_p_vts_array) > 0
+         && tabstop_eq(curbuf->b_p_vts_array, new_ts))
+ 	; /* not changed */
+     else
+ 	redraw_curbuf_later(NOT_VALID);
+ #else
      if (curbuf->b_p_ts != new_ts)
  	redraw_curbuf_later(NOT_VALID);
+ #endif
      if (first_line != 0)
  	changed_lines(first_line, 0, last_line + 1, 0L);
  
      curwin->w_p_list = save_list;	/* restore 'list' */
  
+ #ifdef FEAT_VARTABS
+     if (new_ts_str != NULL)		/* set the new tabstop */
+     {
+ 	// If 'vartabstop' is in use or if the value given to retab has more
+ 	// than one tabstop then update 'vartabstop'.
+ 	int *old_vts_ary = curbuf->b_p_vts_array;
+ 
+ 	if (tabstop_count(old_vts_ary) > 0 || tabstop_count(new_ts) > 1)
+ 	{
+ 	    set_string_option_direct((char_u *)"vts", -1, new_ts_str,
+ 							OPT_FREE|OPT_LOCAL, 0);
+ 	    vim_free(new_ts_str);
+ 	    curbuf->b_p_vts_array = new_ts;
+ 	    vim_free(old_vts_ary);
+ 	}
+ 	else
+ 	{
+ 	    // 'vartabstop' wasn't in use and a single value was given to
+ 	    // retab then update 'tabstop'.
+ 	    curbuf->b_p_ts = tabstop_first(new_ts);
+ 	    vim_free(new_ts);
+ 	}
+     }
+ #else
      curbuf->b_p_ts = new_ts;
+ #endif
      coladvance(curwin->w_curswant);
  
      u_clearline();
*** ../vim-8.1.0104/src/feature.h	2018-03-29 15:32:30.000000000 +0200
--- src/feature.h	2018-06-23 17:41:10.108366044 +0200
***************
*** 806,811 ****
--- 806,818 ----
  #endif
  
  /*
+  * +vartabs		'vartabstop' and 'varsofttabstop' options.
+  */
+ #ifdef FEAT_BIG
+ # define FEAT_VARTABS
+ #endif
+ 
+ /*
   * Preferences:
   * ============
   */
*** ../vim-8.1.0104/src/gui_beval.c	2017-11-18 21:20:07.000000000 +0100
--- src/gui_beval.c	2018-06-23 18:50:11.437730010 +0200
***************
*** 130,135 ****
--- 130,138 ----
  	beval->msg = mesg;
  	beval->msgCB = mesgCB;
  	beval->clientData = clientData;
+ #ifdef FEAT_VARTABS
+ 	beval->vts = NULL;
+ #endif
  
  	/*
  	 * Set up event handler which will keep its eyes on the pointer,
***************
*** 172,177 ****
--- 175,184 ----
  # else
      XtDestroyWidget(beval->balloonShell);
  # endif
+ # ifdef FEAT_VARTABS
+     if (beval->vts)
+ 	vim_free(beval->vts);
+ # endif
      vim_free(beval);
  }
  #endif
*** ../vim-8.1.0104/src/gui_w32.c	2018-06-19 14:45:33.583620880 +0200
--- src/gui_w32.c	2018-06-23 18:50:14.853710890 +0200
***************
*** 8934,8939 ****
--- 8934,8942 ----
  	beval->msg = mesg;
  	beval->msgCB = mesgCB;
  	beval->clientData = clientData;
+ #ifdef FEAT_VARTABS
+ 	beval->vts = NULL;
+ #endif
  
  	InitCommonControls();
  	cur_beval = beval;
***************
*** 8990,8995 ****
--- 8993,9002 ----
      void
  gui_mch_destroy_beval_area(BalloonEval *beval)
  {
+ #ifdef FEAT_VARTABS
+     if (beval->vts)
+ 	vim_free(beval->vts);
+ #endif
      vim_free(beval);
  }
  #endif /* FEAT_BEVAL_GUI */
*** ../vim-8.1.0104/src/hardcopy.c	2018-06-16 14:44:05.750081612 +0200
--- src/hardcopy.c	2018-06-23 18:35:24.530657199 +0200
***************
*** 915,921 ****
--- 915,926 ----
  	if (line[col] == TAB || tab_spaces != 0)
  	{
  	    if (tab_spaces == 0)
+ #ifdef FEAT_VARTABS
+ 		tab_spaces = tabstop_padding(print_pos, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ #else
  		tab_spaces = (int)(curbuf->b_p_ts - (print_pos % curbuf->b_p_ts));
+ #endif
  
  	    while (tab_spaces > 0)
  	    {
*** ../vim-8.1.0104/src/message.c	2018-06-19 17:49:20.300015350 +0200
--- src/message.c	2018-06-23 18:35:29.794628331 +0200
***************
*** 1831,1837 ****
--- 1831,1842 ----
  	    if (c == TAB && (!list || lcs_tab1))
  	    {
  		/* tab amount depends on current column */
+ #ifdef FEAT_VARTABS
+ 		n_extra = tabstop_padding(col, curbuf->b_p_ts,
+ 						    curbuf->b_p_vts_array) - 1;
+ #else
  		n_extra = curbuf->b_p_ts - col % curbuf->b_p_ts - 1;
+ #endif
  		if (!list)
  		{
  		    c = ' ';
*** ../vim-8.1.0104/src/misc1.c	2018-06-19 18:58:04.010489820 +0200
--- src/misc1.c	2018-06-23 18:50:28.649633665 +0200
***************
*** 36,42 ****
--- 36,47 ----
      int
  get_indent(void)
  {
+ #ifdef FEAT_VARTABS
+     return get_indent_str_vtab(ml_get_curline(), (int)curbuf->b_p_ts,
+ 						 curbuf->b_p_vts_array, FALSE);
+ #else
      return get_indent_str(ml_get_curline(), (int)curbuf->b_p_ts, FALSE);
+ #endif
  }
  
  /*
***************
*** 45,51 ****
--- 50,61 ----
      int
  get_indent_lnum(linenr_T lnum)
  {
+ #ifdef FEAT_VARTABS
+     return get_indent_str_vtab(ml_get(lnum), (int)curbuf->b_p_ts,
+ 						 curbuf->b_p_vts_array, FALSE);
+ #else
      return get_indent_str(ml_get(lnum), (int)curbuf->b_p_ts, FALSE);
+ #endif
  }
  
  #if defined(FEAT_FOLDING) || defined(PROTO)
***************
*** 56,62 ****
--- 66,77 ----
      int
  get_indent_buf(buf_T *buf, linenr_T lnum)
  {
+ #ifdef FEAT_VARTABS
+     return get_indent_str_vtab(ml_get_buf(buf, lnum, FALSE),
+ 			       (int)curbuf->b_p_ts, buf->b_p_vts_array, FALSE);
+ #else
      return get_indent_str(ml_get_buf(buf, lnum, FALSE), (int)buf->b_p_ts, FALSE);
+ #endif
  }
  #endif
  
***************
*** 91,96 ****
--- 106,142 ----
      return count;
  }
  
+ #ifdef FEAT_VARTABS
+ /*
+  * Count the size (in window cells) of the indent in line "ptr", using
+  * variable tabstops.
+  * if "list" is TRUE, count only screen size for tabs.
+  */
+     int
+ get_indent_str_vtab(char_u *ptr, int ts, int *vts, int list)
+ {
+     int		count = 0;
+ 
+     for ( ; *ptr; ++ptr)
+     {
+ 	if (*ptr == TAB)    /* count a tab for what it is worth */
+ 	{
+ 	    if (!list || lcs_tab1)
+ 		count += tabstop_padding(count, ts, vts);
+ 	    else
+ 		/* In list mode, when tab is not set, count screen char width
+ 		 * for Tab, displays: ^I */
+ 		count += ptr2cells(ptr);
+ 	}
+ 	else if (*ptr == ' ')
+ 	    ++count;		/* count a space for one */
+ 	else
+ 	    break;
+     }
+     return count;
+ }
+ #endif
+ 
  /*
   * Set the indent of the current line.
   * Leaves the cursor on the first non-blank in the line.
***************
*** 115,120 ****
--- 161,169 ----
      int		line_len;
      int		doit = FALSE;
      int		ind_done = 0;	    /* measured in spaces */
+ #ifdef FEAT_VARTABS
+     int		ind_col = 0;
+ #endif
      int		tab_pad;
      int		retval = FALSE;
      int		orig_char_len = -1; /* number of initial whitespace chars when
***************
*** 147,154 ****
--- 196,208 ----
  	    {
  		if (*p == TAB)
  		{
+ #ifdef FEAT_VARTABS
+ 		    tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ #else
  		    tab_pad = (int)curbuf->b_p_ts
  					   - (ind_done % (int)curbuf->b_p_ts);
+ #endif
  		    /* stop if this tab will overshoot the target */
  		    if (todo < tab_pad)
  			break;
***************
*** 165,187 ****
--- 219,269 ----
  		++p;
  	    }
  
+ #ifdef FEAT_VARTABS
+ 	    /* These diverge from this point. */
+ 	    ind_col = ind_done;
+ #endif
  	    /* Set initial number of whitespace chars to copy if we are
  	     * preserving indent but expandtab is set */
  	    if (curbuf->b_p_et)
  		orig_char_len = ind_len;
  
  	    /* Fill to next tabstop with a tab, if possible */
+ #ifdef FEAT_VARTABS
+ 	    tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
+ 						curbuf->b_p_vts_array);
+ #else
  	    tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
+ #endif
  	    if (todo >= tab_pad && orig_char_len == -1)
  	    {
  		doit = TRUE;
  		todo -= tab_pad;
  		++ind_len;
  		/* ind_done += tab_pad; */
+ #ifdef FEAT_VARTABS
+ 		ind_col += tab_pad;
+ #endif
  	    }
  	}
  
  	/* count tabs required for indent */
+ #ifdef FEAT_VARTABS
+ 	for (;;)
+ 	{
+ 	    tab_pad = tabstop_padding(ind_col, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ 	    if (todo < tab_pad)
+ 		break;
+ 	    if (*p != TAB)
+ 		doit = TRUE;
+ 	    else
+ 		++p;
+ 	    todo -= tab_pad;
+ 	    ++ind_len;
+ 	    ind_col += tab_pad;
+ 	}
+ #else
  	while (todo >= (int)curbuf->b_p_ts)
  	{
  	    if (*p != TAB)
***************
*** 192,197 ****
--- 274,280 ----
  	    ++ind_len;
  	    /* ind_done += (int)curbuf->b_p_ts; */
  	}
+ #endif
      }
      /* count spaces required for indent */
      while (todo > 0)
***************
*** 266,273 ****
--- 349,361 ----
  	    {
  		if (*p == TAB)
  		{
+ #ifdef FEAT_VARTABS
+ 		    tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ #else
  		    tab_pad = (int)curbuf->b_p_ts
  					   - (ind_done % (int)curbuf->b_p_ts);
+ #endif
  		    /* stop if this tab will overshoot the target */
  		    if (todo < tab_pad)
  			break;
***************
*** 283,303 ****
--- 371,412 ----
  	    }
  
  	    /* Fill to next tabstop with a tab, if possible */
+ #ifdef FEAT_VARTABS
+ 	    tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
+ 						curbuf->b_p_vts_array);
+ #else
  	    tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
+ #endif
  	    if (todo >= tab_pad)
  	    {
  		*s++ = TAB;
  		todo -= tab_pad;
+ #ifdef FEAT_VARTABS
+ 		ind_done += tab_pad;
+ #endif
  	    }
  
  	    p = skipwhite(p);
  	}
  
+ #ifdef FEAT_VARTABS
+ 	for (;;)
+ 	{
+ 	    tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ 	    if (todo < tab_pad)
+ 		break;
+ 	    *s++ = TAB;
+ 	    todo -= tab_pad;
+ 	    ind_done += tab_pad;
+ 	}
+ #else
  	while (todo >= (int)curbuf->b_p_ts)
  	{
  	    *s++ = TAB;
  	    todo -= (int)curbuf->b_p_ts;
  	}
+ #endif
      }
      while (todo > 0)
      {
***************
*** 350,355 ****
--- 459,467 ----
      int		tab_pad;
      int		ind_done;
      int		round;
+ #ifdef FEAT_VARTABS
+     int		ind_col;
+ #endif
  
      /* Round 1: compute the number of characters needed for the indent
       * Round 2: copy the characters. */
***************
*** 358,363 ****
--- 470,478 ----
  	todo = size;
  	ind_len = 0;
  	ind_done = 0;
+ #ifdef FEAT_VARTABS
+ 	ind_col = 0;
+ #endif
  	s = src;
  
  	/* Count/copy the usable portion of the source line */
***************
*** 365,382 ****
--- 480,508 ----
  	{
  	    if (*s == TAB)
  	    {
+ #ifdef FEAT_VARTABS
+ 		tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ #else
  		tab_pad = (int)curbuf->b_p_ts
  					   - (ind_done % (int)curbuf->b_p_ts);
+ #endif
  		/* Stop if this tab will overshoot the target */
  		if (todo < tab_pad)
  		    break;
  		todo -= tab_pad;
  		ind_done += tab_pad;
+ #ifdef FEAT_VARTABS
+ 		ind_col += tab_pad;
+ #endif
  	    }
  	    else
  	    {
  		--todo;
  		++ind_done;
+ #ifdef FEAT_VARTABS
+ 		++ind_col;
+ #endif
  	    }
  	    ++ind_len;
  	    if (p != NULL)
***************
*** 385,406 ****
  	}
  
  	/* Fill to next tabstop with a tab, if possible */
  	tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
  	if (todo >= tab_pad && !curbuf->b_p_et)
  	{
  	    todo -= tab_pad;
  	    ++ind_len;
  	    if (p != NULL)
  		*p++ = TAB;
  	}
  
  	/* Add tabs required for indent */
! 	while (todo >= (int)curbuf->b_p_ts && !curbuf->b_p_et)
  	{
! 	    todo -= (int)curbuf->b_p_ts;
! 	    ++ind_len;
! 	    if (p != NULL)
! 		*p++ = TAB;
  	}
  
  	/* Count/add spaces required for indent */
--- 511,558 ----
  	}
  
  	/* Fill to next tabstop with a tab, if possible */
+ #ifdef FEAT_VARTABS
+ 	tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ #else
  	tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
+ #endif
  	if (todo >= tab_pad && !curbuf->b_p_et)
  	{
  	    todo -= tab_pad;
  	    ++ind_len;
+ #ifdef FEAT_VARTABS
+ 	    ind_col += tab_pad;
+ #endif
  	    if (p != NULL)
  		*p++ = TAB;
  	}
  
  	/* Add tabs required for indent */
! 	if (!curbuf->b_p_et)
  	{
! #ifdef FEAT_VARTABS
! 	    for (;;)
! 	    {
! 		tab_pad = tabstop_padding(ind_col, curbuf->b_p_ts,
! 							curbuf->b_p_vts_array);
! 		if (todo < tab_pad)
! 		    break;
! 		todo -= tab_pad;
! 		++ind_len;
! 		ind_col += tab_pad;
! 		if (p != NULL)
! 		    *p++ = TAB;
! 	    }
! #else
! 	    while (todo >= (int)curbuf->b_p_ts)
! 	    {
! 		todo -= (int)curbuf->b_p_ts;
! 		++ind_len;
! 		if (p != NULL)
! 		    *p++ = TAB;
! 	    }
! #endif
  	}
  
  	/* Count/add spaces required for indent */
***************
*** 497,502 ****
--- 649,657 ----
      static long	    prev_ts     = 0L; /* cached tabstop value */
      static char_u   *prev_line = NULL; /* cached pointer to line */
      static varnumber_T prev_tick = 0;   /* changedtick of cached value */
+ #ifdef FEAT_VARTABS
+     static int      *prev_vts = NULL;    /* cached vartabs values */
+ #endif
      int		    bri = 0;
      /* window width minus window margin space, i.e. what rests for text */
      const int	    eff_wwidth = wp->w_width
***************
*** 506,518 ****
  
      /* used cached indent, unless pointer or 'tabstop' changed */
      if (prev_line != line || prev_ts != wp->w_buffer->b_p_ts
! 				  || prev_tick != CHANGEDTICK(wp->w_buffer))
      {
  	prev_line = line;
  	prev_ts = wp->w_buffer->b_p_ts;
  	prev_tick = CHANGEDTICK(wp->w_buffer);
  	prev_indent = get_indent_str(line,
  				     (int)wp->w_buffer->b_p_ts, wp->w_p_list);
      }
      bri = prev_indent + wp->w_p_brishift;
  
--- 661,684 ----
  
      /* used cached indent, unless pointer or 'tabstop' changed */
      if (prev_line != line || prev_ts != wp->w_buffer->b_p_ts
! 	    || prev_tick != CHANGEDTICK(wp->w_buffer)
! #ifdef FEAT_VARTABS
! 	    || prev_vts != wp->w_buffer->b_p_vts_array
! #endif
! 	)
      {
  	prev_line = line;
  	prev_ts = wp->w_buffer->b_p_ts;
  	prev_tick = CHANGEDTICK(wp->w_buffer);
+ #ifdef FEAT_VARTABS
+ 	prev_vts = wp->w_buffer->b_p_vts_array;
+ 	prev_indent = get_indent_str_vtab(line,
+ 				     (int)wp->w_buffer->b_p_ts,
+ 				    wp->w_buffer->b_p_vts_array, wp->w_p_list);
+ #else
  	prev_indent = get_indent_str(line,
  				     (int)wp->w_buffer->b_p_ts, wp->w_p_list);
+ #endif
      }
      bri = prev_indent + wp->w_p_brishift;
  
***************
*** 741,747 ****
--- 907,918 ----
  	/*
  	 * count white space on current line
  	 */
+ #ifdef FEAT_VARTABS
+ 	newindent = get_indent_str_vtab(saved_line, curbuf->b_p_ts,
+ 						 curbuf->b_p_vts_array, FALSE);
+ #else
  	newindent = get_indent_str(saved_line, (int)curbuf->b_p_ts, FALSE);
+ #endif
  	if (newindent == 0 && !(flags & OPENLINE_COM_LIST))
  	    newindent = second_line_indent; /* for ^^D command in insert mode */
  
***************
*** 1264,1270 ****
  					|| do_si
  #endif
  							   )
! 			newindent = get_indent_str(leader, (int)curbuf->b_p_ts, FALSE);
  
  		    /* Add the indent offset */
  		    if (newindent + off < 0)
--- 1435,1447 ----
  					|| do_si
  #endif
  							   )
! #ifdef FEAT_VARTABS
! 			newindent = get_indent_str_vtab(leader, curbuf->b_p_ts,
! 						 curbuf->b_p_vts_array, FALSE);
! #else
! 			newindent = get_indent_str(leader,
! 						   (int)curbuf->b_p_ts, FALSE);
! #endif
  
  		    /* Add the indent offset */
  		    if (newindent + off < 0)
*** ../vim-8.1.0104/src/ops.c	2018-06-03 14:42:17.844505109 +0200
--- src/ops.c	2018-06-23 18:36:27.566311089 +0200
***************
*** 398,403 ****
--- 398,406 ----
      char_u		*newp, *oldp;
      int			oldcol = curwin->w_cursor.col;
      int			p_sw = (int)get_sw_value(curbuf);
+ #ifdef FEAT_VARTABS
+     int			*p_vts = curbuf->b_p_vts_array;
+ #endif
      int			p_ts = (int)curbuf->b_p_ts;
      struct block_def	bd;
      int			incr;
***************
*** 459,470 ****
--- 462,480 ----
  	}
  	/* OK, now total=all the VWS reqd, and textstart points at the 1st
  	 * non-ws char in the block. */
+ #ifdef FEAT_VARTABS
+ 	if (!curbuf->b_p_et)
+ 	    tabstop_fromto(ws_vcol, ws_vcol + total, p_ts, p_vts, &i, &j);
+ 	else
+ 	    j = total;
+ #else
  	if (!curbuf->b_p_et)
  	    i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
  	if (i)
  	    j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
  	else
  	    j = total;
+ #endif
  	/* if we're splitting a TAB, allow for it */
  	bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
  	len = (int)STRLEN(bd.textstart) + 1;
***************
*** 3697,3706 ****
--- 3707,3725 ----
  	{
  	    /* Don't need to insert spaces when "p" on the last position of a
  	     * tab or "P" on the first position. */
+ #ifdef FEAT_VARTABS
+ 	    int viscol = getviscol();
+ 	    if (dir == FORWARD
+ 		    ? tabstop_padding(viscol, curbuf->b_p_ts,
+ 						    curbuf->b_p_vts_array) != 1
+ 		    : curwin->w_cursor.coladd > 0)
+ 		coladvance_force(viscol);
+ #else
  	    if (dir == FORWARD
  		    ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
  						: curwin->w_cursor.coladd > 0)
  		coladvance_force(getviscol());
+ #endif
  	    else
  		curwin->w_cursor.coladd = 0;
  	}
*** ../vim-8.1.0104/src/option.c	2018-06-17 19:08:26.472323943 +0200
--- src/option.c	2018-06-23 18:53:46.500525908 +0200
***************
*** 182,187 ****
--- 182,191 ----
  # define PV_UDF		OPT_BUF(BV_UDF)
  #endif
  #define PV_WM		OPT_BUF(BV_WM)
+ #ifdef FEAT_VARTABS
+ # define PV_VSTS		OPT_BUF(BV_VSTS)
+ # define PV_VTS		OPT_BUF(BV_VTS)
+ #endif
  
  /*
   * Definition of the PV_ values for window-local options.
***************
*** 371,376 ****
--- 375,384 ----
  static int	p_udf;
  #endif
  static long	p_wm;
+ #ifdef FEAT_VARTABS
+ static char_u	*p_vsts;
+ static char_u	*p_vts;
+ #endif
  #ifdef FEAT_KEYMAP
  static char_u	*p_keymap;
  #endif
***************
*** 390,395 ****
--- 398,406 ----
  static long	p_sts_nopaste;
  static long	p_tw_nopaste;
  static long	p_wm_nopaste;
+ #ifdef FEAT_VARTABS
+ static char_u	*p_vsts_nopaste;
+ #endif
  
  struct vimoption
  {
***************
*** 2925,2930 ****
--- 2936,2959 ----
      {"updatetime",  "ut",   P_NUM|P_VI_DEF,
  			    (char_u *)&p_ut, PV_NONE,
  			    {(char_u *)4000L, (char_u *)0L} SCRIPTID_INIT},
+     {"varsofttabstop", "vsts",  P_STRING|P_VI_DEF|P_VIM|P_COMMA,
+ #ifdef FEAT_VARTABS
+ 			    (char_u *)&p_vsts, PV_VSTS,
+ 			    {(char_u *)"", (char_u *)0L}
+ #else
+ 			    (char_u *)NULL, PV_NONE,
+ 			    {(char_u *)"", (char_u *)NULL}
+ #endif
+ 			    SCRIPTID_INIT},
+     {"vartabstop",  "vts",  P_STRING|P_VI_DEF|P_VIM|P_RBUF|P_COMMA,
+ #ifdef FEAT_VARTABS
+ 			    (char_u *)&p_vts, PV_VTS,
+ 			    {(char_u *)"", (char_u *)0L}
+ #else
+ 			    (char_u *)NULL, PV_NONE,
+ 			    {(char_u *)"", (char_u *)NULL}
+ #endif
+ 			    SCRIPTID_INIT},
      {"verbose",	    "vbs",  P_NUM|P_VI_DEF,
  			    (char_u *)&p_verbose, PV_NONE,
  			    {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
***************
*** 5608,5613 ****
--- 5637,5646 ----
      /* Parse default for 'clipboard' */
      (void)check_clipboard_option();
  #endif
+ #ifdef FEAT_VARTABS
+     tabstop_set(curbuf->b_p_vsts, &curbuf->b_p_vsts_array);
+     tabstop_set(curbuf->b_p_vts,  &curbuf->b_p_vts_array);
+ #endif
  }
  
  /*
***************
*** 5725,5730 ****
--- 5758,5767 ----
  #ifdef FEAT_MBYTE
      check_string_option(&buf->b_p_menc);
  #endif
+ #ifdef FEAT_VARTABS
+     check_string_option(&buf->b_p_vsts);
+     check_string_option(&buf->b_p_vts);
+ #endif
  }
  
  /*
***************
*** 7472,7477 ****
--- 7509,7596 ----
      }
  #endif
  
+ #ifdef FEAT_VARTABS
+     /* 'varsofttabstop' */
+     else if (varp == &(curbuf->b_p_vsts))
+     {
+ 	char_u *cp;
+ 
+ 	if (!(*varp)[0] || ((*varp)[0] == '0' && !(*varp)[1]))
+ 	{
+ 	    if (curbuf->b_p_vsts_array)
+ 	    {
+ 		vim_free(curbuf->b_p_vsts_array);
+ 		curbuf->b_p_vsts_array = 0;
+ 	    }
+ 	}
+ 	else
+ 	{
+ 	    for (cp = *varp; *cp; ++cp)
+ 	    {
+ 		if (vim_isdigit(*cp))
+ 		    continue;
+ 		if (*cp == ',' && cp > *varp && *(cp-1) != ',')
+ 		    continue;
+ 		errmsg = e_invarg;
+ 		break;
+ 	    }
+ 	    if (errmsg == NULL)
+ 	    {
+ 		int *oldarray = curbuf->b_p_vsts_array;
+ 		if (tabstop_set(*varp, &(curbuf->b_p_vsts_array)))
+ 		{
+ 		    if (oldarray)
+ 			vim_free(oldarray);
+ 		}
+ 		else
+ 		    errmsg = e_invarg;
+ 	    }
+ 	}
+     }
+ 
+     /* 'vartabstop' */
+     else if (varp == &(curbuf->b_p_vts))
+     {
+ 	char_u *cp;
+ 
+ 	if (!(*varp)[0] || ((*varp)[0] == '0' && !(*varp)[1]))
+ 	{
+ 	    if (curbuf->b_p_vts_array)
+ 	    {
+ 		vim_free(curbuf->b_p_vts_array);
+ 		curbuf->b_p_vts_array = NULL;
+ 	    }
+ 	}
+ 	else
+ 	{
+ 	    for (cp = *varp; *cp; ++cp)
+ 	    {
+ 		if (vim_isdigit(*cp))
+ 		    continue;
+ 		if (*cp == ',' && cp > *varp && *(cp-1) != ',')
+ 		    continue;
+ 		errmsg = e_invarg;
+ 		break;
+ 	    }
+ 	    if (errmsg == NULL)
+ 	    {
+ 		int *oldarray = curbuf->b_p_vts_array;
+ 		if (tabstop_set(*varp, &(curbuf->b_p_vts_array)))
+ 		{
+ 		    if (oldarray)
+ 			vim_free(oldarray);
+ #ifdef FEAT_FOLDING
+ 		    if (foldmethodIsIndent(curwin))
+ 			foldUpdateAll(curwin);
+ #endif /* FEAT_FOLDING */
+ 		}
+ 		else
+ 		    errmsg = e_invarg;
+ 	    }
+ 	}
+     }
+ #endif
+ 
      /* Options that are a list of flags. */
      else
      {
***************
*** 8780,8786 ****
--- 8899,8912 ----
      if (curbuf->b_p_sw < 0)
      {
  	errmsg = e_positive;
+ #ifdef FEAT_VARTABS
+ 	// Use the first 'vartabstop' value, or 'tabstop' if vts isn't in use.
+ 	curbuf->b_p_sw = tabstop_count(curbuf->b_p_vts_array) > 0
+ 	               ? tabstop_first(curbuf->b_p_vts_array)
+ 		       : curbuf->b_p_ts;
+ #else
  	curbuf->b_p_sw = curbuf->b_p_ts;
+ #endif
      }
  
      /*
***************
*** 10814,10819 ****
--- 10940,10949 ----
  #ifdef FEAT_SIGNS
  	case PV_SCL:	return (char_u *)&(curwin->w_p_scl);
  #endif
+ #ifdef FEAT_VARTABS
+ 	case PV_VSTS:	return (char_u *)&(curbuf->b_p_vsts);
+ 	case PV_VTS:	return (char_u *)&(curbuf->b_p_vts);
+ #endif
  	default:	IEMSG(_("E356: get_varp ERROR"));
      }
      /* always return a valid pointer to avoid a crash! */
***************
*** 11138,11143 ****
--- 11268,11282 ----
  #endif
  	    buf->b_p_sts = p_sts;
  	    buf->b_p_sts_nopaste = p_sts_nopaste;
+ #ifdef FEAT_VARTABS
+ 	    buf->b_p_vsts = vim_strsave(p_vsts);
+ 	    if (p_vsts && p_vsts != empty_option)
+ 		tabstop_set(p_vsts, &buf->b_p_vsts_array);
+ 	    else
+ 		buf->b_p_vsts_array = 0;
+ 	    buf->b_p_vsts_nopaste = p_vsts_nopaste
+ 				 ? vim_strsave(p_vsts_nopaste) : NULL;
+ #endif
  	    buf->b_p_sn = p_sn;
  #ifdef FEAT_COMMENTS
  	    buf->b_p_com = vim_strsave(p_com);
***************
*** 11259,11270 ****
--- 11398,11424 ----
  	     * or to a help buffer.
  	     */
  	    if (dont_do_help)
+ 	    {
  		buf->b_p_isk = save_p_isk;
+ #ifdef FEAT_VARTABS
+ 		if (p_vts && p_vts != empty_option && !buf->b_p_vts_array)
+ 		    tabstop_set(p_vts, &buf->b_p_vts_array);
+ 		else
+ 		    buf->b_p_vts_array = NULL;
+ #endif
+ 	    }
  	    else
  	    {
  		buf->b_p_isk = vim_strsave(p_isk);
  		did_isk = TRUE;
  		buf->b_p_ts = p_ts;
+ #ifdef FEAT_VARTABS
+ 		buf->b_p_vts = vim_strsave(p_vts);
+ 		if (p_vts && p_vts != empty_option && !buf->b_p_vts_array)
+ 		    tabstop_set(p_vts, &buf->b_p_vts_array);
+ 		else
+ 		    buf->b_p_vts_array = NULL;
+ #endif
  		buf->b_help = FALSE;
  		if (buf->b_p_bt[0] == 'h')
  		    clear_string_option(&buf->b_p_bt);
***************
*** 12084,12089 ****
--- 12238,12249 ----
  		buf->b_p_sts_nopaste = buf->b_p_sts;
  		buf->b_p_ai_nopaste = buf->b_p_ai;
  		buf->b_p_et_nopaste = buf->b_p_et;
+ #ifdef FEAT_VARTABS
+ 		if (buf->b_p_vsts_nopaste)
+ 		    vim_free(buf->b_p_vsts_nopaste);
+ 		buf->b_p_vsts_nopaste = buf->b_p_vsts && buf->b_p_vsts != empty_option
+ 				     ? vim_strsave(buf->b_p_vsts) : NULL;
+ #endif
  	    }
  
  	    /* save global options */
***************
*** 12102,12107 ****
--- 12262,12272 ----
  	    p_sts_nopaste = p_sts;
  	    p_tw_nopaste = p_tw;
  	    p_wm_nopaste = p_wm;
+ #ifdef FEAT_VARTABS
+ 	    if (p_vsts_nopaste)
+ 		vim_free(p_vsts_nopaste);
+ 	    p_vsts_nopaste = p_vsts && p_vsts != empty_option ? vim_strsave(p_vsts) : NULL;
+ #endif
  	}
  
  	/*
***************
*** 12116,12121 ****
--- 12281,12294 ----
  	    buf->b_p_sts = 0;	    /* softtabstop is 0 */
  	    buf->b_p_ai = 0;	    /* no auto-indent */
  	    buf->b_p_et = 0;	    /* no expandtab */
+ #ifdef FEAT_VARTABS
+ 	    if (buf->b_p_vsts)
+ 		free_string_option(buf->b_p_vsts);
+ 	    buf->b_p_vsts = empty_option;
+ 	    if (buf->b_p_vsts_array)
+ 		vim_free(buf->b_p_vsts_array);
+ 	    buf->b_p_vsts_array = 0;
+ #endif
  	}
  
  	/* set global options */
***************
*** 12135,12140 ****
--- 12308,12318 ----
  	p_wm = 0;
  	p_sts = 0;
  	p_ai = 0;
+ #ifdef FEAT_VARTABS
+ 	if (p_vsts)
+ 	    free_string_option(p_vsts);
+ 	p_vsts = empty_option;
+ #endif
      }
  
      /*
***************
*** 12150,12155 ****
--- 12328,12345 ----
  	    buf->b_p_sts = buf->b_p_sts_nopaste;
  	    buf->b_p_ai = buf->b_p_ai_nopaste;
  	    buf->b_p_et = buf->b_p_et_nopaste;
+ #ifdef FEAT_VARTABS
+ 	    if (buf->b_p_vsts)
+ 		free_string_option(buf->b_p_vsts);
+ 	    buf->b_p_vsts = buf->b_p_vsts_nopaste
+ 			 ? vim_strsave(buf->b_p_vsts_nopaste) : empty_option;
+ 	    if (buf->b_p_vsts_array)
+ 		vim_free(buf->b_p_vsts_array);
+ 	    if (buf->b_p_vsts && buf->b_p_vsts != empty_option)
+ 		tabstop_set(buf->b_p_vsts, &buf->b_p_vsts_array);
+ 	    else
+ 		buf->b_p_vsts_array = 0;
+ #endif
  	}
  
  	/* restore global options */
***************
*** 12170,12175 ****
--- 12360,12370 ----
  	p_sts = p_sts_nopaste;
  	p_tw = p_tw_nopaste;
  	p_wm = p_wm_nopaste;
+ #ifdef FEAT_VARTABS
+ 	if (p_vsts)
+ 	    free_string_option(p_vsts);
+ 	p_vsts = p_vsts_nopaste ? vim_strsave(p_vsts_nopaste) : empty_option;
+ #endif
      }
  
      old_p_paste = p_paste;
***************
*** 12510,12515 ****
--- 12705,12999 ----
      return check_opt_strings(p, p_ff_values, FALSE);
  }
  
+ #ifdef FEAT_VARTABS
+ 
+ /*
+  * Set the integer values corresponding to the string setting of 'vartabstop'.
+  */
+     int
+ tabstop_set(char_u *var, int **array)
+ {
+     int valcount = 1;
+     int t;
+     char_u *cp;
+ 
+     if ((!var[0] || (var[0] == '0' && !var[1])))
+     {
+ 	*array = NULL;
+ 	return TRUE;
+     }
+ 
+     for (cp = var; *cp; ++cp)
+     {
+ 	if (cp == var || *(cp - 1) == ',')
+ 	{
+ 	    char_u *end;
+ 	    if (strtol((char *)cp, (char **)&end, 10) <= 0)
+ 	    {
+ 		if (cp != end)
+ 		    EMSG(_(e_positive));
+ 		else
+ 		    EMSG(_(e_invarg));
+ 		return FALSE;
+ 	    }
+ 	}
+ 
+ 	if (VIM_ISDIGIT(*cp))
+ 	    continue;
+ 	if (*cp == ',' && cp > var && *(cp - 1) != ',')
+ 	{
+ 	    ++valcount;
+ 	    continue;
+ 	}
+ 	EMSG(_(e_invarg));
+ 	return FALSE;
+     }
+ 
+     *array = (int *) alloc((unsigned) ((valcount + 1) * sizeof(int)));
+     (*array)[0] = valcount;
+ 
+     t = 1;
+     for (cp = var; *cp;)
+     {
+ 	(*array)[t++] = atoi((char *)cp);
+ 	while (*cp && *cp != ',')
+ 	    ++cp;
+ 	if (*cp)
+ 	    ++cp;
+     }
+ 
+     return TRUE;
+ }
+ 
+ /*
+  * Calculate the number of screen spaces a tab will occupy.
+  * If "vts" is set then the tab widths are taken from that array,
+  * otherwise the value of ts is used.
+  */
+     int
+ tabstop_padding(colnr_T col, int ts_arg, int *vts)
+ {
+     int		ts = ts_arg == 0 ? 8 : ts_arg;
+     int		tabcount;
+     colnr_T	tabcol = 0;
+     int		t;
+     int		padding = 0;
+ 
+     if (vts == NULL || vts[0] == 0)
+ 	return ts - (col % ts);
+ 
+     tabcount = vts[0];
+ 
+     for (t = 1; t <= tabcount; ++t)
+     {
+ 	tabcol += vts[t];
+ 	if (tabcol > col)
+ 	{
+ 	    padding = (int)(tabcol - col);
+ 	    break;
+ 	}
+     }
+     if (t > tabcount)
+ 	padding = vts[tabcount] - (int)((col - tabcol) % vts[tabcount]);
+ 
+     return padding;
+ }
+ 
+ /*
+  * Find the size of the tab that covers a particular column.
+  */
+     int
+ tabstop_at(colnr_T col, int ts, int *vts)
+ {
+     int		tabcount;
+     colnr_T	tabcol = 0;
+     int		t;
+     int		tab_size = 0;
+ 
+     if (vts == 0 || vts[0] == 0)
+ 	return ts;
+ 
+     tabcount = vts[0];
+     for (t = 1; t <= tabcount; ++t)
+     {
+ 	tabcol += vts[t];
+ 	if (tabcol > col)
+ 	{
+ 	    tab_size = vts[t];
+ 	    break;
+ 	}
+     }
+     if (t > tabcount)
+ 	tab_size = vts[tabcount];
+ 
+     return tab_size;
+ }
+ 
+ /*
+  * Find the column on which a tab starts.
+  */
+     colnr_T
+ tabstop_start(colnr_T col, int ts, int *vts)
+ {
+     int		tabcount;
+     colnr_T	tabcol = 0;
+     int		t;
+     int         excess;
+ 
+     if (vts == 0 || vts[0] == 0)
+ 	return (col / ts) * ts;
+ 
+     tabcount = vts[0];
+     for (t = 1; t <= tabcount; ++t)
+     {
+ 	tabcol += vts[t];
+ 	if (tabcol > col)
+ 	    return tabcol - vts[t];
+     }
+ 
+     excess = tabcol % vts[tabcount];
+     return excess + ((col - excess) / vts[tabcount]) * vts[tabcount];
+ }
+ 
+ /*
+  * Find the number of tabs and spaces necessary to get from one column
+  * to another.
+  */
+     void
+ tabstop_fromto(
+ 	colnr_T start_col,
+ 	colnr_T end_col,
+ 	int	ts,
+ 	int	*vts,
+ 	int	*ntabs,
+ 	int	*nspcs)
+ {
+     int		spaces = end_col - start_col;
+     colnr_T	tabcol = 0;
+     int		padding = 0;
+     int		tabcount;
+     int		t;
+ 
+     if (vts == 0 || vts[0] == 0)
+     {
+ 	int tabs = 0;
+ 	int initspc = ts - (start_col % ts);
+ 	if (spaces >= initspc)
+ 	{
+ 	    spaces -= initspc;
+ 	    tabs++;
+ 	}
+ 	tabs += spaces / ts;
+ 	spaces -= (spaces / ts) * ts;
+ 
+ 	*ntabs = tabs;
+ 	*nspcs = spaces;
+ 	return;
+     }
+ 
+     /* Find the padding needed to reach the next tabstop. */
+     tabcount = vts[0];
+     for (t = 1; t <= tabcount; ++t)
+     {
+ 	tabcol += vts[t];
+ 	if (tabcol > start_col)
+ 	{
+ 	    padding = (int)(tabcol - start_col);
+ 	    break;
+ 	}
+     }
+     if (t > tabcount)
+ 	padding = vts[tabcount] - (int)((start_col - tabcol) % vts[tabcount]);
+ 
+     /* If the space needed is less than the padding no tabs can be used. */
+     if (spaces < padding)
+     {
+ 	*ntabs = 0;
+ 	*nspcs = spaces;
+ 	return;
+     }
+ 
+     *ntabs = 1;
+     spaces -= padding;
+ 
+     /* At least one tab has been used. See if any more will fit. */
+     while (spaces != 0 && ++t <= tabcount)
+     {
+ 	padding = vts[t];
+ 	if (spaces < padding)
+ 	{
+ 	    *nspcs = spaces;
+ 	    return;
+ 	}
+ 	++*ntabs;
+ 	spaces -= padding;
+     }
+ 
+     *ntabs += spaces / vts[tabcount];
+     *nspcs =  spaces % vts[tabcount];
+ }
+ 
+ /*
+  * See if two tabstop arrays contain the same values.
+  */
+     int
+ tabstop_eq(int *ts1, int *ts2)
+ {
+     int		t;
+ 
+     if ((ts1 == 0 && ts2) || (ts1 && ts2 == 0))
+ 	return FALSE;
+     if (ts1 == ts2)
+ 	return TRUE;
+     if (ts1[0] != ts2[0])
+ 	return FALSE;
+ 
+     for (t = 1; t <= ts1[0]; ++t)
+ 	if (ts1[t] != ts2[t])
+ 	    return FALSE;
+ 
+     return TRUE;
+ }
+ 
+ /*
+  * Copy a tabstop array, allocating space for the new array.
+  */
+     int *
+ tabstop_copy(int *oldts)
+ {
+     int		*newts;
+     int		t;
+ 
+     if (oldts == 0)
+ 	return 0;
+ 
+     newts = (int *) alloc((unsigned) ((oldts[0] + 1) * sizeof(int)));
+     for (t = 0; t <= oldts[0]; ++t)
+ 	newts[t] = oldts[t];
+ 
+     return newts;
+ }
+ 
+ /*
+  * Return a count of the number of tabstops.
+  */
+     int
+ tabstop_count(int *ts)
+ {
+     return ts != NULL ? ts[0] : 0;
+ }
+ 
+ /*
+  * Return the first tabstop, or 8 if there are no tabstops defined.
+  */
+     int
+ tabstop_first(int *ts)
+ {
+     return ts != NULL ? ts[1] : 8;
+ }
+ 
+ #endif
+ 
  /*
   * Return the effective shiftwidth value for current buffer, using the
   * 'tabstop' value when 'shiftwidth' is zero.
*** ../vim-8.1.0104/src/option.h	2018-05-05 16:28:11.000000000 +0200
--- src/option.h	2018-06-23 17:41:10.116365995 +0200
***************
*** 1114,1119 ****
--- 1114,1123 ----
  #ifdef FEAT_TERMINAL
      , BV_TWSL
  #endif
+ #ifdef FEAT_VARTABS
+     , BV_VSTS
+     , BV_VTS
+ #endif
      , BV_COUNT	    /* must be the last one */
  };
  
*** ../vim-8.1.0104/src/proto/misc1.pro	2018-05-17 13:52:45.000000000 +0200
--- src/proto/misc1.pro	2018-06-23 18:20:45.471296904 +0200
***************
*** 3,8 ****
--- 3,9 ----
  int get_indent_lnum(linenr_T lnum);
  int get_indent_buf(buf_T *buf, linenr_T lnum);
  int get_indent_str(char_u *ptr, int ts, int list);
+ int get_indent_str_vtab(char_u *ptr, int ts, int *vts, int list);
  int set_indent(int size, int flags);
  int get_number_indent(linenr_T lnum);
  int get_breakindent_win(win_T *wp, char_u *line);
*** ../vim-8.1.0104/src/proto/option.pro	2018-05-17 13:52:47.000000000 +0200
--- src/proto/option.pro	2018-06-23 18:38:40.189580238 +0200
***************
*** 60,65 ****
--- 60,74 ----
  void save_file_ff(buf_T *buf);
  int file_ff_differs(buf_T *buf, int ignore_empty);
  int check_ff_value(char_u *p);
+ int tabstop_set(char_u *var, int **array);
+ int tabstop_padding(colnr_T col, int ts_arg, int *vts);
+ int tabstop_at(colnr_T col, int ts, int *vts);
+ colnr_T tabstop_start(colnr_T col, int ts, int *vts);
+ void tabstop_fromto(colnr_T start_col, colnr_T end_col, int ts, int *vts, int *ntabs, int *nspcs);
+ int tabstop_eq(int *ts1, int *ts2);
+ int *tabstop_copy(int *oldts);
+ int tabstop_count(int *ts);
+ int tabstop_first(int *ts);
  long get_sw_value(buf_T *buf);
  long get_sts_value(void);
  void find_mps_values(int *initc, int *findc, int *backwards, int switchit);
*** ../vim-8.1.0104/src/screen.c	2018-06-23 14:21:38.467484932 +0200
--- src/screen.c	2018-06-23 18:36:56.702150819 +0200
***************
*** 4848,4855 ****
  			vcol_adjusted = vcol - MB_CHARLEN(p_sbr);
  #endif
  		    /* tab amount depends on current column */
  		    tab_len = (int)wp->w_buffer->b_p_ts
! 					- vcol_adjusted % (int)wp->w_buffer->b_p_ts - 1;
  
  #ifdef FEAT_LINEBREAK
  		    if (!wp->w_p_lbr || !wp->w_p_list)
--- 4848,4861 ----
  			vcol_adjusted = vcol - MB_CHARLEN(p_sbr);
  #endif
  		    /* tab amount depends on current column */
+ #ifdef FEAT_VARTABS
+ 		    tab_len = tabstop_padding(vcol_adjusted,
+ 					      wp->w_buffer->b_p_ts,
+ 					      wp->w_buffer->b_p_vts_array) - 1;
+ #else
  		    tab_len = (int)wp->w_buffer->b_p_ts
! 			       - vcol_adjusted % (int)wp->w_buffer->b_p_ts - 1;
! #endif
  
  #ifdef FEAT_LINEBREAK
  		    if (!wp->w_p_lbr || !wp->w_p_list)
*** ../vim-8.1.0104/src/structs.h	2018-06-17 20:10:36.208066158 +0200
--- src/structs.h	2018-06-23 18:39:12.357402504 +0200
***************
*** 2236,2241 ****
--- 2236,2248 ----
      long	b_p_wm;		/* 'wrapmargin' */
      long	b_p_wm_nobin;	/* b_p_wm saved for binary mode */
      long	b_p_wm_nopaste;	/* b_p_wm saved for paste mode */
+ #ifdef FEAT_VARTABS
+     char_u	*b_p_vsts;	/* 'varsofttabstop' */
+     int		*b_p_vsts_array;   /* 'varsofttabstop' in internal format */
+     char_u	*b_p_vsts_nopaste; /* b_p_vsts saved for paste mode */
+     char_u	*b_p_vts;	/* 'vartabstop' */
+     int		*b_p_vts_array;	/* 'vartabstop' in internal format */
+ #endif
  #ifdef FEAT_KEYMAP
      char_u	*b_p_keymap;	/* 'keymap' */
  #endif
*** ../vim-8.1.0104/src/testdir/Make_all.mak	2018-06-03 14:42:17.848505102 +0200
--- src/testdir/Make_all.mak	2018-06-23 17:41:10.116365995 +0200
***************
*** 147,154 ****
  	    test_perl.res \
  	    test_plus_arg_edit.res \
  	    test_preview.res \
- 	    test_prompt_buffer.res \
  	    test_profile.res \
  	    test_python2.res \
  	    test_python3.res \
  	    test_pyx2.res \
--- 147,154 ----
  	    test_perl.res \
  	    test_plus_arg_edit.res \
  	    test_preview.res \
  	    test_profile.res \
+ 	    test_prompt_buffer.res \
  	    test_python2.res \
  	    test_python3.res \
  	    test_pyx2.res \
***************
*** 180,185 ****
--- 180,186 ----
  	    test_undo.res \
  	    test_user_func.res \
  	    test_usercommands.res \
+ 	    test_vartabs.res \
  	    test_viminfo.res \
  	    test_vimscript.res \
  	    test_visual.res \
*** ../vim-8.1.0104/src/testdir/gen_opt_test.vim	2018-05-05 16:32:49.000000000 +0200
--- src/testdir/gen_opt_test.vim	2018-06-23 17:41:10.116365995 +0200
***************
*** 136,141 ****
--- 136,143 ----
        \ 'toolbariconsize': [['', 'tiny', 'huge'], ['xxx']],
        \ 'ttymouse': [['', 'xterm'], ['xxx']],
        \ 'ttytype': [[], []],
+       \ 'varsofttabstop': [['8', '4,8,16,32'], ['xxx', '-1', '4,-1,20']],
+       \ 'vartabstop': [['8', '4,8,16,32'], ['xxx', '-1', '4,-1,20']],
        \ 'viewoptions': [['', 'cursor', 'unix,slash'], ['xxx']],
        \ 'viminfo': [['', '''50', '"30'], ['xxx']],
        \ 'virtualedit': [['', 'all', 'all,block'], ['xxx']],
*** ../vim-8.1.0104/src/testdir/test_breakindent.vim	2017-03-01 17:42:25.000000000 +0100
--- src/testdir/test_breakindent.vim	2018-06-23 19:21:36.118945791 +0200
***************
*** 12,146 ****
  
  let s:input ="\tabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP"
  
! function s:screen_lines(lnum, width) abort
    return ScreenLines([a:lnum, a:lnum + 2], a:width)
! endfunction
  
! function! s:compare_lines(expect, actual)
    call assert_equal(join(a:expect, "\n"), join(a:actual, "\n"))
! endfunction
  
! function s:test_windows(...)
    call NewWindow(10, 20)
    setl ts=4 sw=4 sts=4 breakindent
    put =s:input
    exe get(a:000, 0, '')
! endfunction
  
! function s:close_windows(...)
    call CloseWindow()
    exe get(a:000, 0, '')
! endfunction
  
! function Test_breakindent01()
    " simple breakindent test
    call s:test_windows('setl briopt=min:0')
!   let lines=s:screen_lines(line('.'),8)
!   let expect=[
! \ "    abcd",
! \ "    qrst",
! \ "    GHIJ",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunction
  
! function Test_breakindent02()
    " simple breakindent test with showbreak set
    call s:test_windows('setl briopt=min:0 sbr=>>')
!   let lines=s:screen_lines(line('.'),8)
!   let expect=[
! \ "    abcd",
! \ "    >>qr",
! \ "    >>EF",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr=')
! endfunction
  
! function Test_breakindent03()
    " simple breakindent test with showbreak set and briopt including sbr
    call s:test_windows('setl briopt=sbr,min:0 sbr=++')
!   let lines=s:screen_lines(line('.'),8)
!   let expect=[
! \ "    abcd",
! \ "++  qrst",
! \ "++  GHIJ",
! \ ]
    call s:compare_lines(expect, lines)
    " clean up
    call s:close_windows('set sbr=')
! endfunction
  
! function Test_breakindent04()
    " breakindent set with min width 18
    call s:test_windows('setl sbr= briopt=min:18')
!   let lines=s:screen_lines(line('.'),8)
!   let expect=[
! \ "    abcd",
! \ "  qrstuv",
! \ "  IJKLMN",
! \ ]
    call s:compare_lines(expect, lines)
    " clean up
    call s:close_windows('set sbr=')
! endfunction
  
! function Test_breakindent05()
    " breakindent set and shift by 2
    call s:test_windows('setl briopt=shift:2,min:0')
!   let lines=s:screen_lines(line('.'),8)
!   let expect=[
! \ "    abcd",
! \ "      qr",
! \ "      EF",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunction
  
! function Test_breakindent06()
    " breakindent set and shift by -1
    call s:test_windows('setl briopt=shift:-1,min:0')
!   let lines=s:screen_lines(line('.'),8)
!   let expect=[
! \ "    abcd",
! \ "   qrstu",
! \ "   HIJKL",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunction
  
! function Test_breakindent07()
    " breakindent set and shift by 1, Number  set sbr=? and briopt:sbr
    call s:test_windows('setl briopt=shift:1,sbr,min:0 nu sbr=? nuw=4 cpo+=n')
!   let lines=s:screen_lines(line('.'),10)
!   let expect=[
! \ "  2     ab",
! \ "?        m",
! \ "?        x",
! \ ]
    call s:compare_lines(expect, lines)
    " clean up
    call s:close_windows('set sbr= cpo-=n')
! endfunction
  
! function Test_breakindent07a()
    " breakindent set and shift by 1, Number  set sbr=? and briopt:sbr
    call s:test_windows('setl briopt=shift:1,sbr,min:0 nu sbr=? nuw=4')
!   let lines=s:screen_lines(line('.'),10)
!   let expect=[
! \ "  2     ab",
! \ "    ?    m",
! \ "    ?    x",
! \ ]
    call s:compare_lines(expect, lines)
    " clean up
    call s:close_windows('set sbr=')
! endfunction
  
! function Test_breakindent08()
    " breakindent set and shift by 1, Number and list set sbr=# and briopt:sbr
    call s:test_windows('setl briopt=shift:1,sbr,min:0 nu nuw=4 sbr=# list cpo+=n ts=4')
    " make sure, cache is invalidated!
--- 12,278 ----
  
  let s:input ="\tabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOP"
  
! func s:screen_lines(lnum, width) abort
    return ScreenLines([a:lnum, a:lnum + 2], a:width)
! endfunc
  
! func s:compare_lines(expect, actual)
    call assert_equal(join(a:expect, "\n"), join(a:actual, "\n"))
! endfunc
  
! func s:test_windows(...)
    call NewWindow(10, 20)
    setl ts=4 sw=4 sts=4 breakindent
    put =s:input
    exe get(a:000, 0, '')
! endfunc
  
! func s:close_windows(...)
    call CloseWindow()
    exe get(a:000, 0, '')
! endfunc
  
! func Test_breakindent01()
    " simple breakindent test
    call s:test_windows('setl briopt=min:0')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "    qrst",
! 	\ "    GHIJ",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunc
  
! func Test_breakindent01_vartabs()
!   " like 01 but with vartabs feature
!   if !has("vartabs")
!     return
!   endif
!   call s:test_windows('setl briopt=min:0 vts=4')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "    qrst",
! 	\ "    GHIJ",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set vts&')
! endfunc
! 
! func Test_breakindent02()
    " simple breakindent test with showbreak set
    call s:test_windows('setl briopt=min:0 sbr=>>')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "    >>qr",
! 	\ "    >>EF",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr=')
! endfunc
! 
! func Test_breakindent02_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " simple breakindent test with showbreak set
!   call s:test_windows('setl briopt=min:0 sbr=>> vts=4')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "    >>qr",
! 	\ "    >>EF",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set sbr= vts&')
! endfunc
  
! func Test_breakindent03()
    " simple breakindent test with showbreak set and briopt including sbr
    call s:test_windows('setl briopt=sbr,min:0 sbr=++')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "++  qrst",
! 	\ "++  GHIJ",
! 	\ ]
    call s:compare_lines(expect, lines)
    " clean up
    call s:close_windows('set sbr=')
! endfunc
  
! func Test_breakindent03_vartabs()
!   " simple breakindent test with showbreak set and briopt including sbr
!   if !has("vartabs")
!     return
!   endif
!   call s:test_windows('setl briopt=sbr,min:0 sbr=++ vts=4')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "++  qrst",
! 	\ "++  GHIJ",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   " clean up
!   call s:close_windows('set sbr= vts&')
! endfunc
! 
! func Test_breakindent04()
    " breakindent set with min width 18
    call s:test_windows('setl sbr= briopt=min:18')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "  qrstuv",
! 	\ "  IJKLMN",
! 	\ ]
    call s:compare_lines(expect, lines)
    " clean up
    call s:close_windows('set sbr=')
! endfunc
  
! func Test_breakindent04_vartabs()
!   " breakindent set with min width 18
!   if !has("vartabs")
!     return
!   endif
!   call s:test_windows('setl sbr= briopt=min:18 vts=4')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "  qrstuv",
! 	\ "  IJKLMN",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   " clean up
!   call s:close_windows('set sbr= vts&')
! endfunc
! 
! func Test_breakindent05()
    " breakindent set and shift by 2
    call s:test_windows('setl briopt=shift:2,min:0')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "      qr",
! 	\ "      EF",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunc
! 
! func Test_breakindent05_vartabs()
!   " breakindent set and shift by 2
!   if !has("vartabs")
!     return
!   endif
!   call s:test_windows('setl briopt=shift:2,min:0 vts=4')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "      qr",
! 	\ "      EF",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set vts&')
! endfunc
  
! func Test_breakindent06()
    " breakindent set and shift by -1
    call s:test_windows('setl briopt=shift:-1,min:0')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "   qrstu",
! 	\ "   HIJKL",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunc
  
! func Test_breakindent06_vartabs()
!   " breakindent set and shift by -1
!   if !has("vartabs")
!     return
!   endif
!   call s:test_windows('setl briopt=shift:-1,min:0 vts=4')
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "    abcd",
! 	\ "   qrstu",
! 	\ "   HIJKL",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set vts&')
! endfunc
! 
! func Test_breakindent07()
    " breakindent set and shift by 1, Number  set sbr=? and briopt:sbr
    call s:test_windows('setl briopt=shift:1,sbr,min:0 nu sbr=? nuw=4 cpo+=n')
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2     ab",
! 	\ "?        m",
! 	\ "?        x",
! 	\ ]
    call s:compare_lines(expect, lines)
    " clean up
    call s:close_windows('set sbr= cpo-=n')
! endfunc
! 
! func Test_breakindent07_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " breakindent set and shift by 1, Number  set sbr=? and briopt:sbr
!   call s:test_windows('setl briopt=shift:1,sbr,min:0 nu sbr=? nuw=4 cpo+=n vts=4')
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2     ab",
! 	\ "?        m",
! 	\ "?        x",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   " clean up
!   call s:close_windows('set sbr= cpo-=n vts&')
! endfunc
  
! func Test_breakindent07a()
    " breakindent set and shift by 1, Number  set sbr=? and briopt:sbr
    call s:test_windows('setl briopt=shift:1,sbr,min:0 nu sbr=? nuw=4')
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2     ab",
! 	\ "    ?    m",
! 	\ "    ?    x",
! 	\ ]
    call s:compare_lines(expect, lines)
    " clean up
    call s:close_windows('set sbr=')
! endfunc
! 
! func Test_breakindent07a_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " breakindent set and shift by 1, Number  set sbr=? and briopt:sbr
!   call s:test_windows('setl briopt=shift:1,sbr,min:0 nu sbr=? nuw=4 vts=4')
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2     ab",
! 	\ "    ?    m",
! 	\ "    ?    x",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   " clean up
!   call s:close_windows('set sbr= vts&')
! endfunc
  
! func Test_breakindent08()
    " breakindent set and shift by 1, Number and list set sbr=# and briopt:sbr
    call s:test_windows('setl briopt=shift:1,sbr,min:0 nu nuw=4 sbr=# list cpo+=n ts=4')
    " make sure, cache is invalidated!
***************
*** 148,190 ****
    redraw!
    set ts=4
    redraw!
!   let lines=s:screen_lines(line('.'),10)
!   let expect=[
! \ "  2 ^Iabcd",
! \ "#      opq",
! \ "#      BCD",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr= cpo-=n')
! endfunction
  
! function Test_breakindent08a()
    " breakindent set and shift by 1, Number and list set sbr=# and briopt:sbr
    call s:test_windows('setl briopt=shift:1,sbr,min:0 nu nuw=4 sbr=# list')
!   let lines=s:screen_lines(line('.'),10)
!   let expect=[
! \ "  2 ^Iabcd",
! \ "    #  opq",
! \ "    #  BCD",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr=')
! endfunction
  
! function Test_breakindent09()
    " breakindent set and shift by 1, Number and list set sbr=#
    call s:test_windows('setl briopt=shift:1,min:0 nu nuw=4 sbr=# list')
!   let lines=s:screen_lines(line('.'),10)
!   let expect=[
! \ "  2 ^Iabcd",
! \ "       #op",
! \ "       #AB",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr=')
! endfunction
  
! function Test_breakindent10()
    " breakindent set, Number set sbr=~
    call s:test_windows('setl cpo+=n sbr=~ nu nuw=4 nolist briopt=sbr,min:0')
    " make sure, cache is invalidated!
--- 280,375 ----
    redraw!
    set ts=4
    redraw!
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2 ^Iabcd",
! 	\ "#      opq",
! 	\ "#      BCD",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr= cpo-=n')
! endfunc
  
! func Test_breakindent08_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " breakindent set and shift by 1, Number and list set sbr=# and briopt:sbr
!   call s:test_windows('setl briopt=shift:1,sbr,min:0 nu nuw=4 sbr=# list cpo+=n ts=4 vts=4')
!   " make sure, cache is invalidated!
!   set ts=8
!   redraw!
!   set ts=4
!   redraw!
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2 ^Iabcd",
! 	\ "#      opq",
! 	\ "#      BCD",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set sbr= cpo-=n vts&')
! endfunc
! 
! func Test_breakindent08a()
    " breakindent set and shift by 1, Number and list set sbr=# and briopt:sbr
    call s:test_windows('setl briopt=shift:1,sbr,min:0 nu nuw=4 sbr=# list')
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2 ^Iabcd",
! 	\ "    #  opq",
! 	\ "    #  BCD",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr=')
! endfunc
! 
! func Test_breakindent08a_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " breakindent set and shift by 1, Number and list set sbr=# and briopt:sbr
!   call s:test_windows('setl briopt=shift:1,sbr,min:0 nu nuw=4 sbr=# list vts=4')
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2 ^Iabcd",
! 	\ "    #  opq",
! 	\ "    #  BCD",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set sbr= vts&')
! endfunc
  
! func Test_breakindent09()
    " breakindent set and shift by 1, Number and list set sbr=#
    call s:test_windows('setl briopt=shift:1,min:0 nu nuw=4 sbr=# list')
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2 ^Iabcd",
! 	\ "       #op",
! 	\ "       #AB",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr=')
! endfunc
  
! func Test_breakindent09_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " breakindent set and shift by 1, Number and list set sbr=#
!   call s:test_windows('setl briopt=shift:1,min:0 nu nuw=4 sbr=# list vts=4')
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2 ^Iabcd",
! 	\ "       #op",
! 	\ "       #AB",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set sbr= vts&')
! endfunc
! 
! func Test_breakindent10()
    " breakindent set, Number set sbr=~
    call s:test_windows('setl cpo+=n sbr=~ nu nuw=4 nolist briopt=sbr,min:0')
    " make sure, cache is invalidated!
***************
*** 192,232 ****
    redraw!
    set ts=4
    redraw!
!   let lines=s:screen_lines(line('.'),10)
!   let expect=[
! \ "  2     ab",
! \ "~       mn",
! \ "~       yz",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr= cpo-=n')
! endfunction
  
! function Test_breakindent11()
    " test strdisplaywidth()
    call s:test_windows('setl cpo-=n sbr=>> nu nuw=4 nolist briopt= ts=4')
!   let text=getline(2)
    let width = strlen(text[1:])+indent(2)+strlen(&sbr)*3 " text wraps 3 times
    call assert_equal(width, strdisplaywidth(text))
    call s:close_windows('set sbr=')
! endfunction
  
! function Test_breakindent12()
    " test breakindent with long indent
!   let s:input="\t\t\t\t\t{"
    call s:test_windows('setl breakindent linebreak briopt=min:10 nu numberwidth=3 ts=4 list listchars=tab:>-')
!   let lines=s:screen_lines(2,16)
!   let expect=[
! \ " 2 >--->--->--->",
! \ "          ---{  ",
! \ "~               ",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set nuw=4 listchars=')
! endfunction
  
! function Test_breakindent13()
!   let s:input=""
    call s:test_windows('setl breakindent briopt=min:10 ts=8')
    vert resize 20
    call setline(1, ["    a\tb\tc\td\te", "    z   y       x       w       v"])
--- 377,467 ----
    redraw!
    set ts=4
    redraw!
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2     ab",
! 	\ "~       mn",
! 	\ "~       yz",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set sbr= cpo-=n')
! endfunc
  
! func Test_breakindent10_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " breakindent set, Number set sbr=~
!   call s:test_windows('setl cpo+=n sbr=~ nu nuw=4 nolist briopt=sbr,min:0 vts=4')
!   " make sure, cache is invalidated!
!   set ts=8
!   redraw!
!   set ts=4
!   redraw!
!   let lines = s:screen_lines(line('.'),10)
!   let expect = [
! 	\ "  2     ab",
! 	\ "~       mn",
! 	\ "~       yz",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set sbr= cpo-=n vts&')
! endfunc
! 
! func Test_breakindent11()
    " test strdisplaywidth()
    call s:test_windows('setl cpo-=n sbr=>> nu nuw=4 nolist briopt= ts=4')
!   let text = getline(2)
    let width = strlen(text[1:])+indent(2)+strlen(&sbr)*3 " text wraps 3 times
    call assert_equal(width, strdisplaywidth(text))
    call s:close_windows('set sbr=')
! endfunc
! 
! func Test_breakindent11_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " test strdisplaywidth()
!   call s:test_windows('setl cpo-=n sbr=>> nu nuw=4 nolist briopt= ts=4 vts=4')
!   let text = getline(2)
!   let width = strlen(text[1:])+indent(2)+strlen(&sbr)*3 " text wraps 3 times
!   call assert_equal(width, strdisplaywidth(text))
!   call s:close_windows('set sbr= vts&')
! endfunc
  
! func Test_breakindent12()
    " test breakindent with long indent
!   let s:input = "\t\t\t\t\t{"
    call s:test_windows('setl breakindent linebreak briopt=min:10 nu numberwidth=3 ts=4 list listchars=tab:>-')
!   let lines = s:screen_lines(2,16)
!   let expect = [
! 	\ " 2 >--->--->--->",
! 	\ "          ---{  ",
! 	\ "~               ",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows('set nuw=4 listchars=')
! endfunc
  
! func Test_breakindent12_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " test breakindent with long indent
!   let s:input = "\t\t\t\t\t{"
!   call s:test_windows('setl breakindent linebreak briopt=min:10 nu numberwidth=3 ts=4 list listchars=tab:>- vts=4')
!   let lines = s:screen_lines(2,16)
!   let expect = [
! 	\ " 2 >--->--->--->",
! 	\ "          ---{  ",
! 	\ "~               ",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set nuw=4 listchars= vts&')
! endfunc
! 
! func Test_breakindent13()
!   let s:input = ""
    call s:test_windows('setl breakindent briopt=min:10 ts=8')
    vert resize 20
    call setline(1, ["    a\tb\tc\td\te", "    z   y       x       w       v"])
***************
*** 237,298 ****
    call assert_equal('d', @a)
    call assert_equal('w', @b)
    call s:close_windows()
! endfunction
  
! function Test_breakindent14()
!   let s:input=""
    call s:test_windows('setl breakindent briopt= ts=8')
    vert resize 30
    norm! 3a1234567890
    norm! a    abcde
    exec "norm! 0\<C-V>tex"
!   let lines=s:screen_lines(line('.'),8)
!   let expect=[
! \ "e       ",
! \ "~       ",
! \ "~       ",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunction
  
! function Test_breakindent15()
!   let s:input=""
    call s:test_windows('setl breakindent briopt= ts=8 sw=8')
    vert resize 30
    norm! 4a1234567890
    exe "normal! >>\<C-V>3f0x"
!   let lines=s:screen_lines(line('.'),20)
!   let expect=[
! \ "        1234567890  ",
! \ "~                   ",
! \ "~                   ",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunction
  
! function Test_breakindent16()
    " Check that overlong lines are indented correctly.
!   let s:input=""
    call s:test_windows('setl breakindent briopt=min:0 ts=4')
    call setline(1, "\t".repeat("1234567890", 10))
    resize 6
    norm! 1gg$
    redraw!
!   let lines=s:screen_lines(1,10)
!   let expect=[
! \ "    789012",
! \ "    345678",
! \ "    901234",
! \ ]
!   call s:compare_lines(expect, lines)
!   let lines=s:screen_lines(4,10)
!   let expect=[
! \ "    567890",
! \ "    123456",
! \ "    7890  ",
! \ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunction
--- 472,617 ----
    call assert_equal('d', @a)
    call assert_equal('w', @b)
    call s:close_windows()
! endfunc
  
! func Test_breakindent13_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   let s:input = ""
!   call s:test_windows('setl breakindent briopt=min:10 ts=8 vts=8')
!   vert resize 20
!   call setline(1, ["    a\tb\tc\td\te", "    z   y       x       w       v"])
!   1
!   norm! fbgj"ayl
!   2
!   norm! fygj"byl
!   call assert_equal('d', @a)
!   call assert_equal('w', @b)
!   call s:close_windows('set vts&')
! endfunc
! 
! func Test_breakindent14()
!   let s:input = ""
    call s:test_windows('setl breakindent briopt= ts=8')
    vert resize 30
    norm! 3a1234567890
    norm! a    abcde
    exec "norm! 0\<C-V>tex"
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "e       ",
! 	\ "~       ",
! 	\ "~       ",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunc
! 
! func Test_breakindent14_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   let s:input = ""
!   call s:test_windows('setl breakindent briopt= ts=8 vts=8')
!   vert resize 30
!   norm! 3a1234567890
!   norm! a    abcde
!   exec "norm! 0\<C-V>tex"
!   let lines = s:screen_lines(line('.'),8)
!   let expect = [
! 	\ "e       ",
! 	\ "~       ",
! 	\ "~       ",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set vts&')
! endfunc
  
! func Test_breakindent15()
!   let s:input = ""
    call s:test_windows('setl breakindent briopt= ts=8 sw=8')
    vert resize 30
    norm! 4a1234567890
    exe "normal! >>\<C-V>3f0x"
!   let lines = s:screen_lines(line('.'),20)
!   let expect = [
! 	\ "        1234567890  ",
! 	\ "~                   ",
! 	\ "~                   ",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunc
! 
! func Test_breakindent15_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   let s:input = ""
!   call s:test_windows('setl breakindent briopt= ts=8 sw=8 vts=8')
!   vert resize 30
!   norm! 4a1234567890
!   exe "normal! >>\<C-V>3f0x"
!   let lines = s:screen_lines(line('.'),20)
!   let expect = [
! 	\ "        1234567890  ",
! 	\ "~                   ",
! 	\ "~                   ",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set vts&')
! endfunc
  
! func Test_breakindent16()
    " Check that overlong lines are indented correctly.
!   let s:input = ""
    call s:test_windows('setl breakindent briopt=min:0 ts=4')
    call setline(1, "\t".repeat("1234567890", 10))
    resize 6
    norm! 1gg$
    redraw!
!   let lines = s:screen_lines(1,10)
!   let expect = [
! 	\ "    789012",
! 	\ "    345678",
! 	\ "    901234",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   let lines = s:screen_lines(4,10)
!   let expect = [
! 	\ "    567890",
! 	\ "    123456",
! 	\ "    7890  ",
! 	\ ]
    call s:compare_lines(expect, lines)
    call s:close_windows()
! endfunc
! 
! func Test_breakindent16_vartabs()
!   if !has("vartabs")
!     return
!   endif
!   " Check that overlong lines are indented correctly.
!   let s:input = ""
!   call s:test_windows('setl breakindent briopt=min:0 ts=4 vts=4')
!   call setline(1, "\t".repeat("1234567890", 10))
!   resize 6
!   norm! 1gg$
!   redraw!
!   let lines = s:screen_lines(1,10)
!   let expect = [
! 	\ "    789012",
! 	\ "    345678",
! 	\ "    901234",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   let lines = s:screen_lines(4,10)
!   let expect = [
! 	\ "    567890",
! 	\ "    123456",
! 	\ "    7890  ",
! 	\ ]
!   call s:compare_lines(expect, lines)
!   call s:close_windows('set vts&')
! endfunc
*** ../vim-8.1.0104/src/testdir/test_vartabs.vim	2018-06-23 19:18:52.740059396 +0200
--- src/testdir/test_vartabs.vim	2018-06-23 18:05:31.387656858 +0200
***************
*** 0 ****
--- 1,257 ----
+ " Test for variable tabstops
+ 
+ if !has("vartabs")
+   finish
+ endif
+ 
+ func! Test_vartabs()
+   new
+   %d
+ 
+   " Test normal operation of tabstops ...
+   set ts=4
+   call setline(1, join(split('aaaaa', '\zs'), "\t"))
+   retab 8
+   let expect = "a   a\<tab>a   a\<tab>a"
+   call assert_equal(expect, getline(1))
+ 
+   " ... and softtabstops
+   set ts=8 sts=6
+   exe "norm! Sb\<tab>b\<tab>b\<tab>b\<tab>b"
+   let expect = "b     b\<tab>    b\<tab>  b\<tab>b"
+   call assert_equal(expect, getline(1))
+ 
+   " Test variable tabstops.
+   set sts=0 vts=4,8,4,8
+   exe "norm! Sc\<tab>c\<tab>c\<tab>c\<tab>c\<tab>c"
+   retab 8
+   let expect = "c   c\<tab>    c\<tab>c\<tab>c\<tab>c"
+   call assert_equal(expect, getline(1))
+ 
+   set et vts=4,8,4,8
+   exe "norm! Sd\<tab>d\<tab>d\<tab>d\<tab>d\<tab>d"
+   let expect = "d   d       d   d       d       d"
+   call assert_equal(expect, getline(1))
+ 
+   " Changing ts should have no effect if vts is in use.
+   call cursor(1, 1)
+   set ts=6
+   exe "norm! Se\<tab>e\<tab>e\<tab>e\<tab>e\<tab>e"
+   let expect = "e   e       e   e       e       e"
+   call assert_equal(expect, getline(1))
+ 
+   " Clearing vts should revert to using ts.
+   set vts=
+   exe "norm! Sf\<tab>f\<tab>f\<tab>f\<tab>f\<tab>f"
+   let expect = "f     f     f     f     f     f"
+   call assert_equal(expect, getline(1))
+ 
+   " Test variable softtabstops.
+   set noet ts=8 vsts=12,2,6
+   exe "norm! Sg\<tab>g\<tab>g\<tab>g\<tab>g\<tab>g"
+   let expect = "g\<tab>    g g\<tab>    g\<tab>  g\<tab>g"
+   call assert_equal(expect, getline(1))
+ 
+   " Variable tabstops and softtabstops combined.
+   set vsts=6,12,8 vts=4,6,8
+   exe "norm! Sh\<tab>h\<tab>h\<tab>h\<tab>h"
+   let expect = "h\<tab>  h\<tab>\<tab>h\<tab>h\<tab>h"
+   call assert_equal(expect, getline(1))
+ 
+   " Retab with a single value, not using vts.
+   set ts=8 sts=0 vts= vsts=
+   exe "norm! Si\<tab>i\<tab>i\<tab>i\<tab>i"
+   retab 4
+   let expect = "i\<tab>\<tab>i\<tab>\<tab>i\<tab>\<tab>i\<tab>\<tab>i"
+   call assert_equal(expect, getline(1))
+ 
+   " Retab with a single value, using vts.
+   set ts=8 sts=0 vts=6 vsts=
+   exe "norm! Sj\<tab>j\<tab>j\<tab>j\<tab>j"
+   retab 4
+   let expect = "j\<tab>  j\<tab>\<tab>j\<tab>  j\<tab>\<tab>j"
+   call assert_equal(expect, getline(1))
+ 
+   " Retab with multiple values, not using vts.
+   set ts=6 sts=0 vts= vsts=
+   exe "norm! Sk\<tab>k\<tab>k\<tab>k\<tab>k\<tab>k"
+   retab 4,8
+   let expect = "k\<tab>  k\<tab>k     k\<tab>    k\<tab>  k"
+   call assert_equal(expect, getline(1))
+ 
+   " Retab with multiple values, using vts.
+   set ts=8 sts=0 vts=6 vsts=
+   exe "norm! Sl\<tab>l\<tab>l\<tab>l\<tab>l\<tab>l"
+   retab 4,8
+   let expect = "l\<tab>  l\<tab>l     l\<tab>    l\<tab>  l"
+   call assert_equal(expect, getline(1))
+ 
+   " Check that global and local values are set.
+   set ts=4 vts=6 sts=8 vsts=10
+   call assert_equal(&ts, 4)
+   call assert_equal(&vts, '6')
+   call assert_equal(&sts, 8)
+   call assert_equal(&vsts, '10')
+   new
+   call assert_equal(&ts, 4)
+   call assert_equal(&vts, '6')
+   call assert_equal(&sts, 8)
+   call assert_equal(&vsts, '10')
+   bwipeout!
+ 
+   " Check that local values only are set.
+   setlocal ts=5 vts=7 sts=9 vsts=11
+   call assert_equal(&ts, 5)
+   call assert_equal(&vts, '7')
+   call assert_equal(&sts, 9)
+   call assert_equal(&vsts, '11')
+   new
+   call assert_equal(&ts, 4)
+   call assert_equal(&vts, '6')
+   call assert_equal(&sts, 8)
+   call assert_equal(&vsts, '10')
+   bwipeout!
+ 
+   " Check that global values only are set.
+   setglobal ts=6 vts=8 sts=10 vsts=12
+   call assert_equal(&ts, 5)
+   call assert_equal(&vts, '7')
+   call assert_equal(&sts, 9)
+   call assert_equal(&vsts, '11')
+   new
+   call assert_equal(&ts, 6)
+   call assert_equal(&vts, '8')
+   call assert_equal(&sts, 10)
+   call assert_equal(&vsts, '12')
+   bwipeout!
+ 
+   set ts& vts& sts& vsts& et&
+   bwipeout!
+ endfunc
+ 
+ func! Test_vartabs_breakindent()
+   if !exists("+breakindent")
+     return
+   endif
+   new
+   %d
+ 
+   " Test normal operation of tabstops ...
+   set ts=4
+   call setline(1, join(split('aaaaa', '\zs'), "\t"))
+   retab 8
+   let expect = "a   a\<tab>a   a\<tab>a"
+   call assert_equal(expect, getline(1))
+ 
+   " ... and softtabstops
+   set ts=8 sts=6
+   exe "norm! Sb\<tab>b\<tab>b\<tab>b\<tab>b"
+   let expect = "b     b\<tab>    b\<tab>  b\<tab>b"
+   call assert_equal(expect, getline(1))
+ 
+   " Test variable tabstops.
+   set sts=0 vts=4,8,4,8
+   exe "norm! Sc\<tab>c\<tab>c\<tab>c\<tab>c\<tab>c"
+   retab 8
+   let expect = "c   c\<tab>    c\<tab>c\<tab>c\<tab>c"
+   call assert_equal(expect, getline(1))
+ 
+   set et vts=4,8,4,8
+   exe "norm! Sd\<tab>d\<tab>d\<tab>d\<tab>d\<tab>d"
+   let expect = "d   d       d   d       d       d"
+   call assert_equal(expect, getline(1))
+ 
+   " Changing ts should have no effect if vts is in use.
+   call cursor(1, 1)
+   set ts=6
+   exe "norm! Se\<tab>e\<tab>e\<tab>e\<tab>e\<tab>e"
+   let expect = "e   e       e   e       e       e"
+   call assert_equal(expect, getline(1))
+ 
+   " Clearing vts should revert to using ts.
+   set vts=
+   exe "norm! Sf\<tab>f\<tab>f\<tab>f\<tab>f\<tab>f"
+   let expect = "f     f     f     f     f     f"
+   call assert_equal(expect, getline(1))
+ 
+   " Test variable softtabstops.
+   set noet ts=8 vsts=12,2,6
+   exe "norm! Sg\<tab>g\<tab>g\<tab>g\<tab>g\<tab>g"
+   let expect = "g\<tab>    g g\<tab>    g\<tab>  g\<tab>g"
+   call assert_equal(expect, getline(1))
+ 
+   " Variable tabstops and softtabstops combined.
+   set vsts=6,12,8 vts=4,6,8
+   exe "norm! Sh\<tab>h\<tab>h\<tab>h\<tab>h"
+   let expect = "h\<tab>  h\<tab>\<tab>h\<tab>h\<tab>h"
+   call assert_equal(expect, getline(1))
+ 
+   " Retab with a single value, not using vts.
+   set ts=8 sts=0 vts= vsts=
+   exe "norm! Si\<tab>i\<tab>i\<tab>i\<tab>i"
+   retab 4
+   let expect = "i\<tab>\<tab>i\<tab>\<tab>i\<tab>\<tab>i\<tab>\<tab>i"
+   call assert_equal(expect, getline(1))
+ 
+   " Retab with a single value, using vts.
+   set ts=8 sts=0 vts=6 vsts=
+   exe "norm! Sj\<tab>j\<tab>j\<tab>j\<tab>j"
+   retab 4
+   let expect = "j\<tab>  j\<tab>\<tab>j\<tab>  j\<tab>\<tab>j"
+   call assert_equal(expect, getline(1))
+ 
+   " Retab with multiple values, not using vts.
+   set ts=6 sts=0 vts= vsts=
+   exe "norm! Sk\<tab>k\<tab>k\<tab>k\<tab>k\<tab>k"
+   retab 4,8
+   let expect = "k\<tab>  k\<tab>k     k\<tab>    k\<tab>  k"
+   call assert_equal(expect, getline(1))
+ 
+   " Retab with multiple values, using vts.
+   set ts=8 sts=0 vts=6 vsts=
+   exe "norm! Sl\<tab>l\<tab>l\<tab>l\<tab>l\<tab>l"
+   retab 4,8
+   let expect = "l\<tab>  l\<tab>l     l\<tab>    l\<tab>  l"
+   call assert_equal(expect, getline(1))
+ 
+   " Check that global and local values are set.
+   set ts=4 vts=6 sts=8 vsts=10
+   call assert_equal(&ts, 4)
+   call assert_equal(&vts, '6')
+   call assert_equal(&sts, 8)
+   call assert_equal(&vsts, '10')
+   new
+   call assert_equal(&ts, 4)
+   call assert_equal(&vts, '6')
+   call assert_equal(&sts, 8)
+   call assert_equal(&vsts, '10')
+   bwipeout!
+ 
+   " Check that local values only are set.
+   setlocal ts=5 vts=7 sts=9 vsts=11
+   call assert_equal(&ts, 5)
+   call assert_equal(&vts, '7')
+   call assert_equal(&sts, 9)
+   call assert_equal(&vsts, '11')
+   new
+   call assert_equal(&ts, 4)
+   call assert_equal(&vts, '6')
+   call assert_equal(&sts, 8)
+   call assert_equal(&vsts, '10')
+   bwipeout!
+ 
+   " Check that global values only are set.
+   setglobal ts=6 vts=8 sts=10 vsts=12
+   call assert_equal(&ts, 5)
+   call assert_equal(&vts, '7')
+   call assert_equal(&sts, 9)
+   call assert_equal(&vsts, '11')
+   new
+   call assert_equal(&ts, 6)
+   call assert_equal(&vts, '8')
+   call assert_equal(&sts, 10)
+   call assert_equal(&vsts, '12')
+   bwipeout!
+ 
+   bwipeout!
+ endfunc
*** ../vim-8.1.0104/src/version.c	2018-06-23 17:14:36.801909989 +0200
--- src/version.c	2018-06-23 19:18:18.788276086 +0200
***************
*** 677,682 ****
--- 677,687 ----
  #else
  	"-user_commands",
  #endif
+ #ifdef FEAT_VARTABS
+ 	"+vartabs",
+ #else
+ 	"-vartabs",
+ #endif
  	"+vertsplit",
  #ifdef FEAT_VIRTUALEDIT
  	"+virtualedit",
*** ../vim-8.1.0104/src/workshop.c	2017-11-18 21:10:42.000000000 +0100
--- src/workshop.c	2018-06-23 17:41:10.116365995 +0200
***************
*** 49,55 ****
--- 49,59 ----
  static void	 warp_to_pc(int);
  #ifdef FEAT_BEVAL_GUI
  void		 workshop_beval_cb(BalloonEval *, int);
+ # ifdef FEAT_VARTABS
+ static int	 computeIndex(int, char_u *, int, int *);
+ # else
  static int	 computeIndex(int, char_u *, int);
+ # endif
  #endif
  static char	*fixAccelText(char *);
  static void	 addMenu(char *, char *, char *);
***************
*** 1534,1540 ****
--- 1538,1548 ----
  	     * a column number. Compute the index from col. Also set
  	     * line to 0 because thats what dbx expects.
  	     */
+ #ifdef FEAT_VARTABS
+ 	    idx = computeIndex(col, text, beval->ts, beval->vts);
+ #else
  	    idx = computeIndex(col, text, beval->ts);
+ #endif
  	    if (idx > 0)
  	    {
  		lnum = 0;
***************
*** 1569,1575 ****
  computeIndex(
  	int		 wantedCol,
  	char_u		*line,
! 	int		 ts)
  {
      int		 col = 0;
      int		 idx = 0;
--- 1577,1587 ----
  computeIndex(
  	int		 wantedCol,
  	char_u		*line,
! 	int		 ts
! #ifdef FEAT_VARTABS
! 	int		*vts
! #else
! 	)
  {
      int		 col = 0;
      int		 idx = 0;
***************
*** 1577,1583 ****
--- 1589,1599 ----
      while (line[idx])
      {
  	if (line[idx] == '\t')
+ #ifdef FEAT_VARTABS
+ 	    col += tabstop_padding(col, ts, vts);
+ #else
  	    col += ts - (col % ts);
+ #endif
  	else
  	    col++;
  	idx++;
*** ../vim-8.1.0104/src/Makefile	2018-06-03 14:42:17.836505122 +0200
--- src/Makefile	2018-06-23 18:09:24.498279403 +0200
***************
*** 2305,2310 ****
--- 2305,2311 ----
  	test_usercommands \
  	test_utf8 \
  	test_utf8_comparisons \
+ 	test_vartabs \
  	test_viminfo \
  	test_vimscript \
  	test_virtualedit \
*** ../vim-8.1.0104/src/version.c	2018-06-23 17:14:36.801909989 +0200
--- src/version.c	2018-06-23 19:18:18.788276086 +0200
***************
*** 780,781 ****
--- 785,788 ----
  {   /* Add new patch number below this line */
+ /**/
+     105,
  /**/

-- 
# echo reboot >universe
# chmod +x universe
# ./universe

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///