mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-06 16:05:05 +02:00
The half line box drawing characters
This commit is contained in:
@@ -123,6 +123,18 @@ box_chars = {
|
||||
'┇': [p(vholes, num=2, level=3)],
|
||||
'┊': [p(vholes, num=3)],
|
||||
'┋': [p(vholes, num=3, level=3)],
|
||||
'╴': [half_hline],
|
||||
'╵': [half_vline],
|
||||
'╶': [p(half_hline, which='right')],
|
||||
'╷': [p(half_vline, which='bottom')],
|
||||
'╸': [p(half_hline, level=3)],
|
||||
'╹': [p(half_vline, level=3)],
|
||||
'╺': [p(half_hline, which='right', level=3)],
|
||||
'╻': [p(half_vline, which='bottom', level=3)],
|
||||
'╼': [half_hline, p(half_hline, level=3, which='right')],
|
||||
'╽': [half_vline, p(half_vline, level=3, which='bottom')],
|
||||
'╾': [p(half_hline, level=3), p(half_hline, which='right')],
|
||||
'╿': [p(half_vline, level=3), p(half_vline, which='bottom')],
|
||||
}
|
||||
|
||||
t, f = 1, 3
|
||||
|
||||
Reference in New Issue
Block a user