Browse code

Add implementation

Robert Cranston authored on 03/06/2022 01:42:07
Showing 12 changed files

... ...
@@ -13,3 +13,37 @@ profile:
13 13
 		--cmd 'profile! file  ./**.vim' \
14 14
 		-c    'args **/*.*' \
15 15
 		-c    'qall!'
16
+
17
+.PHONY: test
18
+test:
19
+	vim \
20
+		-u test/vimrc \
21
+		-c 'args test/test.in' \
22
+		-c 'set commentstring=#%s shiftwidth=2' \
23
+		-c 'UnobtrusiveFoldComment!' \
24
+		-c 'UnobtrusiveFoldDebug' \
25
+		-c 'write! test/test.out' \
26
+		-c 'qall!'
27
+	diff --color -u test/test.txt test/test.out
28
+
29
+.PHONY: demo
30
+demo:
31
+	printf '%s %s\n' \
32
+		'vimrc' '~/.vim/vimrc' \
33
+		'yaml'  '~/projects/ansible/playbook/desktop/desktop.yml' \
34
+	| while read name file; \
35
+	do \
36
+		< /dev/null asciinema rec "doc/demo-$$name.cast" \
37
+			--overwrite \
38
+			--title "demo-$$name" \
39
+			--cols=80 \
40
+			--rows=50 \
41
+			--command "vim \
42
+				-u test/vimrc \
43
+				-c 'silent call Demo(\"$$file\")' \
44
+			"; \
45
+		svg-term \
46
+			--from 50 \
47
+			--in  "doc/demo-$$name.cast" \
48
+			--out "doc/demo-$$name.svg"; \
49
+	done
... ...
@@ -2,10 +2,39 @@
2 2
 
3 3
 A [Vim][] [plugin][] for unobtrusive [folds][].
4 4
 
5
+This plugin provides an improved mix of [`'foldmethod'`][] [`marker`][] and
6
+[`indent`][] (implemented with [`expr`][]), with markers that blend well with
7
+the [`'filetype'`][] (based on [`'commentstring'`][] or e.g. markup headings)
8
+and optional nested indented paragraph folds. It ends folds automatically when
9
+indentation drops and allocates empty lines to folds in such a way that it is
10
+easy to identify folds of different levels (creating a nice table of content
11
+when almost all folds are closed), without explicit end markers.
12
+
13
+Also provided is a [`'foldtext'`][] function and a command to debug
14
+[`'foldexpr'`][]s.
15
+
5 16
 [`vim-unobtrusive-fold`]: https://git.rcrnstn.net/rcrnstn/vim-unobtrusive-fold
6 17
 [Vim]: https://en.wikipedia.org/wiki/Vim_(text_editor)
7 18
 [plugin]: https://vimhelp.org/usr_05.txt.html#plugin
8 19
 [folds]: https://vimhelp.org/folds.txt.html#folds
20
+[`'foldmethod'`]: https://vimhelp.org/options.txt.html#%27foldmethod%27
21
+[`marker`]: https://vimhelp.org/fold.txt.html#fold-marker
22
+[`indent`]: https://vimhelp.org/fold.txt.html#fold-indent
23
+[`expr`]: https://vimhelp.org/fold.txt.html#fold-expr
24
+[`'filetype'`]: https://vimhelp.org/options.txt.html#%27filetype%27
25
+[`'commentstring'`]: https://vimhelp.org/options.txt.html#%27commentstring%27
26
+[`'foldtext'`]: https://vimhelp.org/options.txt.html#%27foldtext%27
27
+[`'foldexpr'`]: https://vimhelp.org/options.txt.html#%27foldexpr%27
28
+
29
+## Usage
30
+
31
+See the [documentation](doc/unobtrusive-fold.txt) for details about usage.
32
+
33
+## Demo
34
+
35
+![vimrc](doc/demo-vimrc.svg)
36
+
37
+![yaml](doc/demo-yaml.svg)
9 38
 
10 39
 ## License
11 40
 
12 41
new file mode 100644
... ...
@@ -0,0 +1,252 @@
1
+"" Guard
2
+if exists('g:autoloaded_unobtrusive_folds') || &compatible
3
+  finish
4
+endif
5
+let g:autoloaded_unobtrusive_folds = 1
6
+
7
+"" Configuration
8
+
9
+""
10
+" @section Configuration, config
11
+" Since this method of folding is more involved than the built-in ones it can
12
+" be slow for very big files. Options are provided to mitigate this.
13
+
14
+""" g:unobtrusive_fold_max_lines
15
+if !exists('g:unobtrusive_fold_max_lines')
16
+  ""
17
+  " Set to non-zero value to make the commands below do nothing if the number
18
+  " of lines in the current buffer is higher than the given value. Defaults to
19
+  " 0.
20
+  let g:unobtrusive_fold_max_lines = 0
21
+endif
22
+
23
+""" g:unobtrusive_fold_max_prevlines
24
+if !exists('g:unobtrusive_fold_max_prevlines')
25
+  ""
26
+  " Set to non-zero value to look at at most this many previous lines when
27
+  " calculating folds. Defaults to 0.
28
+  let g:unobtrusive_fold_max_prevlines = 0
29
+endif
30
+
31
+"" Constants
32
+
33
+let s:pattern_prefix = '\V\c\^\s\*'
34
+
35
+"" Functions
36
+
37
+""" #text()
38
+
39
+""
40
+" @public
41
+" Set 'foldtext' to this function to get an improved version of
42
+" `getline(v:foldstart)`. Leading tabs are expanded to 'tabstop' spaces. If
43
+" 'fillchars' `fold:` is not space, the number of lines included in the fold is
44
+" printed, padded with `fold:` so that it lines up with one column short of the
45
+" right edge of the window, or 'textwidth' (if not 0), whichever is smaller.
46
+" The empty column at the far right is nice for people who set 'colorcolumn' to
47
+" `+1`. The rest of the line is cleared (i.e. not filled automatically by Vim
48
+" with 'fillchars' `fold:`). A good value for `fold:` might be the box drawing
49
+" character `─`.
50
+function! unobtrusive_fold#text() abort
51
+  let line = getline(v:foldstart)
52
+  let line = substitute(line, '\t', repeat(' ', &l:tabstop), 'g')
53
+  let fillchar = matchstr(&fillchars, '.*\(^\|,\)fold:\zs.\ze')
54
+  if empty(fillchar)
55
+    let fillchar = '-'
56
+  endif
57
+  if fillchar !=# ' '
58
+    let foldlines = v:foldend - v:foldstart + 1
59
+    let signs = len(split(execute('sign place buffer=' . bufnr()), '\n')) - 1
60
+    let numbers = &l:number ? line('$') : &l:relativenumber ? winheight(0) : 0
61
+    let winwidth = winwidth(0)
62
+    \ - &l:foldcolumn
63
+    \ - (signs && &l:signcolumn ==# 'auto' || &l:signcolumn ==# 'yes' ? 2 : 0)
64
+    \ - (numbers ? max([&l:numberwidth, strlen(numbers) + 1]) : 0)
65
+    let width = winwidth - 1
66
+    if &l:textwidth
67
+      let width = min([width, &l:textwidth])
68
+    endif
69
+    let fill = repeat(fillchar, width - strlen(line) - strlen(foldlines) - 2)
70
+    let pad = repeat(' ', winwidth - width)
71
+    let line = line . ' ' . fill . ' ' . foldlines . pad
72
+  endif
73
+  return line
74
+endfunction
75
+
76
+""" #comment()
77
+
78
+function! unobtrusive_fold#comment(bang) abort
79
+  if empty(&l:commentstring)
80
+    return
81
+  endif
82
+  let commentstart = escape(split(&l:commentstring, '\s*%s')[0], '\')
83
+  let commentlast  = escape(commentstart[-1:],                   '\')
84
+  call unobtrusive_fold#set(
85
+  \   a:bang,
86
+  \   commentstart . '\zs' . commentlast . '\+\ze',
87
+  \   commentstart,
88
+  \   []
89
+  \ )
90
+endfunction
91
+
92
+""" #char()
93
+
94
+function! unobtrusive_fold#char(bang, char) abort
95
+  let char = escape(a:char, '\')
96
+  call unobtrusive_fold#set(
97
+  \   a:bang,
98
+  \   '\zs' . char . '\+\ze',
99
+  \   '',
100
+  \   ['Comment', 'Code', 'Snippet']
101
+  \ )
102
+endfunction
103
+
104
+""" #set()
105
+
106
+function! unobtrusive_fold#set(bang, pattern, commentstart, ignore) abort
107
+  if g:unobtrusive_fold_max_lines && line('$') > g:unobtrusive_fold_max_lines
108
+    return
109
+  endif
110
+  let w:unobtrusive_fold_indent       = !empty(a:bang)
111
+  let w:unobtrusive_fold_pattern      = a:pattern . '\s\*\S'
112
+  let w:unobtrusive_fold_ignore       = a:ignore
113
+  let w:unobtrusive_fold_commentstart = a:commentstart
114
+  let &l:foldexpr   = 'unobtrusive_fold#expr()'
115
+  let &l:foldmethod = 'expr'
116
+endfunction
117
+
118
+""" s:foldlevel()
119
+
120
+function! s:foldlevel(lnum) abort
121
+  let foldlevel = strlen(matchstr(
122
+  \   getline(a:lnum),
123
+  \   s:pattern_prefix . w:unobtrusive_fold_pattern
124
+  \ ))
125
+  if foldlevel && !empty(w:unobtrusive_fold_ignore)
126
+    for syntax in map(synstack(a:lnum, 1), 'synIDattr(v:val, "name")')
127
+      for ignore in w:unobtrusive_fold_ignore
128
+        if syntax =~# '\v' . '(^|[a-z])' . ignore . '([A-Z]|$)'
129
+          return 0
130
+        endif
131
+      endfor
132
+    endfor
133
+  endif
134
+  return foldlevel
135
+endfunction
136
+
137
+""" s:indent()
138
+
139
+function! s:indent(lnum, ...) abort
140
+  if (a:lnum < 1 && line('$') < a:lnum) || (a:0 && s:foldlevel(a:lnum))
141
+    return 0
142
+  endif
143
+  return !empty(getline(a:lnum)) + indent(a:lnum) / shiftwidth()
144
+endfunction
145
+
146
+""" s:prevfoldlevelbase()
147
+
148
+function! s:prevfoldlevelbase(lnum) abort
149
+  let stopline = g:unobtrusive_fold_max_prevlines
150
+  \ ? max(1, a:lnum - g:unobtrusive_fold_max_prevlines)
151
+  \ : 0
152
+  let pattern_column = '\%<' . (indent(a:lnum) + 2) . 'v'
153
+  let pos = getpos('.')
154
+  call cursor(a:lnum, 1)
155
+  let prev = search(
156
+  \   s:pattern_prefix . pattern_column . w:unobtrusive_fold_pattern,
157
+  \   'bW',
158
+  \   stopline
159
+  \ )
160
+  call setpos('.', pos)
161
+  if !prev
162
+    return [0, 0]
163
+  endif
164
+  let foldlevel = s:foldlevel(prev)
165
+  return [foldlevel, foldlevel - indent(prev) / shiftwidth()]
166
+endfunction
167
+
168
+""" s:nextnonblank()
169
+
170
+function! s:nextnonblank(lnum)
171
+  if empty(w:unobtrusive_fold_commentstart)
172
+    return nextnonblank(a:lnum)
173
+  endif
174
+  let pos = getpos('.')
175
+  call cursor(a:lnum, 1)
176
+  let next = search(
177
+  \   '\V\^\(' . w:unobtrusive_fold_commentstart . '\[[:punct:]]\*\$\)\@!\.',
178
+  \   'Wc'
179
+  \ )
180
+  call setpos('.', pos)
181
+  return next
182
+endfunction
183
+
184
+""" #expr()
185
+
186
+function! unobtrusive_fold#expr() abort
187
+  """" Empty line
188
+  if empty(getline(v:lnum))
189
+    return '='
190
+  endif
191
+  """" Marker...
192
+  """" ...start
193
+  let foldlevel = s:foldlevel(v:lnum)
194
+  if foldlevel
195
+    return '>' . foldlevel
196
+  endif
197
+  """" ...end...
198
+  let next = s:nextnonblank(v:lnum + 1)
199
+  """" ...foldlevel
200
+  let nextfoldlevel = s:foldlevel(next)
201
+  if nextfoldlevel
202
+    let prevfoldlevel = s:prevfoldlevelbase(v:lnum)[0]
203
+    return '<' . (min([nextfoldlevel, prevfoldlevel]) + 1)
204
+  endif
205
+  """" ...indent
206
+  if indent(next) < indent(v:lnum)
207
+    let prevfoldlevel = s:prevfoldlevelbase(v:lnum)[0]
208
+    let nextfoldlevel = s:prevfoldlevelbase(next)[0]
209
+    if nextfoldlevel < prevfoldlevel
210
+      return '<' . (nextfoldlevel + 1)
211
+    endif
212
+  endif
213
+  """" Indent...
214
+  if w:unobtrusive_fold_indent
215
+    let indent      = s:indent(v:lnum)
216
+    let nextindent  = s:indent(next)
217
+    let aboveindent = s:indent(v:lnum - 1, 1)
218
+    let belowindent = s:indent(v:lnum + 1, 1)
219
+    """" ...start
220
+    if aboveindent < indent && (belowindent >= indent || nextindent > indent)
221
+      let prevbase = s:prevfoldlevelbase(v:lnum)[1]
222
+      return '>' . (prevbase + indent)
223
+    endif
224
+    """" ...end
225
+    if belowindent < indent && (aboveindent || belowindent)
226
+      let prevbase = s:prevfoldlevelbase(v:lnum)[1]
227
+      return '<' . (prevbase + min([indent, nextindent + !!belowindent]))
228
+    endif
229
+  endif
230
+  """" No change
231
+  return '='
232
+endfunction
233
+
234
+""" #debug()
235
+
236
+function! unobtrusive_fold#debug() abort
237
+  let lines  = range(1, line('$'))
238
+  let exprs  = map(copy(lines), 'execute("let v:lnum=v:val|echon ".&foldexpr)')
239
+  for l in lines
240
+    let e = exprs[l-1]
241
+    if len(e) == 1
242
+      let exprs[l-1] = e =~# '^[0-9]$' ? ' '.e : e.' '
243
+    endif
244
+  endfor
245
+  let levels = map(copy(lines), 'foldlevel(v:val)')
246
+  let debugs = map(copy(lines), '"[".exprs[v:val-1]."|".levels[v:val-1]."]"')
247
+
248
+  let pos = getpos('.')
249
+  call setreg('"', join(debugs, "\n"), 'b')
250
+  normal! gg0""P
251
+  call setpos('.', pos)
252
+endfunction
0 253
new file mode 100644
... ...
@@ -0,0 +1,57 @@
1
+{"version": 2, "width": 80, "height": 50, "timestamp": 1660925634, "env": {"SHELL": "/bin/bash", "TERM": "xterm-256color"}, "title": "demo-vimrc"}
2
+[0.021508, "o", "\u001b[?1049h\u001b[22;0;0t\u001b[>4;2m\u001b[?1h\u001b=\u001b[?2004h\u001b[?1004h\u001b[1;50r\u001b[?12h\u001b[?12l\u001b[22;2t\u001b[22;1t"]
3
+[0.022702, "o", "\u001b[27m\u001b[23m\u001b[29m\u001b[m\u001b[H\u001b[2J"]
4
+[0.098355, "o", "\u001b[50;1H                 \r"]
5
+[0.098972, "o", "\u001b[27m\u001b[23m\u001b[29m\u001b[m\u001b[H\u001b[2J\u001b[?25l\u001b[1;1H\u001b[38;5;248m\"\" My |vimrc| ─\u001b[1;16H─\u001b[1;17H─\u001b[1;18H─\u001b[1;19H─\u001b[1;20H─\u001b[1;21H─\u001b[1;22H─\u001b[1;23H─\u001b[1;24H─\u001b[1;25H─\u001b[1;26H─\u001b[1;27H─\u001b[1;28H─\u001b[1;29H─\u001b[1;30H─\u001b[1;31H─\u001b[1;32H─\u001b[1;33H─\u001b[1;34H─\u001b[1;35H─\u001b[1;36H─\u001b[1;37H─\u001b[1;38H─\u001b[1;39H─\u001b[1;40H─\u001b[1;41H─\u001b[1;42H─\u001b[1;43H─\u001b[1;44H─\u001b[1;45H─\u001b[1;46H─\u001b[1;47H─\u001b[1;48H─\u001b[1;49H─\u001b[1;50H─\u001b[1;51H─\u001b[1;52H─\u001b[1;53H─\u001b[1;54H─\u001b[1;55H─\u001b[1;56H─\u001b[1;57H─\u001b[1;58H─\u001b[1;59H─\u001b[1;60H─\u001b[1;61H─\u001b[1;62H─\u001b[1;63H─\u001b[1;64H─\u001b[1;65H─\u001b[1;66H─\u001b[1;67H─\u001b[1;68H─\u001b[1;69H─\u001b[1;70H─\u001b[1;71H─\u001b[1;72H─\u001b[1;73H─\u001b[1;74H─\u001b[1;75H─\u001b[1;76H─\u001b[1;77H 74 \u001b[2;1H\"\" Options ─\u001b[2;13H─\u001b[2;14H─\u001b[2;15H─\u001b[2;16H─\u001b[2;17H─\u001b[2;18H─\u001b[2;19H─\u001b[2;20H─\u001b[2;21H─\u001b[2;22H─\u001b[2;23H─\u001b[2;24H─\u001b[2;25H─\u001b[2;26H─\u001b[2;27H─\u001b[2;28H─\u001b[2;29H─\u001b[2;30H─\u001b[2;31H─\u001b[2;32H─\u001b[2;33H─\u001b[2;34H─\u001b[2;35H─\u001b[2;36H─\u001b[2;37H─\u001b[2;38H─\u001b[2;39H─\u001b[2;40H─\u001b[2;41H─\u001b[2;42H─\u001b[2;43H─\u001b[2;44H"]
6
+[0.099048, "o", "─\u001b[2;45H─\u001b[2;46H─\u001b[2;47H─\u001b[2;48H─\u001b[2;49H─\u001b[2;50H─\u001b[2;51H─\u001b[2;52H─\u001b[2;53H─\u001b[2;54H─\u001b[2;55H─\u001b[2;56H─\u001b[2;57H─\u001b[2;58H─\u001b[2;59H─\u001b[2;60H─\u001b[2;61H─\u001b[2;62H─\u001b[2;63H─\u001b[2;64H─\u001b[2;65H─\u001b[2;66H─\u001b[2;67H─\u001b[2;68H─\u001b[2;69H─\u001b[2;70H─\u001b[2;71H─\u001b[2;72H─\u001b[2;73H─\u001b[2;74H─\u001b[2;75H─\u001b[2;76H 132 \u001b[3;1H\"\" Mappings ─\u001b[3;14H─\u001b[3;15H─\u001b[3;16H─\u001b[3;17H─\u001b[3;18H─\u001b[3;19H─\u001b[3;20H─\u001b[3;21H─\u001b[3;22H─\u001b[3;23H─\u001b[3;24H─\u001b[3;25H─\u001b[3;26H─\u001b[3;27H─\u001b[3;28H─\u001b[3;29H─\u001b[3;30H─\u001b[3;31H─\u001b[3;32H─\u001b[3;33H─\u001b[3;34H─\u001b[3;35H─\u001b[3;36H─\u001b[3;37H─\u001b[3;38H─\u001b[3;39H─\u001b[3;40H─\u001b[3;41H─\u001b[3;42H─\u001b[3;43H─\u001b[3;44H─\u001b[3;45H─\u001b[3;46H─\u001b[3;47H─\u001b[3;48H─\u001b[3;49H─\u001b[3;50H─\u001b[3;51H─\u001b[3;52H─\u001b[3;53H─\u001b[3;54H─\u001b[3;55H─\u001b[3;56H─\u001b[3;57H─\u001b[3;58H─\u001b[3;59H─\u001b[3;60H─\u001b[3;61H─\u001b[3;62H─\u001b[3;63H─\u001b[3;64H─\u001b[3;65H─\u001b[3;66H─\u001b[3;67H─\u001b[3;68H─\u001b[3;69H─\u001b[3;70H─\u001b[3;71H─\u001b[3;72H─\u001b[3;73H─"]
7
+[0.099182, "o", "\u001b[3;74H─\u001b[3;75H─\u001b[3;76H 183 \u001b[4;1H\"\" Auto commands ─\u001b[4;19H─\u001b[4;20H─\u001b[4;21H─\u001b[4;22H─\u001b[4;23H─\u001b[4;24H─\u001b[4;25H─\u001b[4;26H─\u001b[4;27H─\u001b[4;28H─\u001b[4;29H─\u001b[4;30H─\u001b[4;31H─\u001b[4;32H─\u001b[4;33H─\u001b[4;34H─\u001b[4;35H─\u001b[4;36H─\u001b[4;37H─\u001b[4;38H─\u001b[4;39H─\u001b[4;40H─\u001b[4;41H─\u001b[4;42H─\u001b[4;43H─\u001b[4;44H─\u001b[4;45H─\u001b[4;46H─\u001b[4;47H─\u001b[4;48H─\u001b[4;49H─\u001b[4;50H─\u001b[4;51H─\u001b[4;52H─\u001b[4;53H─\u001b[4;54H─\u001b[4;55H─\u001b[4;56H─\u001b[4;57H─\u001b[4;58H─\u001b[4;59H─\u001b[4;60H─\u001b[4;61H─\u001b[4;62H─\u001b[4;63H─\u001b[4;64H─\u001b[4;65H─\u001b[4;66H─\u001b[4;67H─\u001b[4;68H─\u001b[4;69H─\u001b[4;70H─\u001b[4;71H─\u001b[4;72H─\u001b[4;73H─\u001b[4;74H─\u001b[4;75H─\u001b[4;76H─\u001b[4;77H 31 \u001b[5;1H\"\" Colors ─\u001b[5;12H─\u001b[5;13H─\u001b[5;14H─\u001b[5;15H─\u001b[5;16H─\u001b[5;17H─\u001b[5;18H─\u001b[5;19H─\u001b[5;20H─\u001b[5;21H─\u001b[5;22H─\u001b[5;23H─\u001b[5;24H─\u001b[5;25H─\u001b[5;26H─\u001b[5;27H─\u001b[5;28H─\u001b[5;29H─\u001b[5;30H─\u001b[5;31H─\u001b[5;32H─\u001b[5;33H─\u001b[5;34H─\u001b[5;35H─\u001b[5;36H─\u001b[5;37H─\u001b[5;38H─\u001b[5;39H─\u001b[5;40H─\u001b[5;41H─\u001b[5;42H─\u001b[5;43H─\u001b[5;44H─\u001b[5;45H─\u001b[5;46H─\u001b[5;47"]
8
+[0.099208, "o", "H─\u001b[5;48H─\u001b[5;49H─\u001b[5;50H─\u001b[5;51H─\u001b[5;52H─\u001b[5;53H─\u001b[5;54H─\u001b[5;55H─\u001b[5;56H─\u001b[5;57H─\u001b[5;58H─\u001b[5;59H─\u001b[5;60H─\u001b[5;61H─\u001b[5;62H─\u001b[5;63H─\u001b[5;64H─\u001b[5;65H─\u001b[5;66H─\u001b[5;67H─\u001b[5;68H─\u001b[5;69H─\u001b[5;70H─\u001b[5;71H─\u001b[5;72H─\u001b[5;73H─\u001b[5;74H─\u001b[5;75H─\u001b[5;76H─\u001b[5;77H 73 \u001b[6;1H\"\" Plugins ─\u001b[6;13H─\u001b[6;14H─\u001b[6;15H─\u001b[6;16H─\u001b[6;17H─\u001b[6;18H─\u001b[6;19H─\u001b[6;20H─\u001b[6;21H─\u001b[6;22H─\u001b[6;23H─\u001b[6;24H─\u001b[6;25H─\u001b[6;26H─\u001b[6;27H─\u001b[6;28H─\u001b[6;29H─\u001b[6;30H─\u001b[6;31H─\u001b[6;32H─\u001b[6;33H─\u001b[6;34H─\u001b[6;35H─\u001b[6;36H─\u001b[6;37H─\u001b[6;38H─\u001b[6;39H─\u001b[6;40H─\u001b[6;41H─\u001b[6;42H─\u001b[6;43H─\u001b[6;44H─\u001b[6;45H─\u001b[6;46H─\u001b[6;47H─\u001b[6;48H─\u001b[6;49H─\u001b[6;50H─\u001b[6;51H─\u001b[6;52H─\u001b[6;53H─\u001b[6;54H─\u001b[6;55H─\u001b[6;56H─\u001b[6;57H─\u001b[6;58H─\u001b[6;59H─\u001b[6;60H─\u001b[6;61H─\u001b[6;62H─\u001b[6;63H─\u001b[6;64H─\u001b[6;65H─\u001b[6;66H─\u001b[6;67H─\u001b[6;68H─\u001b[6;69H─\u001b[6;70H─\u001b[6;71H─\u001b[6;72H─\u001b[6;73H─\u001b[6;74H─"]
9
+[0.099428, "o", "\u001b[6;75H─\u001b[6;76H 324 \u001b[7;1H\"\" Syntax and file type ─\u001b[7;26H─\u001b[7;27H─\u001b[7;28H─\u001b[7;29H─\u001b[7;30H─\u001b[7;31H─\u001b[7;32H─\u001b[7;33H─\u001b[7;34H─\u001b[7;35H─\u001b[7;36H─\u001b[7;37H─\u001b[7;38H─\u001b[7;39H─\u001b[7;40H─\u001b[7;41H─\u001b[7;42H─\u001b[7;43H─\u001b[7;44H─\u001b[7;45H─\u001b[7;46H─\u001b[7;47H─\u001b[7;48H─\u001b[7;49H─\u001b[7;50H─\u001b[7;51H─\u001b[7;52H─\u001b[7;53H─\u001b[7;54H─\u001b[7;55H─\u001b[7;56H─\u001b[7;57H─\u001b[7;58H─\u001b[7;59H─\u001b[7;60H─\u001b[7;61H─\u001b[7;62H─\u001b[7;63H─\u001b[7;64H─\u001b[7;65H─\u001b[7;66H─\u001b[7;67H─\u001b[7;68H─\u001b[7;69H─\u001b[7;70H─\u001b[7;71H─\u001b[7;72H─\u001b[7;73H─\u001b[7;74H─\u001b[7;75H─\u001b[7;76H─\u001b[7;77H─\u001b[7;78H 6 \u001b[8;1H\"\" File type overrides ─\u001b[8;25H─\u001b[8;26H─\u001b[8;27H─\u001b[8;28H─\u001b[8;29H─\u001b[8;30H─\u001b[8;31H─\u001b[8;32H─\u001b[8;33H─\u001b[8;34H─\u001b[8;35H─\u001b[8;36H─\u001b[8;37H─\u001b[8;38H─\u001b[8;39H─\u001b[8;40H─\u001b[8;41H─\u001b[8;42H─\u001b[8;43H─\u001b[8;44H─\u001b[8;45H─\u001b[8;46H─\u001b[8;47H─\u001b[8;48H─\u001b[8;49H─\u001b[8;50H─\u001b[8;51H─\u001b[8;52H─\u001b[8;53H─\u001b[8;54H─\u001b[8;55H─\u001b[8;56H─\u001b[8;57H─\u001b[8;58H─\u001b[8;59H─\u001b[8;60H─\u001b[8;61H─\u001b[8;62H─\u001b[8;63H─\u001b[8;64H─\u001b[8;65H"]
10
+[0.099447, "o", "─\u001b[8;66H─\u001b[8;67H─\u001b[8;68H─\u001b[8;69H─\u001b[8;70H─\u001b[8;71H─\u001b[8;72H─\u001b[8;73H─\u001b[8;74H─\u001b[8;75H─\u001b[8;76H─\u001b[8;77H 25 \u001b[9;1H\"\" Terminal overrides ─\u001b[9;24H─\u001b[9;25H─\u001b[9;26H─\u001b[9;27H─\u001b[9;28H─\u001b[9;29H─\u001b[9;30H─\u001b[9;31H─\u001b[9;32H─\u001b[9;33H─\u001b[9;34H─\u001b[9;35H─\u001b[9;36H─\u001b[9;37H─\u001b[9;38H─\u001b[9;39H─\u001b[9;40H─\u001b[9;41H─\u001b[9;42H─\u001b[9;43H─\u001b[9;44H─\u001b[9;45H─\u001b[9;46H─\u001b[9;47H─\u001b[9;48H─\u001b[9;49H─\u001b[9;50H─\u001b[9;51H─\u001b[9;52H─\u001b[9;53H─\u001b[9;54H─\u001b[9;55H─\u001b[9;56H─\u001b[9;57H─\u001b[9;58H─\u001b[9;59H─\u001b[9;60H─\u001b[9;61H─\u001b[9;62H─\u001b[9;63H─\u001b[9;64H─\u001b[9;65H─\u001b[9;66H─\u001b[9;67H─\u001b[9;68H─\u001b[9;69H─\u001b[9;70H─\u001b[9;71H─\u001b[9;72H─\u001b[9;73H─\u001b[9;74H─\u001b[9;75H─\u001b[9;76H─\u001b[9;77H 56 \u001b[m\u001b[10;1H\u001b[94m~                                                                               \u001b[11;1H~                                                                               \u001b[12;1H~                                                                               "]
11
+[0.09951, "o", "\u001b[13;1H~                                                                               \u001b[14;1H~                                                                               \u001b[15;1H~                                                                               \u001b[16;1H~                                                                               \u001b[17;1H~                                                                               \u001b[18;1H~                                                                               \u001b[19;1H~                                                                               \u001b[20;1H~                                                                               \u001b[21;1H~                                                                               \u001b[22;1H~                                                                               \u001b[23;1H~                                                                               \u001b[24;1H~                                                           "]
12
+[0.099535, "o", "                    \u001b[25;1H~                                                                               \u001b[26;1H~                                                                               \u001b[27;1H~                                                                               \u001b[28;1H~                                                                               \u001b[29;1H~                                                                               \u001b[30;1H~                                                                               \u001b[31;1H~                                                                               \u001b[32;1H~                                                                               \u001b[33;1H~                                                                               \u001b[34;1H~                                                                               \u001b[35;1H~                                                                               "]
13
+[0.099774, "o", "\u001b[36;1H~                                                                               \u001b[37;1H~                                                                               \u001b[38;1H~                                                                               \u001b[39;1H~                                                                               \u001b[40;1H~                                                                               \u001b[41;1H~                                                                               \u001b[42;1H~                                                                               \u001b[43;1H~                                                                               \u001b[44;1H~                                                                               \u001b[45;1H~                                                                               \u001b[46;1H~                                                                               \u001b[47;1H~                                                           "]
14
+[0.099814, "o", "                    \u001b[48;1H~                                                                               \u001b[49;1H~                                                                               \u001b]2;vimrc (~/.vim) - VIM\u0007\u001b]1;vimrc\u0007\u001b[1;1H\u001b[?25h"]
15
+[1.100316, "o", "\u001b[50;1H\u001b[m                 \r\u001b[?25l\u001b[6;1H\u001b[?25h"]
16
+[2.100759, "o", "\u001b[50;1H                 \r"]
17
+[2.202079, "o", "\u001b[?25l\u001b[6;11H\u001b[K\u001b[7;1H\u001b[K\u001b[8;1H\u001b[93mif\u001b[m \u001b[1m\u001b[96mhas\u001b[m\u001b[38;5;224m(\u001b[m\u001b[95m'eval'\u001b[m\u001b[38;5;224m)\u001b[m\u001b[8;15H\u001b[K\u001b[9;1H\u001b[K\u001b[10;1H\u001b[38;5;248m  \"\"\" GitAdd ─\u001b[10;15H─\u001b[10;16H─\u001b[10;17H─\u001b[10;18H─\u001b[10;19H─\u001b[10;20H─\u001b[10;21H─\u001b[10;22H─\u001b[10;23H─\u001b[10;24H─\u001b[10;25H─\u001b[10;26H─\u001b[10;27H─\u001b[10;28H─\u001b[10;29H─\u001b[10;30H─\u001b[10;31H─\u001b[10;32H─\u001b[10;33H─\u001b[10;34H─\u001b[10;35H─\u001b[10;36H─\u001b[10;37H─\u001b[10;38H─\u001b[10;39H─\u001b[10;40H─\u001b[10;41H─\u001b[10;42H─\u001b[10;43H─\u001b[10;44H─\u001b[10;45H─\u001b[10;46H─\u001b[10;47H─\u001b[10;48H─\u001b[10;49H─\u001b[10;50H─\u001b[10;51H─\u001b[10;52H─\u001b[10;53H─\u001b[10;54H─\u001b[10;55H─\u001b[10;56H─\u001b[10;57H─\u001b[10;58H─\u001b[10;59H─\u001b[10;60H─\u001b[10;61H─\u001b[10;62H─\u001b[10;63H─\u001b[10;64H─\u001b[10;65H─\u001b[10;66H─\u001b[10;67H─\u001b[10;68H─\u001b[10;69H─\u001b[10;70H─\u001b[10;71H─\u001b[10;72H─\u001b[10;73H─\u001b[10;74H─\u001b[10;75H─\u001b[10;76H─\u001b[10;77H 20 \u001b[11;1H  \"\"\" File type ─\u001b[11;18H─\u001b[11;19H─\u001b[11;20H─\u001b[11;21H─\u001b[11;22H─\u001b[11;23H─\u001b[11;24H─\u001b[11;25H─\u001b[11;26H─\u001b[11;27H─\u001b[11;28H─\u001b[11;29H─\u001b[11;30H─\u001b[11;31"]
18
+[2.202199, "o", "H─\u001b[11;32H─\u001b[11;33H─\u001b[11;34H─\u001b[11;35H─\u001b[11;36H─\u001b[11;37H─\u001b[11;38H─\u001b[11;39H─\u001b[11;40H─\u001b[11;41H─\u001b[11;42H─\u001b[11;43H─\u001b[11;44H─\u001b[11;45H─\u001b[11;46H─\u001b[11;47H─\u001b[11;48H─\u001b[11;49H─\u001b[11;50H─\u001b[11;51H─\u001b[11;52H─\u001b[11;53H─\u001b[11;54H─\u001b[11;55H─\u001b[11;56H─\u001b[11;57H─\u001b[11;58H─\u001b[11;59H─\u001b[11;60H─\u001b[11;61H─\u001b[11;62H─\u001b[11;63H─\u001b[11;64H─\u001b[11;65H─\u001b[11;66H─\u001b[11;67H─\u001b[11;68H─\u001b[11;69H─\u001b[11;70H─\u001b[11;71H─\u001b[11;72H─\u001b[11;73H─\u001b[11;74H─\u001b[11;75H─\u001b[11;76H─\u001b[11;77H 50 \u001b[12;1H  \"\"\" Normal mode ─\u001b[12;20H─\u001b[12;21H─\u001b[12;22H─\u001b[12;23H─\u001b[12;24H─\u001b[12;25H─\u001b[12;26H─\u001b[12;27H─\u001b[12;28H─\u001b[12;29H─\u001b[12;30H─\u001b[12;31H─\u001b[12;32H─\u001b[12;33H─\u001b[12;34H─\u001b[12;35H─\u001b[12;36H─\u001b[12;37H─\u001b[12;38H─\u001b[12;39H─\u001b[12;40H─\u001b[12;41H─\u001b[12;42H─\u001b[12;43H─\u001b[12;44H─\u001b[12;45H─\u001b[12;46H─\u001b[12;47H─\u001b[12;48H─\u001b[12;49H─\u001b[12;50H─\u001b[12;51H─\u001b[12;52H─\u001b[12;53H─\u001b[12;54H─\u001b[12;55H─\u001b[12;56H─"]
19
+[2.202402, "o", "\u001b[12;57H─\u001b[12;58H─\u001b[12;59H─\u001b[12;60H─\u001b[12;61H─\u001b[12;62H─\u001b[12;63H─\u001b[12;64H─\u001b[12;65H─\u001b[12;66H─\u001b[12;67H─\u001b[12;68H─\u001b[12;69H─\u001b[12;70H─\u001b[12;71H─\u001b[12;72H─\u001b[12;73H─\u001b[12;74H─\u001b[12;75H─\u001b[12;76H─\u001b[12;77H 46 \u001b[13;1H  \"\"\" Insert mode ─\u001b[13;20H─\u001b[13;21H─\u001b[13;22H─\u001b[13;23H─\u001b[13;24H─\u001b[13;25H─\u001b[13;26H─\u001b[13;27H─\u001b[13;28H─\u001b[13;29H─\u001b[13;30H─\u001b[13;31H─\u001b[13;32H─\u001b[13;33H─\u001b[13;34H─\u001b[13;35H─\u001b[13;36H─\u001b[13;37H─\u001b[13;38H─\u001b[13;39H─\u001b[13;40H─\u001b[13;41H─\u001b[13;42H─\u001b[13;43H─\u001b[13;44H─\u001b[13;45H─\u001b[13;46H─\u001b[13;47H─\u001b[13;48H─\u001b[13;49H─\u001b[13;50H─\u001b[13;51H─\u001b[13;52H─\u001b[13;53H─\u001b[13;54H─\u001b[13;55H─\u001b[13;56H─\u001b[13;57H─\u001b[13;58H─\u001b[13;59H─\u001b[13;60H─\u001b[13;61H─\u001b[13;62H─\u001b[13;63H─\u001b[13;64H─\u001b[13;65H─\u001b[13;66H─\u001b[13;67H─\u001b[13;68H─\u001b[13;69H─\u001b[13;70H─\u001b[13;71H─\u001b[13;72H─\u001b[13;73H─\u001b[13;74H─\u001b[13;75H─\u001b[13;76H─\u001b[13;77H 12 \u001b[14;1H  \"\"\" Command-line mode ─\u001b[14;26H─\u001b[14;27H─\u001b[14;28H─\u001b[14;29H─\u001b[14;30H─\u001b[14;31H─\u001b[14;32H─\u001b[14;33H─\u001b[1"]
20
+[2.20244, "o", "4;34H─\u001b[14;35H─\u001b[14;36H─\u001b[14;37H─\u001b[14;38H─\u001b[14;39H─\u001b[14;40H─\u001b[14;41H─\u001b[14;42H─\u001b[14;43H─\u001b[14;44H─\u001b[14;45H─\u001b[14;46H─\u001b[14;47H─\u001b[14;48H─\u001b[14;49H─\u001b[14;50H─\u001b[14;51H─\u001b[14;52H─\u001b[14;53H─\u001b[14;54H─\u001b[14;55H─\u001b[14;56H─\u001b[14;57H─\u001b[14;58H─\u001b[14;59H─\u001b[14;60H─\u001b[14;61H─\u001b[14;62H─\u001b[14;63H─\u001b[14;64H─\u001b[14;65H─\u001b[14;66H─\u001b[14;67H─\u001b[14;68H─\u001b[14;69H─\u001b[14;70H─\u001b[14;71H─\u001b[14;72H─\u001b[14;73H─\u001b[14;74H─\u001b[14;75H─\u001b[14;76H─\u001b[14;77H─\u001b[14;78H 8 \u001b[15;1H  \"\"\" Operators ─\u001b[15;18H─\u001b[15;19H─\u001b[15;20H─\u001b[15;21H─\u001b[15;22H─\u001b[15;23H─\u001b[15;24H─\u001b[15;25H─\u001b[15;26H─\u001b[15;27H─\u001b[15;28H─\u001b[15;29H─\u001b[15;30H─\u001b[15;31H─\u001b[15;32H─\u001b[15;33H─\u001b[15;34H─\u001b[15;35H─\u001b[15;36H─\u001b[15;37H─\u001b[15;38H─\u001b[15;39H─\u001b[15;40H─\u001b[15;41H─\u001b[15;42H─\u001b[15;43H─\u001b[15;44H─\u001b[15;45H─\u001b[15;46H─\u001b[15;47H─\u001b[15;48H─\u001b[15;49H─\u001b[15;50H─\u001b[15;51H─\u001b[15;52H─\u001b[15;53H─\u001b[15;54H─\u001b[15;55H─\u001b[15;56H"]
21
+[2.202675, "o", "─\u001b[15;57H─\u001b[15;58H─\u001b[15;59H─\u001b[15;60H─\u001b[15;61H─\u001b[15;62H─\u001b[15;63H─\u001b[15;64H─\u001b[15;65H─\u001b[15;66H─\u001b[15;67H─\u001b[15;68H─\u001b[15;69H─\u001b[15;70H─\u001b[15;71H─\u001b[15;72H─\u001b[15;73H─\u001b[15;74H─\u001b[15;75H─\u001b[15;76H─\u001b[15;77H 16 \u001b[16;1H  \"\"\" Motions / text objects ─\u001b[16;31H─\u001b[16;32H─\u001b[16;33H─\u001b[16;34H─\u001b[16;35H─\u001b[16;36H─\u001b[16;37H─\u001b[16;38H─\u001b[16;39H─\u001b[16;40H─\u001b[16;41H─\u001b[16;42H─\u001b[16;43H─\u001b[16;44H─\u001b[16;45H─\u001b[16;46H─\u001b[16;47H─\u001b[16;48H─\u001b[16;49H─\u001b[16;50H─\u001b[16;51H─\u001b[16;52H─\u001b[16;53H─\u001b[16;54H─\u001b[16;55H─\u001b[16;56H─\u001b[16;57H─\u001b[16;58H─\u001b[16;59H─\u001b[16;60H─\u001b[16;61H─\u001b[16;62H─\u001b[16;63H─\u001b[16;64H─\u001b[16;65H─\u001b[16;66H─\u001b[16;67H─\u001b[16;68H─\u001b[16;69H─\u001b[16;70H─\u001b[16;71H─\u001b[16;72H─\u001b[16;73H─\u001b[16;74H─\u001b[16;75H─\u001b[16;76H─\u001b[16;77H 57 \u001b[17;1H  \"\"\" Colors ─\u001b[17;15H─\u001b[17;16H─\u001b[17;17H─\u001b[17;18H─\u001b[17;19H─\u001b[17;20H─\u001b[17;21H─\u001b[17;22H─\u001b[17;23H─\u001b[17;24H─\u001b[17;25H─\u001b[17;26H─\u001b[17;27H─\u001b[17;28H─\u001b[17;29H─\u001b[17;30H─\u001b[17;31H─\u001b[17;32H─\u001b[17;33H─"]
22
+[2.202712, "o", "\u001b[17;34H─\u001b[17;35H─\u001b[17;36H─\u001b[17;37H─\u001b[17;38H─\u001b[17;39H─\u001b[17;40H─\u001b[17;41H─\u001b[17;42H─\u001b[17;43H─\u001b[17;44H─\u001b[17;45H─\u001b[17;46H─\u001b[17;47H─\u001b[17;48H─\u001b[17;49H─\u001b[17;50H─\u001b[17;51H─\u001b[17;52H─\u001b[17;53H─\u001b[17;54H─\u001b[17;55H─\u001b[17;56H─\u001b[17;57H─\u001b[17;58H─\u001b[17;59H─\u001b[17;60H─\u001b[17;61H─\u001b[17;62H─\u001b[17;63H─\u001b[17;64H─\u001b[17;65H─\u001b[17;66H─\u001b[17;67H─\u001b[17;68H─\u001b[17;69H─\u001b[17;70H─\u001b[17;71H─\u001b[17;72H─\u001b[17;73H─\u001b[17;74H─\u001b[17;75H─\u001b[17;76H─\u001b[17;77H 15 \u001b[18;1H  \"\"\" Windows ─\u001b[18;16H─\u001b[18;17H─\u001b[18;18H─\u001b[18;19H─\u001b[18;20H─\u001b[18;21H─\u001b[18;22H─\u001b[18;23H─\u001b[18;24H─\u001b[18;25H─\u001b[18;26H─\u001b[18;27H─\u001b[18;28H─\u001b[18;29H─\u001b[18;30H─\u001b[18;31H─\u001b[18;32H─\u001b[18;33H─\u001b[18;34H─\u001b[18;35H─\u001b[18;36H─\u001b[18;37H─\u001b[18;38H─\u001b[18;39H─\u001b[18;40H─\u001b[18;41H─\u001b[18;42H─\u001b[18;43H─\u001b[18;44H─\u001b[18;45H─\u001b[18;46H─\u001b[18;47H─\u001b[18;48H─\u001b[18;49H─\u001b[18;50H─\u001b[18;51H─\u001b[18;52H─\u001b[18;53H─\u001b[18;54H─\u001b[18;55H"]
23
+[2.202999, "o", "─\u001b[18;56H─\u001b[18;57H─\u001b[18;58H─\u001b[18;59H─\u001b[18;60H─\u001b[18;61H─\u001b[18;62H─\u001b[18;63H─\u001b[18;64H─\u001b[18;65H─\u001b[18;66H─\u001b[18;67H─\u001b[18;68H─\u001b[18;69H─\u001b[18;70H─\u001b[18;71H─\u001b[18;72H─\u001b[18;73H─\u001b[18;74H─\u001b[18;75H─\u001b[18;76H─\u001b[18;77H─\u001b[18;78H 5 \u001b[19;1H  \"\"\" Folds ─\u001b[19;14H─\u001b[19;15H─\u001b[19;16H─\u001b[19;17H─\u001b[19;18H─\u001b[19;19H─\u001b[19;20H─\u001b[19;21H─\u001b[19;22H─\u001b[19;23H─\u001b[19;24H─\u001b[19;25H─\u001b[19;26H─\u001b[19;27H─\u001b[19;28H─\u001b[19;29H─\u001b[19;30H─\u001b[19;31H─\u001b[19;32H─\u001b[19;33H─\u001b[19;34H─\u001b[19;35H─\u001b[19;36H─\u001b[19;37H─\u001b[19;38H─\u001b[19;39H─\u001b[19;40H─\u001b[19;41H─\u001b[19;42H─\u001b[19;43H─\u001b[19;44H─\u001b[19;45H─\u001b[19;46H─\u001b[19;47H─\u001b[19;48H─\u001b[19;49H─\u001b[19;50H─\u001b[19;51H─\u001b[19;52H─\u001b[19;53H─\u001b[19;54H─\u001b[19;55H─\u001b[19;56H─\u001b[19;57H─\u001b[19;58H─\u001b[19;59H─\u001b[19;60H─\u001b[19;61H─\u001b[19;62H─\u001b[19;63H─\u001b[19;64H─\u001b[19;65H─\u001b[19;66H─\u001b[19;67H─\u001b[19;68H─\u001b[19;69H─\u001b[19;70H─\u001b[19;71H─\u001b[19;72H─\u001b[19;73H─\u001b[19;74H─\u001b[19;75H─\u001b[19;76H─\u001b[19;77H─\u001b[19;78H 5 \u001b[20;1H  \"\"\" Undo ─\u001b[20;13H"]
24
+[2.203051, "o", "─\u001b[20;14H─\u001b[20;15H─\u001b[20;16H─\u001b[20;17H─\u001b[20;18H─\u001b[20;19H─\u001b[20;20H─\u001b[20;21H─\u001b[20;22H─\u001b[20;23H─\u001b[20;24H─\u001b[20;25H─\u001b[20;26H─\u001b[20;27H─\u001b[20;28H─\u001b[20;29H─\u001b[20;30H─\u001b[20;31H─\u001b[20;32H─\u001b[20;33H─\u001b[20;34H─\u001b[20;35H─\u001b[20;36H─\u001b[20;37H─\u001b[20;38H─\u001b[20;39H─\u001b[20;40H─\u001b[20;41H─\u001b[20;42H─\u001b[20;43H─\u001b[20;44H─\u001b[20;45H─\u001b[20;46H─\u001b[20;47H─\u001b[20;48H─\u001b[20;49H─\u001b[20;50H─\u001b[20;51H─\u001b[20;52H─\u001b[20;53H─\u001b[20;54H─\u001b[20;55H─\u001b[20;56H─\u001b[20;57H─\u001b[20;58H─\u001b[20;59H─\u001b[20;60H─\u001b[20;61H─\u001b[20;62H─\u001b[20;63H─\u001b[20;64H─\u001b[20;65H─\u001b[20;66H─\u001b[20;67H─\u001b[20;68H─\u001b[20;69H─\u001b[20;70H─\u001b[20;71H─\u001b[20;72H─\u001b[20;73H─\u001b[20;74H─\u001b[20;75H─\u001b[20;76H─\u001b[20;77H 10 \u001b[21;1H  \"\"\" QuickFix ─\u001b[21;17H─\u001b[21;18H─\u001b[21;19H─\u001b[21;20H─\u001b[21;21H─\u001b[21;22H─\u001b[21;23H─\u001b[21;24H─\u001b[21;25H─\u001b[21;26H─\u001b[21;27H─\u001b[21;28H─\u001b[21;29H─\u001b[21;30H─\u001b[21;31H─\u001b[21;32H─\u001b[21;33H─\u001b[21;34H─\u001b[21;35H─\u001b[21;36H"]
25
+[2.203299, "o", "─\u001b[21;37H─\u001b[21;38H─\u001b[21;39H─\u001b[21;40H─\u001b[21;41H─\u001b[21;42H─\u001b[21;43H─\u001b[21;44H─\u001b[21;45H─\u001b[21;46H─\u001b[21;47H─\u001b[21;48H─\u001b[21;49H─\u001b[21;50H─\u001b[21;51H─\u001b[21;52H─\u001b[21;53H─\u001b[21;54H─\u001b[21;55H─\u001b[21;56H─\u001b[21;57H─\u001b[21;58H─\u001b[21;59H─\u001b[21;60H─\u001b[21;61H─\u001b[21;62H─\u001b[21;63H─\u001b[21;64H─\u001b[21;65H─\u001b[21;66H─\u001b[21;67H─\u001b[21;68H─\u001b[21;69H─\u001b[21;70H─\u001b[21;71H─\u001b[21;72H─\u001b[21;73H─\u001b[21;74H─\u001b[21;75H─\u001b[21;76H─\u001b[21;77H─\u001b[21;78H 6 \u001b[22;1H  \"\"\" Modelines ─\u001b[22;18H─\u001b[22;19H─\u001b[22;20H─\u001b[22;21H─\u001b[22;22H─\u001b[22;23H─\u001b[22;24H─\u001b[22;25H─\u001b[22;26H─\u001b[22;27H─\u001b[22;28H─\u001b[22;29H─\u001b[22;30H─\u001b[22;31H─\u001b[22;32H─\u001b[22;33H─\u001b[22;34H─\u001b[22;35H─\u001b[22;36H─\u001b[22;37H─\u001b[22;38H─\u001b[22;39H─\u001b[22;40H─\u001b[22;41H─\u001b[22;42H─\u001b[22;43H─\u001b[22;44H─\u001b[22;45H─\u001b[22;46H─\u001b[22;47H─\u001b[22;48H─\u001b[22;49H─\u001b[22;50H─\u001b[22;51H─\u001b[22;52H─\u001b[22;53H─\u001b[22;54H─\u001b[22;55H─\u001b[22;56H─\u001b[22;57H─\u001b[22;58H─\u001b[22;59H─\u001b[22;60H─\u001b[22;61H─\u001b[22;62H─\u001b[22;63H─\u001b[22;64H─\u001b[22;65H─\u001b[22;"]
26
+[2.20335, "o", "66H─\u001b[22;67H─\u001b[22;68H─\u001b[22;69H─\u001b[22;70H─\u001b[22;71H─\u001b[22;72H─\u001b[22;73H─\u001b[22;74H─\u001b[22;75H─\u001b[22;76H─\u001b[22;77H─\u001b[22;78H 5 \u001b[23;1H  \"\"\" Environment interaction ─\u001b[23;32H─\u001b[23;33H─\u001b[23;34H─\u001b[23;35H─\u001b[23;36H─\u001b[23;37H─\u001b[23;38H─\u001b[23;39H─\u001b[23;40H─\u001b[23;41H─\u001b[23;42H─\u001b[23;43H─\u001b[23;44H─\u001b[23;45H─\u001b[23;46H─\u001b[23;47H─\u001b[23;48H─\u001b[23;49H─\u001b[23;50H─\u001b[23;51H─\u001b[23;52H─\u001b[23;53H─\u001b[23;54H─\u001b[23;55H─\u001b[23;56H─\u001b[23;57H─\u001b[23;58H─\u001b[23;59H─\u001b[23;60H─\u001b[23;61H─\u001b[23;62H─\u001b[23;63H─\u001b[23;64H─\u001b[23;65H─\u001b[23;66H─\u001b[23;67H─\u001b[23;68H─\u001b[23;69H─\u001b[23;70H─\u001b[23;71H─\u001b[23;72H─\u001b[23;73H─\u001b[23;74H─\u001b[23;75H─\u001b[23;76H─\u001b[23;77H 49 \u001b[24;1H  \"\"\" Debugging ─\u001b[24;18H─\u001b[24;19H─\u001b[24;20H─\u001b[24;21H─\u001b[24;22H─\u001b[24;23H─\u001b[24;24H─\u001b[24;25H─\u001b[24;26H─\u001b[24;27H─\u001b[24;28H─\u001b[24;29H─\u001b[24;30H─\u001b[24;31H─\u001b[24;32H─\u001b[24;33H─\u001b[24;34H─\u001b[24;35H─\u001b[24;36H─\u001b[24;37H─\u001b[24;38H─\u001b[24;39H"]
27
+[2.249413, "o", "─\u001b[24;40H─\u001b[24;41H─\u001b[24;42H─\u001b[24;43H─\u001b[24;44H─\u001b[24;45H─\u001b[24;46H─\u001b[24;47H─\u001b[24;48H─\u001b[24;49H─\u001b[24;50H─\u001b[24;51H─\u001b[24;52H─\u001b[24;53H─\u001b[24;54H─\u001b[24;55H─\u001b[24;56H─\u001b[24;57H─\u001b[24;58H─\u001b[24;59H─\u001b[24;60H─\u001b[24;61H─\u001b[24;62H─\u001b[24;63H─\u001b[24;64H─\u001b[24;65H─\u001b[24;66H─\u001b[24;67H─\u001b[24;68H─\u001b[24;69H─\u001b[24;70H─\u001b[24;71H─\u001b[24;72H─\u001b[24;73H─\u001b[24;74H─\u001b[24;75H─\u001b[24;76H─\u001b[24;77H 13 \u001b[m\u001b[25;1H\u001b[K\u001b[26;1H\u001b[93mendif\u001b[m\u001b[38;5;248m \" has('eval')\u001b[m\u001b[26;20H\u001b[K\u001b[27;1H\u001b[K\u001b[28;1H\u001b[38;5;248m\"\" Syntax and file type ─\u001b[28;26H─\u001b[28;27H─\u001b[28;28H─\u001b[28;29H─\u001b[28;30H─\u001b[28;31H─\u001b[28;32H─\u001b[28;33H─\u001b[28;34H─\u001b[28;35H─\u001b[28;36H─\u001b[28;37H─\u001b[28;38H─\u001b[28;39H─\u001b[28;40H─\u001b[28;41H─\u001b[28;42H─\u001b[28;43H─\u001b[28;44H─\u001b[28;45H─\u001b[28;46H─\u001b[28;47H─\u001b[28;48H─\u001b[28;49H─\u001b[28;50H─\u001b[28;51H─\u001b[28;52H─\u001b[28;53H─\u001b[28;54H─\u001b[28;55H─\u001b[28;56H─\u001b[28;57H─\u001b[28;58H─\u001b[28;59H─\u001b[28;60H─\u001b[28;61H─\u001b[28;62H─\u001b[28;63H─\u001b[28;64H─\u001b[28;65H─\u001b[28;66H─\u001b[28;67H─\u001b[28;68H─\u001b["]
28
+[2.249485, "o", "28;69H─\u001b[28;70H─\u001b[28;71H─\u001b[28;72H─\u001b[28;73H─\u001b[28;74H─\u001b[28;75H─\u001b[28;76H─\u001b[28;77H─\u001b[28;78H 6 \u001b[29;1H\"\" File type overrides ─\u001b[29;25H─\u001b[29;26H─\u001b[29;27H─\u001b[29;28H─\u001b[29;29H─\u001b[29;30H─\u001b[29;31H─\u001b[29;32H─\u001b[29;33H─\u001b[29;34H─\u001b[29;35H─\u001b[29;36H─\u001b[29;37H─\u001b[29;38H─\u001b[29;39H─\u001b[29;40H─\u001b[29;41H─\u001b[29;42H─\u001b[29;43H─\u001b[29;44H─\u001b[29;45H─\u001b[29;46H─\u001b[29;47H─\u001b[29;48H─\u001b[29;49H─\u001b[29;50H─\u001b[29;51H─\u001b[29;52H─\u001b[29;53H─\u001b[29;54H─\u001b[29;55H─\u001b[29;56H─\u001b[29;57H─\u001b[29;58H─\u001b[29;59H─\u001b[29;60H─\u001b[29;61H─\u001b[29;62H─\u001b[29;63H─\u001b[29;64H─\u001b[29;65H─\u001b[29;66H─\u001b[29;67H─\u001b[29;68H─\u001b[29;69H─\u001b[29;70H─\u001b[29;71H─\u001b[29;72H─\u001b[29;73H─\u001b[29;74H─\u001b[29;75H─\u001b[29;76H─\u001b[29;77H 25 \u001b[30;1H\"\" Terminal overrides ─\u001b[30;24H─\u001b[30;25H─\u001b[30;26H─\u001b[30;27H─\u001b[30;28H─\u001b[30;29H─\u001b[30;30H─\u001b[30;31H─\u001b[30;32H─\u001b[30;33H─\u001b[30;34H─\u001b[30;35H─\u001b[30;36H─\u001b[30;37H─\u001b[30;38H─\u001b[30;39H─\u001b[30;40H─\u001b[30;41H─\u001b[30;42H─\u001b[30;43H─\u001b[30;44H─\u001b[30;45H─\u001b[30;46H─\u001b[30;47H─\u001b[3"]
29
+[2.249503, "o", "0;48H─\u001b[30;49H─\u001b[30;50H─\u001b[30;51H─\u001b[30;52H─\u001b[30;53H─\u001b[30;54H─\u001b[30;55H─\u001b[30;56H─\u001b[30;57H─\u001b[30;58H─\u001b[30;59H─\u001b[30;60H─\u001b[30;61H─\u001b[30;62H─\u001b[30;63H─\u001b[30;64H─\u001b[30;65H─\u001b[30;66H─\u001b[30;67H─\u001b[30;68H─\u001b[30;69H─\u001b[30;70H─\u001b[30;71H─\u001b[30;72H─\u001b[30;73H─\u001b[30;74H─\u001b[30;75H─\u001b[30;76H─\u001b[30;77H 56 \u001b[6;1H\u001b[?25h"]
30
+[3.249837, "o", "\u001b[50;1H\u001b[m                 \r\u001b[?25l\u001b[16;1H\u001b[?25h"]
31
+[4.25084, "o", "\u001b[50;1H                 \r"]
32
+[4.258309, "o", "\u001b[?25l\u001b[16;29H\u001b[K\u001b[17;1H\u001b[K\u001b[18;6H\u001b[38;5;248m\" `wellle/targets.vim` \u001b[50C3\u001b[19;6H\" `bkad/CamelCaseMotion` \u001b[20;6H\" `tommcdo/vim-exchange` \u001b[46C─\u001b[20;78H 3\u001b[21;6H\" `qstrahl/vim-dentures` \u001b[48C3\u001b[22;6H\" `kana/vim-textobj-user` \u001b[47C6\u001b[23;6H\" `kana/vim-textobj-entire` \u001b[43C─\u001b[23;78H 3\u001b[24;6H\" `kana/vim-textobj-line` \u001b[47C1\r\n  \"\"\"\" `kana/vim-textobj-fold` ─\u001b[25;33H─\u001b[25;34H─\u001b[25;35H─\u001b[25;36H─\u001b[25;37H─\u001b[25;38H─\u001b[25;39H─\u001b[25;40H─\u001b[25;41H─\u001b[25;42H─\u001b[25;43H─\u001b[25;44H─\u001b[25;45H─\u001b[25;46H─\u001b[25;47H─\u001b[25;48H─\u001b[25;49H─\u001b[25;50H─\u001b[25;51H─\u001b[25;52H─\u001b[25;53H─\u001b[25;54H─\u001b[25;55H─\u001b[25;56H─\u001b[25;57H─\u001b[25;58H─\u001b[25;59H─\u001b[25;60H─\u001b[25;61H─\u001b[25;62H─\u001b[25;63H─\u001b[25;64H─\u001b[25;65H─\u001b[25;66H─\u001b[25;67H─\u001b[25;68H─\u001b[25;69H─\u001b[25;70H─\u001b[25;71H─\u001b[25;72H─\u001b[25;73H─\u001b[25;74H─\u001b[25;75H─\u001b[25;76H─\u001b[25;77H─\u001b[25;78H 3 \u001b[26;1H  \"\"\"\" `kana/vim-textobj-syntax` ─\u001b[26;35H─\u001b[26;36H─\u001b[26;37H─\u001b[26;38H─\u001b[26;39H─\u001b[26;40H─\u001b[26;41H─\u001b[26;42H─\u001b[26;43H─\u001b[26;44H─\u001b[26"]
33
+[4.258434, "o", ";45H─\u001b[26;46H─\u001b[26;47H─\u001b[26;48H─\u001b[26;49H─\u001b[26;50H─\u001b[26;51H─\u001b[26;52H─\u001b[26;53H─\u001b[26;54H─\u001b[26;55H─\u001b[26;56H─\u001b[26;57H─\u001b[26;58H─\u001b[26;59H─\u001b[26;60H─\u001b[26;61H─\u001b[26;62H─\u001b[26;63H─\u001b[26;64H─\u001b[26;65H─\u001b[26;66H─\u001b[26;67H─\u001b[26;68H─\u001b[26;69H─\u001b[26;70H─\u001b[26;71H─\u001b[26;72H─\u001b[26;73H─\u001b[26;74H─\u001b[26;75H─\u001b[26;76H─\u001b[26;77H─\u001b[26;78H 3 \u001b[27;1H  \"\"\"\" `kana/vim-textobj-function` ─\u001b[27;37H─\u001b[27;38H─\u001b[27;39H─\u001b[27;40H─\u001b[27;41H─\u001b[27;42H─\u001b[27;43H─\u001b[27;44H─\u001b[27;45H─\u001b[27;46H─\u001b[27;47H─\u001b[27;48H─\u001b[27;49H─\u001b[27;50H─\u001b[27;51H─\u001b[27;52H─\u001b[27;53H─\u001b[27;54H─\u001b[27;55H─\u001b[27;56H─\u001b[27;57H─\u001b[27;58H─\u001b[27;59H─\u001b[27;60H─\u001b[27;61H─\u001b[27;62H─\u001b[27;63H─\u001b[27;64H─\u001b[27;65H─\u001b[27;66H─\u001b[27;67H─\u001b[27;68H─\u001b[27;69H─\u001b[27;70H─\u001b[27;71H─\u001b[27;72H─\u001b[27;73H─\u001b[27;74H─\u001b[27;75H─\u001b[27;76H─\u001b[27;77H─\u001b[27;78H 3 \u001b[28;1H  \"\"\"\" `idbrii/textobj-word-column.vim` \u001b[38C3\r\n  \"\"\"\" `adriaanzon/vim-textobj-matchit` "]
34
+[4.260137, "o", "\u001b[36C─\u001b[29;78H 3\r\n  \"\"\"\" `rhysd/vim-textobj-continuous-line` \u001b[33C─\u001b[30;78H 3\r\n  \"\"\"\" `rsrchboy/vim-textobj-heredocs` ─\u001b[31;41H─\u001b[31;42H─\u001b[31;43H─\u001b[31;44H─\u001b[31;45H─\u001b[31;46H─\u001b[31;47H─\u001b[31;48H─\u001b[31;49H─\u001b[31;50H─\u001b[31;51H─\u001b[31;52H─\u001b[31;53H─\u001b[31;54H─\u001b[31;55H─\u001b[31;56H─\u001b[31;57H─\u001b[31;58H─\u001b[31;59H─\u001b[31;60H─\u001b[31;61H─\u001b[31;62H─\u001b[31;63H─\u001b[31;64H─\u001b[31;65H─\u001b[31;66H─\u001b[31;67H─\u001b[31;68H─\u001b[31;69H─\u001b[31;70H─\u001b[31;71H─\u001b[31;72H─\u001b[31;73H─\u001b[31;74H─\u001b[31;75H─\u001b[31;76H─\u001b[31;77H─\u001b[31;78H 2 \u001b[m\u001b[32;1H\u001b[K\u001b[33;1H\u001b[38;5;248m  \"\"\" Colors ─\u001b[33;15H─\u001b[33;16H─\u001b[33;17H─\u001b[33;18H─\u001b[33;19H─\u001b[33;20H─\u001b[33;21H─\u001b[33;22H─\u001b[33;23H─\u001b[33;24H─\u001b[33;25H─\u001b[33;26H─\u001b[33;27H─\u001b[33;28H─\u001b[33;29H─\u001b[33;30H─\u001b[33;31H─\u001b[33;32H─\u001b[33;33H─\u001b[33;34H─\u001b[33;35H─\u001b[33;36H─\u001b[33;37H─\u001b[33;38H─\u001b[33;39H─\u001b[33;40H─\u001b[33;41H─\u001b[33;42H─\u001b[33;43H─\u001b[33;44H─\u001b[33;45H─\u001b[33;46H─\u001b[33;47H─\u001b[33;48H─\u001b[33;49H─\u001b[33;50H─\u001b[33;51H─\u001b[33;52H─\u001b[33;53H─\u001b[33;"]
35
+[4.260169, "o", "54H─\u001b[33;55H─\u001b[33;56H─\u001b[33;57H─\u001b[33;58H─\u001b[33;59H─\u001b[33;60H─\u001b[33;61H─\u001b[33;62H─\u001b[33;63H─\u001b[33;64H─\u001b[33;65H─\u001b[33;66H─\u001b[33;67H─\u001b[33;68H─\u001b[33;69H─\u001b[33;70H─\u001b[33;71H─\u001b[33;72H─\u001b[33;73H─\u001b[33;74H─\u001b[33;75H─\u001b[33;76H─\u001b[33;77H 15 \u001b[34;1H  \"\"\" Windows ─\u001b[34;16H─\u001b[34;17H─\u001b[34;18H─\u001b[34;19H─\u001b[34;20H─\u001b[34;21H─\u001b[34;22H─\u001b[34;23H─\u001b[34;24H─\u001b[34;25H─\u001b[34;26H─\u001b[34;27H─\u001b[34;28H─\u001b[34;29H─\u001b[34;30H─\u001b[34;31H─\u001b[34;32H─\u001b[34;33H─\u001b[34;34H─\u001b[34;35H─\u001b[34;36H─\u001b[34;37H─\u001b[34;38H─\u001b[34;39H─\u001b[34;40H─\u001b[34;41H─\u001b[34;42H─\u001b[34;43H─\u001b[34;44H─\u001b[34;45H─\u001b[34;46H─\u001b[34;47H─\u001b[34;48H─\u001b[34;49H─\u001b[34;50H─\u001b[34;51H─\u001b[34;52H─\u001b[34;53H─\u001b[34;54H─\u001b[34;55H─\u001b[34;56H─\u001b[34;57H─\u001b[34;58H─\u001b[34;59H─\u001b[34;60H─\u001b[34;61H─\u001b[34;62H─\u001b[34;63H─\u001b[34;64H─\u001b[34;65H─\u001b[34;66H─\u001b[34;67H─\u001b[34;68H─\u001b[34;69H─\u001b[34;70H─\u001b[34;71H─\u001b[34;72H─\u001b[34;73H─\u001b[34;74H─\u001b[34;75H─"]
36
+[4.260531, "o", "\u001b[34;76H─\u001b[34;77H─\u001b[34;78H 5 \u001b[35;1H  \"\"\" Folds ─\u001b[35;14H─\u001b[35;15H─\u001b[35;16H─\u001b[35;17H─\u001b[35;18H─\u001b[35;19H─\u001b[35;20H─\u001b[35;21H─\u001b[35;22H─\u001b[35;23H─\u001b[35;24H─\u001b[35;25H─\u001b[35;26H─\u001b[35;27H─\u001b[35;28H─\u001b[35;29H─\u001b[35;30H─\u001b[35;31H─\u001b[35;32H─\u001b[35;33H─\u001b[35;34H─\u001b[35;35H─\u001b[35;36H─\u001b[35;37H─\u001b[35;38H─\u001b[35;39H─\u001b[35;40H─\u001b[35;41H─\u001b[35;42H─\u001b[35;43H─\u001b[35;44H─\u001b[35;45H─\u001b[35;46H─\u001b[35;47H─\u001b[35;48H─\u001b[35;49H─\u001b[35;50H─\u001b[35;51H─\u001b[35;52H─\u001b[35;53H─\u001b[35;54H─\u001b[35;55H─\u001b[35;56H─\u001b[35;57H─\u001b[35;58H─\u001b[35;59H─\u001b[35;60H─\u001b[35;61H─\u001b[35;62H─\u001b[35;63H─\u001b[35;64H─\u001b[35;65H─\u001b[35;66H─\u001b[35;67H─\u001b[35;68H─\u001b[35;69H─\u001b[35;70H─\u001b[35;71H─\u001b[35;72H─\u001b[35;73H─\u001b[35;74H─\u001b[35;75H─\u001b[35;76H─\u001b[35;77H─\u001b[35;78H 5 \u001b[36;1H  \"\"\" Undo ─\u001b[36;13H─\u001b[36;14H─\u001b[36;15H─\u001b[36;16H─\u001b[36;17H─\u001b[36;18H─\u001b[36;19H─\u001b[36;20H─\u001b[36;21H─\u001b[36;22H─\u001b[36;23H─\u001b[36;24H─\u001b[36;25H─\u001b[36;26H─\u001b[36;27H─\u001b[36;28H─\u001b[36;29H─\u001b[36;30H─\u001b[36;31H─\u001b[36;32H─\u001b[36;33H─\u001b["]
37
+[4.26056, "o", "36;34H─\u001b[36;35H─\u001b[36;36H─\u001b[36;37H─\u001b[36;38H─\u001b[36;39H─\u001b[36;40H─\u001b[36;41H─\u001b[36;42H─\u001b[36;43H─\u001b[36;44H─\u001b[36;45H─\u001b[36;46H─\u001b[36;47H─\u001b[36;48H─\u001b[36;49H─\u001b[36;50H─\u001b[36;51H─\u001b[36;52H─\u001b[36;53H─\u001b[36;54H─\u001b[36;55H─\u001b[36;56H─\u001b[36;57H─\u001b[36;58H─\u001b[36;59H─\u001b[36;60H─\u001b[36;61H─\u001b[36;62H─\u001b[36;63H─\u001b[36;64H─\u001b[36;65H─\u001b[36;66H─\u001b[36;67H─\u001b[36;68H─\u001b[36;69H─\u001b[36;70H─\u001b[36;71H─\u001b[36;72H─\u001b[36;73H─\u001b[36;74H─\u001b[36;75H─\u001b[36;76H─\u001b[36;77H 10 \u001b[37;1H  \"\"\" QuickFix ─\u001b[37;17H─\u001b[37;18H─\u001b[37;19H─\u001b[37;20H─\u001b[37;21H─\u001b[37;22H─\u001b[37;23H─\u001b[37;24H─\u001b[37;25H─\u001b[37;26H─\u001b[37;27H─\u001b[37;28H─\u001b[37;29H─\u001b[37;30H─\u001b[37;31H─\u001b[37;32H─\u001b[37;33H─\u001b[37;34H─\u001b[37;35H─\u001b[37;36H─\u001b[37;37H─\u001b[37;38H─\u001b[37;39H─\u001b[37;40H─\u001b[37;41H─\u001b[37;42H─\u001b[37;43H─\u001b[37;44H─\u001b[37;45H─\u001b[37;46H─\u001b[37;47H─\u001b[37;48H─\u001b[37;49H─\u001b[37;50H─\u001b[37;51H─\u001b[37;52H─\u001b[37;53H─\u001b[37;54H─\u001b[37;55H─\u001b[37;56H"]
38
+[4.260924, "o", "─\u001b[37;57H─\u001b[37;58H─\u001b[37;59H─\u001b[37;60H─\u001b[37;61H─\u001b[37;62H─\u001b[37;63H─\u001b[37;64H─\u001b[37;65H─\u001b[37;66H─\u001b[37;67H─\u001b[37;68H─\u001b[37;69H─\u001b[37;70H─\u001b[37;71H─\u001b[37;72H─\u001b[37;73H─\u001b[37;74H─\u001b[37;75H─\u001b[37;76H─\u001b[37;77H─\u001b[37;78H 6 \u001b[38;1H  \"\"\" Modelines ─\u001b[38;18H─\u001b[38;19H─\u001b[38;20H─\u001b[38;21H─\u001b[38;22H─\u001b[38;23H─\u001b[38;24H─\u001b[38;25H─\u001b[38;26H─\u001b[38;27H─\u001b[38;28H─\u001b[38;29H─\u001b[38;30H─\u001b[38;31H─\u001b[38;32H─\u001b[38;33H─\u001b[38;34H─\u001b[38;35H─\u001b[38;36H─\u001b[38;37H─\u001b[38;38H─\u001b[38;39H─\u001b[38;40H─\u001b[38;41H─\u001b[38;42H─\u001b[38;43H─\u001b[38;44H─\u001b[38;45H─\u001b[38;46H─\u001b[38;47H─\u001b[38;48H─\u001b[38;49H─\u001b[38;50H─\u001b[38;51H─\u001b[38;52H─\u001b[38;53H─\u001b[38;54H─\u001b[38;55H─\u001b[38;56H─\u001b[38;57H─\u001b[38;58H─\u001b[38;59H─\u001b[38;60H─\u001b[38;61H─\u001b[38;62H─\u001b[38;63H─\u001b[38;64H─\u001b[38;65H─\u001b[38;66H─\u001b[38;67H─\u001b[38;68H─\u001b[38;69H─\u001b[38;70H─\u001b[38;71H─\u001b[38;72H─\u001b[38;73H─\u001b[38;74H─\u001b[38;75H─\u001b[38;76H─\u001b[38;77H─\u001b[38;78H 5 \u001b[39;1H  \"\"\" Environment interaction ─\u001b[39;32H─\u001b[39;33H─\u001b[39;34H─\u001b[39;35H"]
39
+[4.260981, "o", "─\u001b[39;36H─\u001b[39;37H─\u001b[39;38H─\u001b[39;39H─\u001b[39;40H─\u001b[39;41H─\u001b[39;42H─\u001b[39;43H─\u001b[39;44H─\u001b[39;45H─\u001b[39;46H─\u001b[39;47H─\u001b[39;48H─\u001b[39;49H─\u001b[39;50H─\u001b[39;51H─\u001b[39;52H─\u001b[39;53H─\u001b[39;54H─\u001b[39;55H─\u001b[39;56H─\u001b[39;57H─\u001b[39;58H─\u001b[39;59H─\u001b[39;60H─\u001b[39;61H─\u001b[39;62H─\u001b[39;63H─\u001b[39;64H─\u001b[39;65H─\u001b[39;66H─\u001b[39;67H─\u001b[39;68H─\u001b[39;69H─\u001b[39;70H─\u001b[39;71H─\u001b[39;72H─\u001b[39;73H─\u001b[39;74H─\u001b[39;75H─\u001b[39;76H─\u001b[39;77H 49 \u001b[40;1H  \"\"\" Debugging ─\u001b[40;18H─\u001b[40;19H─\u001b[40;20H─\u001b[40;21H─\u001b[40;22H─\u001b[40;23H─\u001b[40;24H─\u001b[40;25H─\u001b[40;26H─\u001b[40;27H─\u001b[40;28H─\u001b[40;29H─\u001b[40;30H─\u001b[40;31H─\u001b[40;32H─\u001b[40;33H─\u001b[40;34H─\u001b[40;35H─\u001b[40;36H─\u001b[40;37H─\u001b[40;38H─\u001b[40;39H─\u001b[40;40H─\u001b[40;41H─\u001b[40;42H─\u001b[40;43H─\u001b[40;44H─\u001b[40;45H─\u001b[40;46H─\u001b[40;47H─\u001b[40;48H─\u001b[40;49H─\u001b[40;50H─\u001b[40;51H─\u001b[40;52H─\u001b[40;53H─\u001b[40;54H─\u001b[40;55H─\u001b[40;56H─\u001b[40;57H─\u001b[40;58H─\u001b[40;59H"]
40
+[4.261749, "o", "─\u001b[40;60H─\u001b[40;61H─\u001b[40;62H─\u001b[40;63H─\u001b[40;64H─\u001b[40;65H─\u001b[40;66H─\u001b[40;67H─\u001b[40;68H─\u001b[40;69H─\u001b[40;70H─\u001b[40;71H─\u001b[40;72H─\u001b[40;73H─\u001b[40;74H─\u001b[40;75H─\u001b[40;76H─\u001b[40;77H 13 \u001b[m\u001b[41;1H\u001b[K\u001b[42;1H\u001b[93mendif\u001b[m\u001b[38;5;248m \" has('eval')\u001b[m\u001b[42;20H\u001b[K\u001b[43;1H\u001b[K\u001b[44;1H\u001b[38;5;248m\"\" Syntax and file type ─\u001b[44;26H─\u001b[44;27H─\u001b[44;28H─\u001b[44;29H─\u001b[44;30H─\u001b[44;31H─\u001b[44;32H─\u001b[44;33H─\u001b[44;34H─\u001b[44;35H─\u001b[44;36H─\u001b[44;37H─\u001b[44;38H─\u001b[44;39H─\u001b[44;40H─\u001b[44;41H─\u001b[44;42H─\u001b[44;43H─\u001b[44;44H─\u001b[44;45H─\u001b[44;46H─\u001b[44;47H─\u001b[44;48H─\u001b[44;49H─\u001b[44;50H─\u001b[44;51H─\u001b[44;52H─\u001b[44;53H─\u001b[44;54H─\u001b[44;55H─\u001b[44;56H─\u001b[44;57H─\u001b[44;58H─\u001b[44;59H─\u001b[44;60H─\u001b[44;61H─\u001b[44;62H─\u001b[44;63H─\u001b[44;64H─\u001b[44;65H─\u001b[44;66H─\u001b[44;67H─\u001b[44;68H─\u001b[44;69H─\u001b[44;70H─\u001b[44;71H─\u001b[44;72H─\u001b[44;73H─\u001b[44;74H─\u001b[44;75H─\u001b[44;76H─\u001b[44;77H─\u001b[44;78H 6 \u001b[45;1H\"\" File type overrides ─\u001b[45;25H─\u001b[45;26H─\u001b[45;27H─\u001b[45;28H─\u001b[45;29H─\u001b[45;30H─\u001b[45;31H─\u001b["]
41
+[4.261777, "o", "45;32H─\u001b[45;33H─\u001b[45;34H─\u001b[45;35H─\u001b[45;36H─\u001b[45;37H─\u001b[45;38H─\u001b[45;39H─\u001b[45;40H─\u001b[45;41H─\u001b[45;42H─\u001b[45;43H─\u001b[45;44H─\u001b[45;45H─\u001b[45;46H─\u001b[45;47H─\u001b[45;48H─\u001b[45;49H─\u001b[45;50H─\u001b[45;51H─\u001b[45;52H─\u001b[45;53H─\u001b[45;54H─\u001b[45;55H─\u001b[45;56H─\u001b[45;57H─\u001b[45;58H─\u001b[45;59H─\u001b[45;60H─\u001b[45;61H─\u001b[45;62H─\u001b[45;63H─\u001b[45;64H─\u001b[45;65H─\u001b[45;66H─\u001b[45;67H─\u001b[45;68H─\u001b[45;69H─\u001b[45;70H─\u001b[45;71H─\u001b[45;72H─\u001b[45;73H─\u001b[45;74H─\u001b[45;75H─\u001b[45;76H─\u001b[45;77H 25 \u001b[46;1H\"\" Terminal overrides ─\u001b[46;24H─\u001b[46;25H─\u001b[46;26H─\u001b[46;27H─\u001b[46;28H─\u001b[46;29H─\u001b[46;30H─\u001b[46;31H─\u001b[46;32H─\u001b[46;33H─\u001b[46;34H─\u001b[46;35H─\u001b[46;36H─\u001b[46;37H─\u001b[46;38H─\u001b[46;39H─\u001b[46;40H─\u001b[46;41H─\u001b[46;42H─\u001b[46;43H─\u001b[46;44H─\u001b[46;45H─\u001b[46;46H─\u001b[46;47H─\u001b[46;48H─\u001b[46;49H─\u001b[46;50H─\u001b[46;51H─\u001b[46;52H─\u001b[46;53H─\u001b[46;54H─\u001b[46;55H─\u001b[46;56H─\u001b[46;57H─\u001b[46;58H─\u001b[46;59H─\u001b[46;60H─\u001b[46;61H─\u001b[46;62H─\u001b[46;63H─\u001b[46;64H─\u001b[46;65H─\u001b[46;66H─\u001b[46;67H─\u001b[4"]
42
+[4.261792, "o", "6;68H─\u001b[46;69H─\u001b[46;70H─\u001b[46;71H─\u001b[46;72H─\u001b[46;73H─\u001b[46;74H─\u001b[46;75H─\u001b[46;76H─\u001b[46;77H 56 \u001b[16;1H\u001b[?25h"]
43
+[5.26245, "o", "\u001b[50;1H\u001b[m                 \r\u001b[?25l\u001b[16;1H\u001b[?25h"]
44
+[6.263456, "o", "\u001b[50;1H                 \r"]
45
+[6.268903, "o", "\u001b[?25l\u001b[16;29H\u001b[38;5;248m ─\u001b[16;31H─\u001b[16;32H─\u001b[16;33H─\u001b[16;34H─\u001b[16;35H─\u001b[16;36H─\u001b[16;37H─\u001b[16;38H─\u001b[16;39H─\u001b[16;40H─\u001b[16;41H─\u001b[16;42H─\u001b[16;43H─\u001b[16;44H─\u001b[16;45H─\u001b[16;46H─\u001b[16;47H─\u001b[16;48H─\u001b[16;49H─\u001b[16;50H─\u001b[16;51H─\u001b[16;52H─\u001b[16;53H─\u001b[16;54H─\u001b[16;55H─\u001b[16;56H─\u001b[16;57H─\u001b[16;58H─\u001b[16;59H─\u001b[16;60H─\u001b[16;61H─\u001b[16;62H─\u001b[16;63H─\u001b[16;64H─\u001b[16;65H─\u001b[16;66H─\u001b[16;67H─\u001b[16;68H─\u001b[16;69H─\u001b[16;70H─\u001b[16;71H─\u001b[16;72H─\u001b[16;73H─\u001b[16;74H─\u001b[16;75H─\u001b[16;76H─\u001b[16;77H 57 \u001b[17;1H  \"\"\" Colors ─\u001b[17;15H─\u001b[17;16H─\u001b[17;17H─\u001b[17;18H─\u001b[17;19H─\u001b[17;20H─\u001b[17;21H─\u001b[17;22H─\u001b[17;23H─\u001b[17;24H─\u001b[17;25H─\u001b[17;26H─\u001b[17;27H─\u001b[17;28H─\u001b[17;29H─\u001b[17;30H─\u001b[17;31H─\u001b[17;32H─\u001b[17;33H─\u001b[17;34H─\u001b[17;35H─\u001b[17;36H─\u001b[17;37H─\u001b[17;38H─\u001b[17;39H─\u001b[17;40H─\u001b[17;41H─\u001b[17;42H─\u001b[17;43H─\u001b[17;44H─\u001b[17;45H─\u001b[17;46H─\u001b[17;47H─\u001b[17;48H─\u001b[17;49H─\u001b[17;50H─\u001b[17;51H─\u001b[17;52H─\u001b[17;53H─\u001b[17;54H─\u001b[17;55H─\u001b[1"]
46
+[6.269036, "o", "7;56H─\u001b[17;57H─\u001b[17;58H─\u001b[17;59H─\u001b[17;60H─\u001b[17;61H─\u001b[17;62H─\u001b[17;63H─\u001b[17;64H─\u001b[17;65H─\u001b[17;66H─\u001b[17;67H─\u001b[17;68H─\u001b[17;69H─\u001b[17;70H─\u001b[17;71H─\u001b[17;72H─\u001b[17;73H─\u001b[17;74H─\u001b[17;75H─\u001b[17;76H─\u001b[17;77H 15 \u001b[18;6H Windows ─\u001b[18;16H─\u001b[18;17H─\u001b[18;18H─\u001b[18;19H─\u001b[18;20H─\u001b[18;21H─\u001b[18;22H─\u001b[18;23H─\u001b[18;24H─\u001b[18;25H─\u001b[18;26H─\u001b[18;27H─\u001b[18;28H─\u001b[18;79H5\u001b[19;6H Folds ─\u001b[19;14H─\u001b[19;15H─\u001b[19;16H─\u001b[19;17H─\u001b[19;18H─\u001b[19;19H─\u001b[19;20H─\u001b[19;21H─\u001b[19;22H─\u001b[19;23H─\u001b[19;24H─\u001b[19;25H─\u001b[19;26H─\u001b[19;27H─\u001b[19;28H─\u001b[19;29H─\u001b[19;30H─\u001b[20;6H Undo ─\u001b[20;13H─\u001b[20;14H─\u001b[20;15H─\u001b[20;16H─\u001b[20;17H─\u001b[20;18H─\u001b[20;19H─\u001b[20;20H─\u001b[20;21H─\u001b[20;22H─\u001b[20;23H─\u001b[20;24H─\u001b[20;25H─\u001b[20;26H─\u001b[20;27H─\u001b[20;28H─\u001b[20;29H─\u001b[20;30H─\u001b[20;77H 10\u001b[21;6H QuickFix ─\u001b[21;17H─\u001b[21;18H─\u001b[21;19H─\u001b[21;20H─\u001b[21;21H─\u001b[21;22H─\u001b[21;23H─\u001b[21;24H"]
47
+[6.269977, "o", "─\u001b[21;25H─\u001b[21;26H─\u001b[21;27H─\u001b[21;28H─\u001b[21;29H─\u001b[21;30H─\u001b[21;79H6\u001b[22;6H Modelines ─\u001b[22;18H─\u001b[22;19H─\u001b[22;20H─\u001b[22;21H─\u001b[22;22H─\u001b[22;23H─\u001b[22;24H─\u001b[22;25H─\u001b[22;26H─\u001b[22;27H─\u001b[22;28H─\u001b[22;29H─\u001b[22;30H─\u001b[22;31H─\u001b[22;79H5\u001b[23;6H Environment interaction ─\u001b[23;32H─\u001b[23;33H─\u001b[23;77H 49\u001b[24;6H Debugging ─\u001b[24;18H─\u001b[24;19H─\u001b[24;20H─\u001b[24;21H─\u001b[24;22H─\u001b[24;23H─\u001b[24;24H─\u001b[24;25H─\u001b[24;26H─\u001b[24;27H─\u001b[24;28H─\u001b[24;29H─\u001b[24;30H─\u001b[24;31H─\u001b[24;79H3\u001b[m\u001b[25;1H\u001b[K\u001b[26;1H\u001b[93mendif\u001b[m\u001b[38;5;248m \" has('eval')\u001b[m\u001b[26;20H\u001b[K\u001b[27;1H\u001b[K\u001b[28;1H\u001b[38;5;248m\"\" Syntax and file type ─\u001b[28;26H─\u001b[28;27H─\u001b[28;28H─\u001b[28;29H─\u001b[28;30H─\u001b[28;31H─\u001b[28;32H─\u001b[28;33H─\u001b[28;34H─\u001b[28;35H─\u001b[28;36H─\u001b[28;37H─\u001b[28;38H─\u001b[28;39H─\u001b[28;40H─\u001b[28;79H6\r\n\"\" File type overrides ─\u001b[29;25H─\u001b[29;26H─\u001b[29;27H─\u001b[29;28H─\u001b[29;29H─\u001b[29;30H─\u001b[29;31H─\u001b[29;32H─\u001b[29;33H─\u001b[29;34H─\u001b[29;35H─\u001b[29;36H─\u001b[29;37H─\u001b[29;38H─\u001b[29;39H─\u001b[29;40H─\u001b[29;"]
48
+[6.270003, "o", "77H 25\r\n\"\" Terminal overrides ─\u001b[30;24H─\u001b[30;25H─\u001b[30;26H─\u001b[30;27H─\u001b[30;28H─\u001b[30;29H─\u001b[30;30H─\u001b[30;31H─\u001b[30;32H─\u001b[30;33H─\u001b[30;34H─\u001b[30;35H─\u001b[30;36H─\u001b[30;37H─\u001b[30;38H─\u001b[30;39H─\u001b[30;40H─\u001b[30;41H─\u001b[30;42H─\u001b[30;43H─\u001b[30;77H 56\u001b[m\r\n\u001b[94m~                                                                               \u001b[32;1H~                                                                               \u001b[33;1H~                                                                               \u001b[34;1H~                                                                               \u001b[35;1H~                                                                               \u001b[36;1H~                                                                               \u001b[37;1H~                                                                               \u001b[38;1H~                                                                               \u001b[39;1H~                                                     "]
49
+[6.270017, "o", "                          \u001b[40;1H~                                                                               \u001b[41;1H~                                                                               \u001b[42;1H~                                                                               \u001b[43;1H~                                                                               \u001b[44;1H~                                                                               \u001b[45;1H~                                                                               \u001b[46;1H~                                                                               \u001b[16;1H\u001b[?25h"]
50
+[7.270508, "o", "\u001b[50;1H\u001b[m                 \r"]
51
+[7.273456, "o", "\u001b[?25l\u001b[6;11H\u001b[38;5;248m ─\u001b[6;13H─\u001b[6;14H─\u001b[6;15H─\u001b[6;16H─\u001b[6;17H─\u001b[6;18H─\u001b[6;19H─\u001b[6;20H─\u001b[6;21H─\u001b[6;22H─\u001b[6;23H─\u001b[6;24H─\u001b[6;25H─\u001b[6;26H─\u001b[6;27H─\u001b[6;28H─\u001b[6;29H─\u001b[6;30H─\u001b[6;31H─\u001b[6;32H─\u001b[6;33H─\u001b[6;34H─\u001b[6;35H─\u001b[6;36H─\u001b[6;37H─\u001b[6;38H─\u001b[6;39H─\u001b[6;40H─\u001b[6;41H─\u001b[6;42H─\u001b[6;43H─\u001b[6;44H─\u001b[6;45H─\u001b[6;46H─\u001b[6;47H─\u001b[6;48H─\u001b[6;49H─\u001b[6;50H─\u001b[6;51H─\u001b[6;52H─\u001b[6;53H─\u001b[6;54H─\u001b[6;55H─\u001b[6;56H─\u001b[6;57H─\u001b[6;58H─\u001b[6;59H─\u001b[6;60H─\u001b[6;61H─\u001b[6;62H─\u001b[6;63H─\u001b[6;64H─\u001b[6;65H─\u001b[6;66H─\u001b[6;67H─\u001b[6;68H─\u001b[6;69H─\u001b[6;70H─\u001b[6;71H─\u001b[6;72H─\u001b[6;73H─\u001b[6;74H─\u001b[6;75H─\u001b[6;76H 324 \u001b[7;1H\"\" Syntax and file type ─\u001b[7;26H─\u001b[7;27H─\u001b[7;28H─\u001b[7;29H─\u001b[7;30H─\u001b[7;31H─\u001b[7;32H─\u001b[7;33H─\u001b[7;34H─\u001b[7;35H─\u001b[7;36H─\u001b[7;37H─\u001b[7;38H─\u001b[7;39H─\u001b[7;40H─\u001b[7;41H─\u001b[7;42H─\u001b[7;43H─\u001b[7;44H─\u001b[7;45H─\u001b[7;46H─\u001b[7;47H─\u001b[7;48H─\u001b[7;49H─\u001b[7;50H─\u001b[7;51H─\u001b[7;52H─\u001b[7;53H─\u001b[7;54H─\u001b[7;55H─\u001b[7;56H─\u001b[7;57H─\u001b"]
52
+[7.273567, "o", "[7;58H─\u001b[7;59H─\u001b[7;60H─\u001b[7;61H─\u001b[7;62H─\u001b[7;63H─\u001b[7;64H─\u001b[7;65H─\u001b[7;66H─\u001b[7;67H─\u001b[7;68H─\u001b[7;69H─\u001b[7;70H─\u001b[7;71H─\u001b[7;72H─\u001b[7;73H─\u001b[7;74H─\u001b[7;75H─\u001b[7;76H─\u001b[7;77H─\u001b[7;78H 6 \u001b[8;1H\"\" File type overrides ─\u001b[8;25H─\u001b[8;26H─\u001b[8;27H─\u001b[8;28H─\u001b[8;29H─\u001b[8;30H─\u001b[8;31H─\u001b[8;32H─\u001b[8;33H─\u001b[8;34H─\u001b[8;35H─\u001b[8;36H─\u001b[8;37H─\u001b[8;38H─\u001b[8;39H─\u001b[8;40H─\u001b[8;41H─\u001b[8;42H─\u001b[8;43H─\u001b[8;44H─\u001b[8;45H─\u001b[8;46H─\u001b[8;47H─\u001b[8;48H─\u001b[8;49H─\u001b[8;50H─\u001b[8;51H─\u001b[8;52H─\u001b[8;53H─\u001b[8;54H─\u001b[8;55H─\u001b[8;56H─\u001b[8;57H─\u001b[8;58H─\u001b[8;59H─\u001b[8;60H─\u001b[8;61H─\u001b[8;62H─\u001b[8;63H─\u001b[8;64H─\u001b[8;65H─\u001b[8;66H─\u001b[8;67H─\u001b[8;68H─\u001b[8;69H─\u001b[8;70H─\u001b[8;71H─\u001b[8;72H─\u001b[8;73H─\u001b[8;74H─\u001b[8;75H─\u001b[8;76H─\u001b[8;77H 25 \u001b[9;1H\"\" Terminal overrides ─\u001b[9;24H─\u001b[9;25H─\u001b[9;26H─\u001b[9;27H─\u001b[9;28H─\u001b[9;29H─\u001b[9;30H─\u001b[9;31H─\u001b[9;32H─\u001b[9;33H─\u001b[9;34H─\u001b[9;35H─\u001b[9;36H─\u001b[9;37H─\u001b[9;38H"]
53
+[7.273818, "o", "─\u001b[9;39H─\u001b[9;40H─\u001b[9;41H─\u001b[9;42H─\u001b[9;43H─\u001b[9;44H─\u001b[9;45H─\u001b[9;46H─\u001b[9;47H─\u001b[9;48H─\u001b[9;49H─\u001b[9;50H─\u001b[9;51H─\u001b[9;52H─\u001b[9;53H─\u001b[9;54H─\u001b[9;55H─\u001b[9;56H─\u001b[9;57H─\u001b[9;58H─\u001b[9;59H─\u001b[9;60H─\u001b[9;61H─\u001b[9;62H─\u001b[9;63H─\u001b[9;64H─\u001b[9;65H─\u001b[9;66H─\u001b[9;67H─\u001b[9;68H─\u001b[9;69H─\u001b[9;70H─\u001b[9;71H─\u001b[9;72H─\u001b[9;73H─\u001b[9;74H─\u001b[9;75H─\u001b[9;76H─\u001b[9;77H 56 \u001b[m\u001b[10;1H\u001b[94m~                                                                               \u001b[11;1H~                                                                               \u001b[12;1H~                                                                               \u001b[13;1H~                                                                               \u001b[14;1H~                                                                               \u001b[15;1H~                                                                               \u001b[16;1H~                                                                               \u001b[17;1H~     "]
54
+[7.273849, "o", "                                                                          \u001b[18;1H~                                                                               \u001b[19;1H~                                                                               \u001b[20;1H~                                                                               \u001b[21;1H~                                                                               \u001b[22;1H~                                                                               \u001b[23;1H~                                                                               \u001b[24;1H~                                                                               \u001b[25;1H~                                                                               \u001b[26;1H~                                                                               \u001b[27;1H~                                                                               \u001b[28;1H~                                                                        "]
55
+[7.273863, "o", "       \u001b[29;1H~                                                                               \u001b[30;1H~                                                                               \u001b[6;1H\u001b[?25h"]
56
+[8.277798, "o", "\u001b[50;1H\u001b[?2004l\u001b[>4;m\u001b]2;bash:vim-unobtrusive-fold:make demo \u0007\u001b]1;bash:vim-unobtrusive-fold:make demo \u0007\u001b[23;2t\u001b[23;1t\u001b[22;2t\u001b[22;1t\u001b[23;2t\u001b[23;1t"]
57
+[8.277935, "o", "\u001b[m\u001b[?1004l\u001b[?2004l\u001b[?1l\u001b>\u001b[>4;m\u001b[?1049l\u001b[23;0;0t"]
0 58
new file mode 100644
... ...
@@ -0,0 +1 @@
1
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800" height="1085.5"><rect width="800" height="1085.5" rx="0" ry="0" class="a"/><svg height="1085.5" viewBox="0 0 80 108.55" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>@keyframes k{0%{transform:translateX(-800px)}12.2%{transform:translateX(-880px)}24.5%{transform:translateX(-960px)}25.7%{transform:translateX(-1760px)}26.3%{transform:translateX(-2000px)}38.5%{transform:translateX(-2080px)}50.8%{transform:translateX(-2160px)}50.9%{transform:translateX(-3040px)}63.1%{transform:translateX(-3120px)}75.4%{transform:translateX(-3360px)}75.5%{transform:translateX(-3600px)}87.7%{transform:translateX(-4080px)}to{transform:translateX(-4240px)}}.a{fill:#282d35}.c,.d,.e,.g{fill:#a8a8a8;white-space:pre}.d,.e,.g{fill:#73bef3}.e,.g{fill:#dbab79}.g{fill:#ffd7d7}</style><g font-family="Monaco,Consolas,Menlo,'Bitstream Vera Sans Mono','Powerline Symbols',monospace" font-size="1.67"><defs><symbol id="1"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">My</text><text x="6.012" y="1.67" class="c">|vimrc|</text><text x="14.028" y="1.67" class="c">──────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">74</text></symbol><symbol id="2"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">Options</text><text x="11.022" y="1.67" class="c">────────────────────────────────────────────────────────────────</text><text x="76.152" y="1.67" class="c">132</text></symbol><symbol id="3"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">Mappings</text><text x="12.024" y="1.67" class="c">───────────────────────────────────────────────────────────────</text><text x="76.152" y="1.67" class="c">183</text></symbol><symbol id="4"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">Auto</text><text x="8.016" y="1.67" class="c">commands</text><text x="17.034" y="1.67" class="c">───────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">31</text></symbol><symbol id="5"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">Colors</text><text x="10.02" y="1.67" class="c">──────────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">73</text></symbol><symbol id="6"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">Plugins</text><text x="11.022" y="1.67" class="c">────────────────────────────────────────────────────────────────</text><text x="76.152" y="1.67" class="c">324</text></symbol><symbol id="7"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">Syntax</text><text x="10.02" y="1.67" class="c">and</text><text x="14.028" y="1.67" class="c">file</text><text x="19.038" y="1.67" class="c">type</text><text x="24.048" y="1.67" class="c">─────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">6</text></symbol><symbol id="8"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">File</text><text x="8.016" y="1.67" class="c">type</text><text x="13.026" y="1.67" class="c">overrides</text><text x="23.046" y="1.67" class="c">─────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">25</text></symbol><symbol id="9"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">Terminal</text><text x="12.024" y="1.67" class="c">overrides</text><text x="22.044" y="1.67" class="c">──────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">56</text></symbol><symbol id="10"><text y="1.67" class="d">~</text></symbol><symbol id="11"><text y="1.67" class="c">&quot;&quot;</text><text x="3.006" y="1.67" class="c">Plugins</text></symbol><symbol id="12"><text y="1.67" class="e">if</text><text x="3.006" y="1.67" style="white-space:pre" fill="#66c2cd" font-weight="700">has</text><text x="6.012" y="1.67" class="g">(</text><text x="7.014" y="1.67" style="white-space:pre" fill="#d290e3">&apos;eval&apos;</text><text x="13.026" y="1.67" class="g">)</text></symbol><symbol id="13"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">GitAdd</text><text x="13.026" y="1.67" class="c">───────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">20</text></symbol><symbol id="14"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">File</text><text x="11.022" y="1.67" class="c">type</text><text x="16.032" y="1.67" class="c">────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">50</text></symbol><symbol id="15"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Normal</text><text x="13.026" y="1.67" class="c">mode</text><text x="18.036" y="1.67" class="c">──────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">46</text></symbol><symbol id="16"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Insert</text><text x="13.026" y="1.67" class="c">mode</text><text x="18.036" y="1.67" class="c">──────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">12</text></symbol><symbol id="17"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Command-line</text><text x="19.038" y="1.67" class="c">mode</text><text x="24.048" y="1.67" class="c">─────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">8</text></symbol><symbol id="18"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Operators</text><text x="16.032" y="1.67" class="c">────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">16</text></symbol><symbol id="19"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Motions</text><text x="14.028" y="1.67" class="c">/</text><text x="16.032" y="1.67" class="c">text</text><text x="21.042" y="1.67" class="c">objects</text><text x="29.058" y="1.67" class="c">───────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">57</text></symbol><symbol id="20"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Colors</text><text x="13.026" y="1.67" class="c">───────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">15</text></symbol><symbol id="21"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Windows</text><text x="14.028" y="1.67" class="c">───────────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">5</text></symbol><symbol id="22"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Folds</text><text x="12.024" y="1.67" class="c">─────────────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">5</text></symbol><symbol id="23"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Undo</text><text x="11.022" y="1.67" class="c">─────────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">10</text></symbol><symbol id="24"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">QuickFix</text><text x="15.03" y="1.67" class="c">──────────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">6</text></symbol><symbol id="25"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Modelines</text><text x="16.032" y="1.67" class="c">─────────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">5</text></symbol><symbol id="26"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Environment</text><text x="18.036" y="1.67" class="c">interaction</text><text x="30.06" y="1.67" class="c">──────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">49</text></symbol><symbol id="27"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Debugging</text><text x="16.032" y="1.67" class="c">────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">13</text></symbol><symbol id="28"><text y="1.67" class="e">endif</text><text x="6.012" y="1.67" class="c">&quot;</text><text x="8.016" y="1.67" class="c">has(&apos;eval&apos;)</text></symbol><symbol id="29"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;</text><text x="6.012" y="1.67" class="c">Motions</text><text x="14.028" y="1.67" class="c">/</text><text x="16.032" y="1.67" class="c">text</text><text x="21.042" y="1.67" class="c">objects</text></symbol><symbol id="30"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`wellle/targets.vim`</text><text x="28.056" y="1.67" class="c">─────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="31"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`bkad/CamelCaseMotion`</text><text x="30.06" y="1.67" class="c">───────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">5</text></symbol><symbol id="32"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`tommcdo/vim-exchange`</text><text x="30.06" y="1.67" class="c">───────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="33"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`qstrahl/vim-dentures`</text><text x="30.06" y="1.67" class="c">───────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="34"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`kana/vim-textobj-user`</text><text x="31.062" y="1.67" class="c">──────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">6</text></symbol><symbol id="35"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`kana/vim-textobj-entire`</text><text x="33.066" y="1.67" class="c">────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="36"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`kana/vim-textobj-line`</text><text x="31.062" y="1.67" class="c">─────────────────────────────────────────────</text><text x="77.154" y="1.67" class="c">11</text></symbol><symbol id="37"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`kana/vim-textobj-fold`</text><text x="31.062" y="1.67" class="c">──────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="38"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`kana/vim-textobj-syntax`</text><text x="33.066" y="1.67" class="c">────────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="39"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`kana/vim-textobj-function`</text><text x="35.07" y="1.67" class="c">──────────────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="40"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`idbrii/textobj-word-column.vim`</text><text x="40.08" y="1.67" class="c">─────────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="41"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`adriaanzon/vim-textobj-matchit`</text><text x="40.08" y="1.67" class="c">─────────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="42"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`rhysd/vim-textobj-continuous-line`</text><text x="43.086" y="1.67" class="c">──────────────────────────────────</text><text x="78.156" y="1.67" class="c">3</text></symbol><symbol id="43"><text x="2.004" y="1.67" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="1.67" class="c">`rsrchboy/vim-textobj-heredocs`</text><text x="39.078" y="1.67" class="c">──────────────────────────────────────</text><text x="78.156" y="1.67" class="c">2</text></symbol><symbol id="a"><path fill="transparent" d="M0 0h80v50H0z"/></symbol><symbol id="b"><path fill="#6f7683" d="M0 0h1.102v2.171H0z"/></symbol></defs><path class="a" d="M0 0h80v108.55H0z"/><g style="animation-duration:8.17958s;animation-iteration-count:infinite;animation-name:k;animation-timing-function:steps(1,end)"><svg width="4320"><svg><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/></svg><svg x="80"><use xlink:href="#a"/><use xlink:href="#1"/><text y="3.841" class="c">&quot;&quot;</text><text x="3.006" y="3.841" class="c">Options</text><text x="11.022" y="3.841" class="c">────────────────────────────────</text></svg><svg x="160"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><text y="6.012" class="c">&quot;&quot;</text><text x="3.006" y="6.012" class="c">Mappings</text><text x="12.024" y="6.012" class="c">─────────────────────────────────────────────────────────────</text></svg><svg x="240"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><text y="10.354" class="c">&quot;&quot;</text><text x="3.006" y="10.354" class="c">Colors</text><text x="10.02" y="10.354" class="c">────────────────────────────────────</text></svg><svg x="320"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><text y="12.525" class="c">&quot;&quot;</text><text x="3.006" y="12.525" class="c">Plugins</text><text x="11.022" y="12.525" class="c">───────────────────────────────────────────────────────────────</text></svg><svg x="400"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><text y="16.867" class="c">&quot;&quot;</text><text x="3.006" y="16.867" class="c">File</text><text x="8.016" y="16.867" class="c">type</text><text x="13.026" y="16.867" class="c">overrides</text><text x="23.046" y="16.867" class="c">─────────────────────────────────────────</text></svg><svg x="480"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/></svg><svg x="560"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/></svg><svg x="640"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/></svg><svg x="720"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/></svg><svg x="800"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="880"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="10.83"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="960"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1040"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><text x="2.004" y="23.38" class="c">&quot;&quot;&quot;</text><text x="6.012" y="23.38" class="c">File</text><text x="11.022" y="23.38" class="c">type</text><text x="16.032" y="23.38" class="c">──────────────</text><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1120"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><text x="2.004" y="25.551" class="c">&quot;&quot;&quot;</text><text x="6.012" y="25.551" class="c">Normal</text><text x="13.026" y="25.551" class="c">mode</text><text x="18.036" y="25.551" class="c">──────────────────────────────────────</text><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1200"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><text x="2.004" y="29.893" class="c">&quot;&quot;&quot;</text><text x="6.012" y="29.893" class="c">Command-line</text><text x="19.038" y="29.893" class="c">mode</text><text x="24.048" y="29.893" class="c">─────────</text><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1280"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><text x="2.004" y="32.064" class="c">&quot;&quot;&quot;</text><text x="6.012" y="32.064" class="c">Operators</text><text x="16.032" y="32.064" class="c">───────────────────────────────────────</text><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1360"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><text x="2.004" y="36.406" class="c">&quot;&quot;&quot;</text><text x="6.012" y="36.406" class="c">Colors</text><text x="13.026" y="36.406" class="c">────────────────────</text><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1440"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><text x="2.004" y="38.577" class="c">&quot;&quot;&quot;</text><text x="6.012" y="38.577" class="c">Windows</text><text x="14.028" y="38.577" class="c">────────────────────────────────────────</text><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1520"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><text x="2.004" y="42.919" class="c">&quot;&quot;&quot;</text><text x="6.012" y="42.919" class="c">Undo</text><text x="11.022" y="42.919" class="c">─</text><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1600"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><text x="2.004" y="45.09" class="c">&quot;&quot;&quot;</text><text x="6.012" y="45.09" class="c">QuickFix</text><text x="15.03" y="45.09" class="c">────────────────────</text><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1680"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><text x="2.004" y="47.261" class="c">&quot;&quot;&quot;</text><text x="6.012" y="47.261" class="c">Modelines</text><text x="16.032" y="47.261" class="c">─────────────────────────────────────────────────</text><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1760"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><text x="2.004" y="51.603" class="c">&quot;&quot;&quot;</text><text x="6.012" y="51.603" class="c">Debugging</text><text x="16.032" y="51.603" class="c">──────────────────────</text><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1840"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><text y="60.287" class="c">&quot;&quot;</text><text x="3.006" y="60.287" class="c">Syntax</text><text x="10.02" y="60.287" class="c">and</text><text x="14.028" y="60.287" class="c">file</text><text x="19.038" y="60.287" class="c">type</text><text x="24.048" y="60.287" class="c">────────────────────────────────────────────</text><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="1920"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><text y="64.629" class="c">&quot;&quot;</text><text x="3.006" y="64.629" class="c">Terminal</text><text x="12.024" y="64.629" class="c">overrides</text><text x="22.044" y="64.629" class="c">─────────────────────────</text><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2000"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="10.83"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2080"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="32.54"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2160"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2240"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><text x="2.004" y="55.945" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="55.945" class="c">`kana/vim-textobj-syntax`</text><text x="33.066" y="55.945" class="c">───────────</text><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2320"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><text x="2.004" y="62.458" class="c">&quot;&quot;&quot;&quot;</text><text x="7.014" y="62.458" class="c">`adriaanzon/vim-textobj-matchit`</text><text x="40.08" y="62.458" class="c">────────────────────────────────────</text><text x="77.154" y="62.458" class="c">25</text><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2400"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><text x="2.004" y="71.142" class="c">&quot;&quot;&quot;</text><text x="6.012" y="71.142" class="c">Colors</text><text x="13.026" y="71.142" class="c">────────────────────────────────────────</text><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2480"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><text x="2.004" y="73.313" class="c">&quot;&quot;&quot;</text><text x="6.012" y="73.313" class="c">Windows</text><text x="14.028" y="73.313" class="c">─────────────────────────────────────────────────────────────</text><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2560"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><text x="2.004" y="77.655" class="c">&quot;&quot;&quot;</text><text x="6.012" y="77.655" class="c">Undo</text><text x="11.022" y="77.655" class="c">──────────────────────</text><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2640"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><text x="2.004" y="79.826" class="c">&quot;&quot;&quot;</text><text x="6.012" y="79.826" class="c">QuickFix</text><text x="15.03" y="79.826" class="c">────────────────────────────────────────</text><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2720"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><text x="2.004" y="84.168" class="c">&quot;&quot;&quot;</text><text x="6.012" y="84.168" class="c">Environment</text><text x="18.036" y="84.168" class="c">interaction</text><text x="30.06" y="84.168" class="c">────</text><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2800"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><use xlink:href="#26" y="82.498"/><text x="2.004" y="86.339" class="c">&quot;&quot;&quot;</text><text x="6.012" y="86.339" class="c">Debugging</text><text x="16.032" y="86.339" class="c">──────────────────────────────────────────</text><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2880"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><use xlink:href="#26" y="82.498"/><use xlink:href="#27" y="84.669"/><use xlink:href="#28" y="89.011"/><use xlink:href="#7" y="93.353"/><text y="97.194" class="c">&quot;&quot;</text><text x="3.006" y="97.194" class="c">File</text><text x="8.016" y="97.194" class="c">type</text><text x="13.026" y="97.194" class="c">overrides</text><text x="23.046" y="97.194" class="c">────────</text><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="2960"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><use xlink:href="#26" y="82.498"/><use xlink:href="#27" y="84.669"/><use xlink:href="#28" y="89.011"/><use xlink:href="#7" y="93.353"/><use xlink:href="#8" y="95.524"/><text y="99.365" class="c">&quot;&quot;</text><text x="3.006" y="99.365" class="c">Terminal</text><text x="12.024" y="99.365" class="c">overrides</text><text x="22.044" y="99.365" class="c">─────────────────────────────────────────────</text><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3040"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="32.54"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><use xlink:href="#26" y="82.498"/><use xlink:href="#27" y="84.669"/><use xlink:href="#28" y="89.011"/><use xlink:href="#7" y="93.353"/><use xlink:href="#8" y="95.524"/><use xlink:href="#9" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3120"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="32.54"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><use xlink:href="#26" y="82.498"/><use xlink:href="#27" y="84.669"/><use xlink:href="#28" y="89.011"/><use xlink:href="#7" y="93.353"/><use xlink:href="#8" y="95.524"/><use xlink:href="#9" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3200"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#29" y="32.565"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><use xlink:href="#26" y="82.498"/><use xlink:href="#27" y="84.669"/><use xlink:href="#28" y="89.011"/><use xlink:href="#7" y="93.353"/><use xlink:href="#8" y="95.524"/><use xlink:href="#9" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3280"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><text x="2.004" y="36.406" class="c">&quot;&quot;&quot;</text><text x="6.012" y="36.406" class="c">Colors</text><text x="13.026" y="36.406" class="c">──────────────────────────────────────────</text><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><use xlink:href="#26" y="82.498"/><use xlink:href="#27" y="84.669"/><use xlink:href="#28" y="89.011"/><use xlink:href="#7" y="93.353"/><use xlink:href="#8" y="95.524"/><use xlink:href="#9" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3360"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><text x="2.004" y="45.09" class="c">&quot;&quot;&quot;</text><text x="6.012" y="45.09" class="c">QuickFix</text><text x="15.03" y="45.09" class="c">────────tures`</text><text x="30.06" y="45.09" class="c">───────────────────────────────────────────────</text><text x="78.156" y="45.09" class="c">3</text><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#41" y="60.788"/><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><use xlink:href="#26" y="82.498"/><use xlink:href="#27" y="84.669"/><use xlink:href="#28" y="89.011"/><use xlink:href="#7" y="93.353"/><use xlink:href="#8" y="95.524"/><use xlink:href="#9" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3440"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><text y="62.458" class="c">&quot;&quot;</text><text x="3.006" y="62.458" class="c">File</text><text x="8.016" y="62.458" class="c">type</text><text x="13.026" y="62.458" class="c">overrides</text><text x="23.046" y="62.458" class="c">──────────────────────────────────────────────────────</text><text x="78.156" y="62.458" class="c">3</text><use xlink:href="#42" y="62.959"/><use xlink:href="#43" y="65.13"/><use xlink:href="#20" y="69.472"/><use xlink:href="#21" y="71.643"/><use xlink:href="#22" y="73.814"/><use xlink:href="#23" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#25" y="80.327"/><use xlink:href="#26" y="82.498"/><use xlink:href="#27" y="84.669"/><use xlink:href="#28" y="89.011"/><use xlink:href="#7" y="93.353"/><use xlink:href="#8" y="95.524"/><use xlink:href="#9" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3520"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><text y="84.168" class="d">~</text><text x="54.108" y="84.168" class="c">──────────────────────</text><text x="77.154" y="84.168" class="c">49</text><use xlink:href="#27" y="84.669"/><use xlink:href="#28" y="89.011"/><use xlink:href="#7" y="93.353"/><use xlink:href="#8" y="95.524"/><use xlink:href="#9" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3600"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="32.54"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3680"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#11" y="10.855"/><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3760"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><text y="14.696" class="c">&quot;&quot;</text><text x="3.006" y="14.696" class="c">Syntax</text><text x="10.02" y="14.696" class="c">and</text><text x="14.028" y="14.696" class="c">file</text><text x="19.038" y="14.696" class="c">type</text><text x="24.048" y="14.696" class="c">─────────────────────────────────</text><use xlink:href="#12" y="15.197"/><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3840"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><text y="19.038" class="c">&quot;&quot;</text><text x="3.006" y="19.038" class="c">Terminal</text><text x="12.024" y="19.038" class="c">overrides</text><text x="22.044" y="19.038" class="c">───────────────</text><use xlink:href="#13" y="19.539"/><use xlink:href="#14" y="21.71"/><use xlink:href="#15" y="23.881"/><use xlink:href="#16" y="26.052"/><use xlink:href="#17" y="28.223"/><use xlink:href="#18" y="30.394"/><use xlink:href="#19" y="32.565"/><use xlink:href="#20" y="34.736"/><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="3920"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><text y="36.406" class="d">~</text><text x="6.012" y="36.406" class="c">Colors</text><text x="13.026" y="36.406" class="c">───────────────────────────────────────────────────────────────</text><text x="77.154" y="36.406" class="c">15</text><use xlink:href="#21" y="36.907"/><use xlink:href="#22" y="39.078"/><use xlink:href="#23" y="41.249"/><use xlink:href="#24" y="43.42"/><use xlink:href="#25" y="45.591"/><use xlink:href="#26" y="47.762"/><use xlink:href="#27" y="49.933"/><use xlink:href="#28" y="54.275"/><use xlink:href="#7" y="58.617"/><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="4000"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><text y="60.287" class="d">~</text><text x="73.146" y="60.287" class="c">────</text><text x="78.156" y="60.287" class="c">6</text><use xlink:href="#8" y="60.788"/><use xlink:href="#9" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="4080"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="10.83"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="4160"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/><use xlink:href="#1"/><use xlink:href="#2" y="2.171"/><use xlink:href="#3" y="4.342"/><use xlink:href="#4" y="6.513"/><use xlink:href="#5" y="8.684"/><use xlink:href="#6" y="10.855"/><use xlink:href="#7" y="13.026"/><use xlink:href="#8" y="15.197"/><use xlink:href="#9" y="17.368"/><use xlink:href="#10" y="19.539"/><use xlink:href="#10" y="21.71"/><use xlink:href="#10" y="23.881"/><use xlink:href="#10" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#10" y="30.394"/><use xlink:href="#10" y="32.565"/><use xlink:href="#10" y="34.736"/><use xlink:href="#10" y="36.907"/><use xlink:href="#10" y="39.078"/><use xlink:href="#10" y="41.249"/><use xlink:href="#10" y="43.42"/><use xlink:href="#10" y="45.591"/><use xlink:href="#10" y="47.762"/><use xlink:href="#10" y="49.933"/><use xlink:href="#10" y="52.104"/><use xlink:href="#10" y="54.275"/><use xlink:href="#10" y="56.446"/><use xlink:href="#10" y="58.617"/><use xlink:href="#10" y="60.788"/><use xlink:href="#10" y="62.959"/><use xlink:href="#10" y="65.13"/><use xlink:href="#10" y="67.301"/><use xlink:href="#10" y="69.472"/><use xlink:href="#10" y="71.643"/><use xlink:href="#10" y="73.814"/><use xlink:href="#10" y="75.985"/><use xlink:href="#10" y="78.156"/><use xlink:href="#10" y="80.327"/><use xlink:href="#10" y="82.498"/><use xlink:href="#10" y="84.669"/><use xlink:href="#10" y="86.84"/><use xlink:href="#10" y="89.011"/><use xlink:href="#10" y="91.182"/><use xlink:href="#10" y="93.353"/><use xlink:href="#10" y="95.524"/><use xlink:href="#10" y="97.695"/><use xlink:href="#10" y="99.866"/><use xlink:href="#10" y="102.037"/><use xlink:href="#10" y="104.208"/></svg><svg x="4240"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg></svg></g></g></svg></svg>
0 2
\ No newline at end of file
1 3
new file mode 100644
... ...
@@ -0,0 +1,59 @@
1
+{"version": 2, "width": 80, "height": 50, "timestamp": 1660925646, "env": {"SHELL": "/bin/bash", "TERM": "xterm-256color"}, "title": "demo-yaml"}
2
+[0.021857, "o", "\u001b[?1049h\u001b[22;0;0t\u001b[>4;2m\u001b[?1h\u001b=\u001b[?2004h\u001b[?1004h\u001b[1;50r\u001b[?12h\u001b[?12l\u001b[22;2t\u001b[22;1t"]
3
+[0.022816, "o", "\u001b[27m\u001b[23m\u001b[29m\u001b[m\u001b[H\u001b[2J"]
4
+[0.053574, "o", "\u001b[50;1H                 \r"]
5
+[0.054671, "o", "\u001b[27m\u001b[23m\u001b[29m\u001b[m\u001b[H\u001b[2J\u001b[?25l\u001b[1;1H\u001b[38;5;81m---\u001b[m\r\n\r\n\u001b[93m- \u001b[m\u001b[1m\u001b[96mhosts\u001b[m\u001b[38;5;224m:\u001b[m \u001b[95m'all'\u001b[m\r\n\r\n  \u001b[1m\u001b[96mvars\u001b[m\u001b[38;5;224m:\u001b[m\r\n    \u001b[1m\u001b[96mprefix\u001b[m\u001b[38;5;224m:\u001b[m \u001b[95m'{{ ansible_env.HOME }}/.local'\u001b[m\r\n\r\n  \u001b[1m\u001b[96mpre_tasks\u001b[m\u001b[38;5;224m:\u001b[m\r\n\r\n\u001b[38;5;248m    ## APT cache update ─\u001b[10;26H─\u001b[10;27H─\u001b[10;28H─\u001b[10;29H─\u001b[10;30H─\u001b[10;31H─\u001b[10;32H─\u001b[10;33H─\u001b[10;34H─\u001b[10;35H─\u001b[10;36H─\u001b[10;37H─\u001b[10;38H─\u001b[10;39H─\u001b[10;40H─\u001b[10;41H─\u001b[10;42H─\u001b[10;43H─\u001b[10;44H─\u001b[10;45H─\u001b[10;46H─\u001b[10;47H─\u001b[10;48H─\u001b[10;49H─\u001b[10;50H─\u001b[10;51H─\u001b[10;52H─\u001b[10;53H─\u001b[10;54H─\u001b[10;55H─\u001b[10;56H─\u001b[10;57H─\u001b[10;58H─\u001b[10;59H─\u001b[10;60H─\u001b[10;61H─\u001b[10;62H─\u001b[10;63H─\u001b[10;64H─\u001b[10;65H─\u001b[10;66H─\u001b[10;67H─\u001b[10;68H─\u001b[10;69H─\u001b[10;70H─\u001b[10;71H─\u001b[10;72H─\u001b[10;73H─\u001b[10;74H─\u001b[10;75H─\u001b[10;76H─\u001b[10;77H─\u001b[10;78H 7 \u001b[11;1H    ## APT repository dependencies ─\u001b[11;37H─\u001b[11;38H─\u001b[11;39H─\u001b[11;40H─\u001b[11;41H─\u001b[11;42H─\u001b[11;43H─\u001b[11;4"]
6
+[0.054693, "o", "4H─\u001b[11;45H─\u001b[11;46H─\u001b[11;47H─\u001b[11;48H─\u001b[11;49H─\u001b[11;50H─\u001b[11;51H─\u001b[11;52H─\u001b[11;53H─\u001b[11;54H─\u001b[11;55H─\u001b[11;56H─\u001b[11;57H─\u001b[11;58H─\u001b[11;59H─\u001b[11;60H─\u001b[11;61H─\u001b[11;62H─\u001b[11;63H─\u001b[11;64H─\u001b[11;65H─\u001b[11;66H─\u001b[11;67H─\u001b[11;68H─\u001b[11;69H─\u001b[11;70H─\u001b[11;71H─\u001b[11;72H─\u001b[11;73H─\u001b[11;74H─\u001b[11;75H─\u001b[11;76H─\u001b[11;77H─\u001b[11;78H 7 \u001b[12;1H    ## APT repositories ─\u001b[12;26H─\u001b[12;27H─\u001b[12;28H─\u001b[12;29H─\u001b[12;30H─\u001b[12;31H─\u001b[12;32H─\u001b[12;33H─\u001b[12;34H─\u001b[12;35H─\u001b[12;36H─\u001b[12;37H─\u001b[12;38H─\u001b[12;39H─\u001b[12;40H─\u001b[12;41H─\u001b[12;42H─\u001b[12;43H─\u001b[12;44H─\u001b[12;45H─\u001b[12;46H─\u001b[12;47H─\u001b[12;48H─\u001b[12;49H─\u001b[12;50H─\u001b[12;51H─\u001b[12;52H─\u001b[12;53H─\u001b[12;54H─\u001b[12;55H─\u001b[12;56H─\u001b[12;57H─\u001b[12;58H─\u001b[12;59H─\u001b[12;60H─\u001b[12;61H─\u001b[12;62H─\u001b[12;63H─\u001b[12;64H─\u001b[12;65H─\u001b[12;66H─\u001b[12;67H─\u001b[12;68H─\u001b[12;69H─\u001b[12;70H─\u001b[12;71H─\u001b[12;72H─\u001b[12;73H─\u001b[12;74H"]
7
+[0.055019, "o", "─\u001b[12;75H─\u001b[12;76H─\u001b[12;77H 10 \u001b[13;1H    ## APT packages ─\u001b[13;22H─\u001b[13;23H─\u001b[13;24H─\u001b[13;25H─\u001b[13;26H─\u001b[13;27H─\u001b[13;28H─\u001b[13;29H─\u001b[13;30H─\u001b[13;31H─\u001b[13;32H─\u001b[13;33H─\u001b[13;34H─\u001b[13;35H─\u001b[13;36H─\u001b[13;37H─\u001b[13;38H─\u001b[13;39H─\u001b[13;40H─\u001b[13;41H─\u001b[13;42H─\u001b[13;43H─\u001b[13;44H─\u001b[13;45H─\u001b[13;46H─\u001b[13;47H─\u001b[13;48H─\u001b[13;49H─\u001b[13;50H─\u001b[13;51H─\u001b[13;52H─\u001b[13;53H─\u001b[13;54H─\u001b[13;55H─\u001b[13;56H─\u001b[13;57H─\u001b[13;58H─\u001b[13;59H─\u001b[13;60H─\u001b[13;61H─\u001b[13;62H─\u001b[13;63H─\u001b[13;64H─\u001b[13;65H─\u001b[13;66H─\u001b[13;67H─\u001b[13;68H─\u001b[13;69H─\u001b[13;70H─\u001b[13;71H─\u001b[13;72H─\u001b[13;73H─\u001b[13;74H─\u001b[13;75H─\u001b[13;76H 151 \u001b[14;1H    ## Hardware ─\u001b[14;18H─\u001b[14;19H─\u001b[14;20H─\u001b[14;21H─\u001b[14;22H─\u001b[14;23H─\u001b[14;24H─\u001b[14;25H─\u001b[14;26H─\u001b[14;27H─\u001b[14;28H─\u001b[14;29H─\u001b[14;30H─\u001b[14;31H─\u001b[14;32H─\u001b[14;33H─\u001b[14;34H─\u001b[14;35H─\u001b[14;36H─\u001b[14;37H─\u001b[14;38H─\u001b[14;39H─\u001b[14;40H─\u001b[14;41H─\u001b[14;42H─\u001b[14;43H─\u001b[14;44H─\u001b[14;45H─\u001b[14;46H─\u001b[14;"]
8
+[0.055035, "o", "47H─\u001b[14;48H─\u001b[14;49H─\u001b[14;50H─\u001b[14;51H─\u001b[14;52H─\u001b[14;53H─\u001b[14;54H─\u001b[14;55H─\u001b[14;56H─\u001b[14;57H─\u001b[14;58H─\u001b[14;59H─\u001b[14;60H─\u001b[14;61H─\u001b[14;62H─\u001b[14;63H─\u001b[14;64H─\u001b[14;65H─\u001b[14;66H─\u001b[14;67H─\u001b[14;68H─\u001b[14;69H─\u001b[14;70H─\u001b[14;71H─\u001b[14;72H─\u001b[14;73H─\u001b[14;74H─\u001b[14;75H─\u001b[14;76H─\u001b[14;77H 10 \u001b[15;1H    ## Prefix ─\u001b[15;16H─\u001b[15;17H─\u001b[15;18H─\u001b[15;19H─\u001b[15;20H─\u001b[15;21H─\u001b[15;22H─\u001b[15;23H─\u001b[15;24H─\u001b[15;25H─\u001b[15;26H─\u001b[15;27H─\u001b[15;28H─\u001b[15;29H─\u001b[15;30H─\u001b[15;31H─\u001b[15;32H─\u001b[15;33H─\u001b[15;34H─\u001b[15;35H─\u001b[15;36H─\u001b[15;37H─\u001b[15;38H─\u001b[15;39H─\u001b[15;40H─\u001b[15;41H─\u001b[15;42H─\u001b[15;43H─\u001b[15;44H─\u001b[15;45H─\u001b[15;46H─\u001b[15;47H─\u001b[15;48H─\u001b[15;49H─\u001b[15;50H─\u001b[15;51H─\u001b[15;52H─\u001b[15;53H─\u001b[15;54H─\u001b[15;55H─\u001b[15;56H─\u001b[15;57H─\u001b[15;58H─\u001b[15;59H─\u001b[15;60H─\u001b[15;61H─\u001b[15;62H─\u001b[15;63H─\u001b[15;64H─\u001b[15;65H─\u001b[15;66H─\u001b[15;67H─\u001b[15;68H─"]
9
+[0.055485, "o", "\u001b[15;69H─\u001b[15;70H─\u001b[15;71H─\u001b[15;72H─\u001b[15;73H─\u001b[15;74H─\u001b[15;75H─\u001b[15;76H─\u001b[15;77H─\u001b[15;78H 7 \u001b[16;1H    ## Dotfiles ─\u001b[16;18H─\u001b[16;19H─\u001b[16;20H─\u001b[16;21H─\u001b[16;22H─\u001b[16;23H─\u001b[16;24H─\u001b[16;25H─\u001b[16;26H─\u001b[16;27H─\u001b[16;28H─\u001b[16;29H─\u001b[16;30H─\u001b[16;31H─\u001b[16;32H─\u001b[16;33H─\u001b[16;34H─\u001b[16;35H─\u001b[16;36H─\u001b[16;37H─\u001b[16;38H─\u001b[16;39H─\u001b[16;40H─\u001b[16;41H─\u001b[16;42H─\u001b[16;43H─\u001b[16;44H─\u001b[16;45H─\u001b[16;46H─\u001b[16;47H─\u001b[16;48H─\u001b[16;49H─\u001b[16;50H─\u001b[16;51H─\u001b[16;52H─\u001b[16;53H─\u001b[16;54H─\u001b[16;55H─\u001b[16;56H─\u001b[16;57H─\u001b[16;58H─\u001b[16;59H─\u001b[16;60H─\u001b[16;61H─\u001b[16;62H─\u001b[16;63H─\u001b[16;64H─\u001b[16;65H─\u001b[16;66H─\u001b[16;67H─\u001b[16;68H─\u001b[16;69H─\u001b[16;70H─\u001b[16;71H─\u001b[16;72H─\u001b[16;73H─\u001b[16;74H─\u001b[16;75H─\u001b[16;76H─\u001b[16;77H 15 \u001b[m\u001b[18;3H\u001b[1m\u001b[96mroles\u001b[m\u001b[38;5;224m:\u001b[m\r\n\r\n\u001b[38;5;248m    ## Unattended ─\u001b[20;20H─\u001b[20;21H─\u001b[20;22H─\u001b[20;23H─\u001b[20;24H─\u001b[20;25H─\u001b[20;26H─\u001b[20;27H─\u001b[20;28H─\u001b[20;29H─\u001b[20;30H─\u001b[20;31H─\u001b[20;32H─\u001b[20;3"]
10
+[0.055546, "o", "3H─\u001b[20;34H─\u001b[20;35H─\u001b[20;36H─\u001b[20;37H─\u001b[20;38H─\u001b[20;39H─\u001b[20;40H─\u001b[20;41H─\u001b[20;42H─\u001b[20;43H─\u001b[20;44H─\u001b[20;45H─\u001b[20;46H─\u001b[20;47H─\u001b[20;48H─\u001b[20;49H─\u001b[20;50H─\u001b[20;51H─\u001b[20;52H─\u001b[20;53H─\u001b[20;54H─\u001b[20;55H─\u001b[20;56H─\u001b[20;57H─\u001b[20;58H─\u001b[20;59H─\u001b[20;60H─\u001b[20;61H─\u001b[20;62H─\u001b[20;63H─\u001b[20;64H─\u001b[20;65H─\u001b[20;66H─\u001b[20;67H─\u001b[20;68H─\u001b[20;69H─\u001b[20;70H─\u001b[20;71H─\u001b[20;72H─\u001b[20;73H─\u001b[20;74H─\u001b[20;75H─\u001b[20;76H─\u001b[20;77H─\u001b[20;78H 3 \u001b[21;1H    ## Xsession ─\u001b[21;18H─\u001b[21;19H─\u001b[21;20H─\u001b[21;21H─\u001b[21;22H─\u001b[21;23H─\u001b[21;24H─\u001b[21;25H─\u001b[21;26H─\u001b[21;27H─\u001b[21;28H─\u001b[21;29H─\u001b[21;30H─\u001b[21;31H─\u001b[21;32H─\u001b[21;33H─\u001b[21;34H─\u001b[21;35H─\u001b[21;36H─\u001b[21;37H─\u001b[21;38H─\u001b[21;39H─\u001b[21;40H─\u001b[21;41H─\u001b[21;42H─\u001b[21;43H─\u001b[21;44H─\u001b[21;45H─\u001b[21;46H─\u001b[21;47H─\u001b[21;48H─\u001b[21;49H─\u001b[21;50H─\u001b[21;51H─\u001b[21;52H─\u001b[21;53H─\u001b[21;54H─\u001b[21;55H─"]
11
+[0.055847, "o", "\u001b[21;56H─\u001b[21;57H─\u001b[21;58H─\u001b[21;59H─\u001b[21;60H─\u001b[21;61H─\u001b[21;62H─\u001b[21;63H─\u001b[21;64H─\u001b[21;65H─\u001b[21;66H─\u001b[21;67H─\u001b[21;68H─\u001b[21;69H─\u001b[21;70H─\u001b[21;71H─\u001b[21;72H─\u001b[21;73H─\u001b[21;74H─\u001b[21;75H─\u001b[21;76H─\u001b[21;77H─\u001b[21;78H 4 \u001b[22;1H    ## xwinwrap ─\u001b[22;18H─\u001b[22;19H─\u001b[22;20H─\u001b[22;21H─\u001b[22;22H─\u001b[22;23H─\u001b[22;24H─\u001b[22;25H─\u001b[22;26H─\u001b[22;27H─\u001b[22;28H─\u001b[22;29H─\u001b[22;30H─\u001b[22;31H─\u001b[22;32H─\u001b[22;33H─\u001b[22;34H─\u001b[22;35H─\u001b[22;36H─\u001b[22;37H─\u001b[22;38H─\u001b[22;39H─\u001b[22;40H─\u001b[22;41H─\u001b[22;42H─\u001b[22;43H─\u001b[22;44H─\u001b[22;45H─\u001b[22;46H─\u001b[22;47H─\u001b[22;48H─\u001b[22;49H─\u001b[22;50H─\u001b[22;51H─\u001b[22;52H─\u001b[22;53H─\u001b[22;54H─\u001b[22;55H─\u001b[22;56H─\u001b[22;57H─\u001b[22;58H─\u001b[22;59H─\u001b[22;60H─\u001b[22;61H─\u001b[22;62H─\u001b[22;63H─\u001b[22;64H─\u001b[22;65H─\u001b[22;66H─\u001b[22;67H─\u001b[22;68H─\u001b[22;69H─\u001b[22;70H─\u001b[22;71H─\u001b[22;72H─\u001b[22;73H─\u001b[22;74H─\u001b[22;75H─\u001b[22;76H─\u001b[22;77H─\u001b[22;78H 5 \u001b[23;1H    ## Home dotfiles ─\u001b[23;23H─\u001b[23;24H─\u001b[23;25H─\u001b[23;26H"]
12
+[0.055899, "o", "─\u001b[23;27H─\u001b[23;28H─\u001b[23;29H─\u001b[23;30H─\u001b[23;31H─\u001b[23;32H─\u001b[23;33H─\u001b[23;34H─\u001b[23;35H─\u001b[23;36H─\u001b[23;37H─\u001b[23;38H─\u001b[23;39H─\u001b[23;40H─\u001b[23;41H─\u001b[23;42H─\u001b[23;43H─\u001b[23;44H─\u001b[23;45H─\u001b[23;46H─\u001b[23;47H─\u001b[23;48H─\u001b[23;49H─\u001b[23;50H─\u001b[23;51H─\u001b[23;52H─\u001b[23;53H─\u001b[23;54H─\u001b[23;55H─\u001b[23;56H─\u001b[23;57H─\u001b[23;58H─\u001b[23;59H─\u001b[23;60H─\u001b[23;61H─\u001b[23;62H─\u001b[23;63H─\u001b[23;64H─\u001b[23;65H─\u001b[23;66H─\u001b[23;67H─\u001b[23;68H─\u001b[23;69H─\u001b[23;70H─\u001b[23;71H─\u001b[23;72H─\u001b[23;73H─\u001b[23;74H─\u001b[23;75H─\u001b[23;76H─\u001b[23;77H 58 \u001b[24;1H    ## Prefix dotfiles ─\u001b[24;25H─\u001b[24;26H─\u001b[24;27H─\u001b[24;28H─\u001b[24;29H─\u001b[24;30H─\u001b[24;31H─\u001b[24;32H─\u001b[24;33H─\u001b[24;34H─\u001b[24;35H─\u001b[24;36H─\u001b[24;37H─\u001b[24;38H─\u001b[24;39H─\u001b[24;40H─\u001b[24;41H─\u001b[24;42H─\u001b[24;43H─\u001b[24;44H─\u001b[24;45H─\u001b[24;46H─\u001b[24;47H─\u001b[24;48H─\u001b[24;49H─\u001b[24;50H─\u001b[24;51H─\u001b[24;52H─\u001b[24;53H─\u001b[24;54H─\u001b[24;55H─\u001b[24;56H"]
13
+[0.056418, "o", "─\u001b[24;57H─\u001b[24;58H─\u001b[24;59H─\u001b[24;60H─\u001b[24;61H─\u001b[24;62H─\u001b[24;63H─\u001b[24;64H─\u001b[24;65H─\u001b[24;66H─\u001b[24;67H─\u001b[24;68H─\u001b[24;69H─\u001b[24;70H─\u001b[24;71H─\u001b[24;72H─\u001b[24;73H─\u001b[24;74H─\u001b[24;75H─\u001b[24;76H─\u001b[24;77H─\u001b[24;78H 8 \u001b[25;1H    ## Firefox extensions ─\u001b[25;28H─\u001b[25;29H─\u001b[25;30H─\u001b[25;31H─\u001b[25;32H─\u001b[25;33H─\u001b[25;34H─\u001b[25;35H─\u001b[25;36H─\u001b[25;37H─\u001b[25;38H─\u001b[25;39H─\u001b[25;40H─\u001b[25;41H─\u001b[25;42H─\u001b[25;43H─\u001b[25;44H─\u001b[25;45H─\u001b[25;46H─\u001b[25;47H─\u001b[25;48H─\u001b[25;49H─\u001b[25;50H─\u001b[25;51H─\u001b[25;52H─\u001b[25;53H─\u001b[25;54H─\u001b[25;55H─\u001b[25;56H─\u001b[25;57H─\u001b[25;58H─\u001b[25;59H─\u001b[25;60H─\u001b[25;61H─\u001b[25;62H─\u001b[25;63H─\u001b[25;64H─\u001b[25;65H─\u001b[25;66H─\u001b[25;67H─\u001b[25;68H─\u001b[25;69H─\u001b[25;70H─\u001b[25;71H─\u001b[25;72H─\u001b[25;73H─\u001b[25;74H─\u001b[25;75H─\u001b[25;76H─\u001b[25;77H 20 \u001b[m\u001b[27;3H\u001b[1m\u001b[96mpost_tasks\u001b[m\u001b[38;5;224m:\u001b[m\r\n\r\n\u001b[38;5;248m    ## pip packages ─\u001b[29;22H─\u001b[29;23H─\u001b[29;24H─\u001b[29;25H─\u001b[29;26H─\u001b[29;27H─\u001b[29;28H─\u001b[29;29H─\u001b[29;30H─\u001b[29;31H"]
14
+[0.056461, "o", "─\u001b[29;32H─\u001b[29;33H─\u001b[29;34H─\u001b[29;35H─\u001b[29;36H─\u001b[29;37H─\u001b[29;38H─\u001b[29;39H─\u001b[29;40H─\u001b[29;41H─\u001b[29;42H─\u001b[29;43H─\u001b[29;44H─\u001b[29;45H─\u001b[29;46H─\u001b[29;47H─\u001b[29;48H─\u001b[29;49H─\u001b[29;50H─\u001b[29;51H─\u001b[29;52H─\u001b[29;53H─\u001b[29;54H─\u001b[29;55H─\u001b[29;56H─\u001b[29;57H─\u001b[29;58H─\u001b[29;59H─\u001b[29;60H─\u001b[29;61H─\u001b[29;62H─\u001b[29;63H─\u001b[29;64H─\u001b[29;65H─\u001b[29;66H─\u001b[29;67H─\u001b[29;68H─\u001b[29;69H─\u001b[29;70H─\u001b[29;71H─\u001b[29;72H─\u001b[29;73H─\u001b[29;74H─\u001b[29;75H─\u001b[29;76H─\u001b[29;77H 10 \u001b[30;1H    ## pipx packages ─\u001b[30;23H─\u001b[30;24H─\u001b[30;25H─\u001b[30;26H─\u001b[30;27H─\u001b[30;28H─\u001b[30;29H─\u001b[30;30H─\u001b[30;31H─\u001b[30;32H─\u001b[30;33H─\u001b[30;34H─\u001b[30;35H─\u001b[30;36H─\u001b[30;37H─\u001b[30;38H─\u001b[30;39H─\u001b[30;40H─\u001b[30;41H─\u001b[30;42H─\u001b[30;43H─\u001b[30;44H─\u001b[30;45H─\u001b[30;46H─\u001b[30;47H─\u001b[30;48H─\u001b[30;49H─\u001b[30;50H─\u001b[30;51H─\u001b[30;52H─\u001b[30;53H─\u001b[30;54H─\u001b[30;55H─\u001b[30;56H─\u001b[30;57H─\u001b[30;58H─\u001b[30;59H"]
15
+[0.056548, "o", "─\u001b[30;60H─\u001b[30;61H─\u001b[30;62H─\u001b[30;63H─\u001b[30;64H─\u001b[30;65H─\u001b[30;66H─\u001b[30;67H─\u001b[30;68H─\u001b[30;69H─\u001b[30;70H─\u001b[30;71H─\u001b[30;72H─\u001b[30;73H─\u001b[30;74H─\u001b[30;75H─\u001b[30;76H─\u001b[30;77H 13 \u001b[31;1H    ## NPM packages ─\u001b[31;22H─\u001b[31;23H─\u001b[31;24H─\u001b[31;25H─\u001b[31;26H─\u001b[31;27H─\u001b[31;28H─\u001b[31;29H─\u001b[31;30H─\u001b[31;31H─\u001b[31;32H─\u001b[31;33H─\u001b[31;34H─\u001b[31;35H─\u001b[31;36H─\u001b[31;37H─\u001b[31;38H─\u001b[31;39H─\u001b[31;40H─\u001b[31;41H─\u001b[31;42H─\u001b[31;43H─\u001b[31;44H─\u001b[31;45H─\u001b[31;46H─\u001b[31;47H─\u001b[31;48H─\u001b[31;49H─\u001b[31;50H─\u001b[31;51H─\u001b[31;52H─\u001b[31;53H─\u001b[31;54H─\u001b[31;55H─\u001b[31;56H─\u001b[31;57H─\u001b[31;58H─\u001b[31;59H─\u001b[31;60H─\u001b[31;61H─\u001b[31;62H─\u001b[31;63H─\u001b[31;64H─\u001b[31;65H─\u001b[31;66H─\u001b[31;67H─\u001b[31;68H─\u001b[31;69H─\u001b[31;70H─\u001b[31;71H─\u001b[31;72H─\u001b[31;73H─\u001b[31;74H─\u001b[31;75H─\u001b[31;76H─\u001b[31;77H 10 \u001b[m\u001b[32;1H\u001b[94m~                                                                               \u001b[33;1H~                                                                        "]
16
+[0.056593, "o", "       \u001b[34;1H~                                                                               \u001b[35;1H~                                                                               \u001b[36;1H~                                                                               \u001b[37;1H~                                                                               \u001b[38;1H~                                                                               \u001b[39;1H~                                                                               \u001b[40;1H~                                                                               \u001b[41;1H~                                                                               \u001b[42;1H~                                                                               \u001b[43;1H~                                                                               \u001b[44;1H~                                                                               "]
17
+[0.056896, "o", "\u001b[45;1H~                                                                               \u001b[46;1H~                                                                               \u001b[47;1H~                                                                               \u001b[48;1H~                                                                               \u001b[49;1H~                                                                               \u001b]2;desktop.yml (~/projects/ansible/playbook/desktop) - VIM\u0007"]
18
+[0.057117, "o", "\u001b]1;desktop.yml\u0007\u001b[1;1H\u001b[?25h"]
19
+[1.057921, "o", "\u001b[50;1H\u001b[m                 \r\u001b[?25l\u001b[13;1H\u001b[?25h"]
20
+[2.058325, "o", "\u001b[50;1H                 \r"]
21
+[2.063569, "o", "\u001b[?25l\u001b[13;1H   \u001b[13;20H\u001b[K\u001b[14;1H    \u001b[93m- \u001b[m\u001b[1m\u001b[96mname\u001b[m\u001b[38;5;224m:\u001b[m \u001b[95m'Install APT packages'\u001b[m\u001b[14;35H\u001b[K\u001b[15;1H      \u001b[1m\u001b[96mbecome\u001b[m\u001b[38;5;224m:\u001b[m yes\u001b[15;18H\u001b[K\u001b[16;1H      \u001b[1m\u001b[96mapt\u001b[m\u001b[38;5;224m:\u001b[m\u001b[16;11H\u001b[K\u001b[17;9H\u001b[1m\u001b[96mname\u001b[m\u001b[38;5;224m:\u001b[m\r\n\u001b[38;5;248m          ### Support files ─\u001b[18;30H─\u001b[18;31H─\u001b[18;32H─\u001b[18;33H─\u001b[18;34H─\u001b[18;35H─\u001b[18;36H─\u001b[18;37H─\u001b[18;38H─\u001b[18;39H─\u001b[18;40H─\u001b[18;41H─\u001b[18;42H─\u001b[18;43H─\u001b[18;44H─\u001b[18;45H─\u001b[18;46H─\u001b[18;47H─\u001b[18;48H─\u001b[18;49H─\u001b[18;50H─\u001b[18;51H─\u001b[18;52H─\u001b[18;53H─\u001b[18;54H─\u001b[18;55H─\u001b[18;56H─\u001b[18;57H─\u001b[18;58H─\u001b[18;59H─\u001b[18;60H─\u001b[18;61H─\u001b[18;62H─\u001b[18;63H─\u001b[18;64H─\u001b[18;65H─\u001b[18;66H─\u001b[18;67H─\u001b[18;68H─\u001b[18;69H─\u001b[18;70H─\u001b[18;71H─\u001b[18;72H─\u001b[18;73H─\u001b[18;74H─\u001b[18;75H─\u001b[18;76H─\u001b[18;77H─\u001b[18;78H 5 \u001b[19;1H          ### Hardware ─\u001b[19;25H─\u001b[19;26H─\u001b[19;27H─\u001b[19;28H─\u001b[19;29H─\u001b[19;30H─\u001b[19;31H─\u001b[19;32H─\u001b[19;33H─\u001b[19;34H─\u001b[19;35H─\u001b[19;36H─\u001b["]
22
+[2.063688, "o", "19;37H─\u001b[19;38H─\u001b[19;39H─\u001b[19;40H─\u001b[19;41H─\u001b[19;42H─\u001b[19;43H─\u001b[19;44H─\u001b[19;45H─\u001b[19;46H─\u001b[19;47H─\u001b[19;48H─\u001b[19;49H─\u001b[19;50H─\u001b[19;51H─\u001b[19;52H─\u001b[19;53H─\u001b[19;54H─\u001b[19;55H─\u001b[19;56H─\u001b[19;57H─\u001b[19;58H─\u001b[19;59H─\u001b[19;60H─\u001b[19;61H─\u001b[19;62H─\u001b[19;63H─\u001b[19;64H─\u001b[19;65H─\u001b[19;66H─\u001b[19;67H─\u001b[19;68H─\u001b[19;69H─\u001b[19;70H─\u001b[19;71H─\u001b[19;72H─\u001b[19;73H─\u001b[19;74H─\u001b[19;75H─\u001b[19;76H─\u001b[19;77H 19 \u001b[20;5H      ### Python \u001b[57C4\r\n          ### Dotfile dependencies \u001b[43C6\r\n          ### CLI session \u001b[52C2\r\n          ### X session \u001b[53C10\r\n          ### CLI applications \u001b[45C 20\r\n          ### TUI applications \u001b[45C─\u001b[25;78H 9\r\n          ### GUI applications ─\u001b[26;33H─\u001b[26;34H─\u001b[26;35H─\u001b[26;36H─\u001b[26;37H─\u001b[26;38H─\u001b[26;39H─\u001b[26;40H─\u001b[26;41H─\u001b[26;42H─\u001b[26;43H─\u001b[26;44H─\u001b[26;45H─\u001b[26;46H─\u001b[26;47H─\u001b[26;48H─\u001b[26;49H─\u001b[26;50H─\u001b[26;51H─\u001b[26;52H─\u001b[26;53H"]
23
+[2.064069, "o", "─\u001b[26;54H─\u001b[26;55H─\u001b[26;56H─\u001b[26;57H─\u001b[26;58H─\u001b[26;59H─\u001b[26;60H─\u001b[26;61H─\u001b[26;62H─\u001b[26;63H─\u001b[26;64H─\u001b[26;65H─\u001b[26;66H─\u001b[26;67H─\u001b[26;68H─\u001b[26;69H─\u001b[26;70H─\u001b[26;71H─\u001b[26;72H─\u001b[26;73H─\u001b[26;74H─\u001b[26;75H─\u001b[26;76H─\u001b[26;77H 17 \u001b[27;1H          ### Development ─\u001b[27;28H─\u001b[27;29H─\u001b[27;30H─\u001b[27;31H─\u001b[27;32H─\u001b[27;33H─\u001b[27;34H─\u001b[27;35H─\u001b[27;36H─\u001b[27;37H─\u001b[27;38H─\u001b[27;39H─\u001b[27;40H─\u001b[27;41H─\u001b[27;42H─\u001b[27;43H─\u001b[27;44H─\u001b[27;45H─\u001b[27;46H─\u001b[27;47H─\u001b[27;48H─\u001b[27;49H─\u001b[27;50H─\u001b[27;51H─\u001b[27;52H─\u001b[27;53H─\u001b[27;54H─\u001b[27;55H─\u001b[27;56H─\u001b[27;57H─\u001b[27;58H─\u001b[27;59H─\u001b[27;60H─\u001b[27;61H─\u001b[27;62H─\u001b[27;63H─\u001b[27;64H─\u001b[27;65H─\u001b[27;66H─\u001b[27;67H─\u001b[27;68H─\u001b[27;69H─\u001b[27;70H─\u001b[27;71H─\u001b[27;72H─\u001b[27;73H─\u001b[27;74H─\u001b[27;75H─\u001b[27;76H─\u001b[27;77H 46 \u001b[28;1H          ### DevOps ─\u001b[28;23H─\u001b[28;24H─\u001b[28;25H─\u001b[28;26H─\u001b[28;27H─\u001b[28;28H─\u001b[28;29H─\u001b[28;30H─\u001b[28;31H─\u001b[28;32H─\u001b[28;33H─\u001b[28;34H─\u001b[28;3"]
24
+[2.064168, "o", "5H─\u001b[28;36H─\u001b[28;37H─\u001b[28;38H─\u001b[28;39H─\u001b[28;40H─\u001b[28;41H─\u001b[28;42H─\u001b[28;43H─\u001b[28;44H─\u001b[28;45H─\u001b[28;46H─\u001b[28;47H─\u001b[28;48H─\u001b[28;49H─\u001b[28;50H─\u001b[28;51H─\u001b[28;52H─\u001b[28;53H─\u001b[28;54H─\u001b[28;55H─\u001b[28;56H─\u001b[28;57H─\u001b[28;58H─\u001b[28;59H─\u001b[28;60H─\u001b[28;61H─\u001b[28;62H─\u001b[28;63H─\u001b[28;64H─\u001b[28;65H─\u001b[28;66H─\u001b[28;67H─\u001b[28;68H─\u001b[28;69H─\u001b[28;70H─\u001b[28;71H─\u001b[28;72H─\u001b[28;73H─\u001b[28;74H─\u001b[28;75H─\u001b[28;76H─\u001b[28;77H─\u001b[28;78H 7 \u001b[m\u001b[29;1H\u001b[K\u001b[30;8H\u001b[38;5;248mHardware ─\u001b[30;18H─\u001b[30;19H─\u001b[30;20H─\u001b[30;21H─\u001b[30;79H0\u001b[31;8HPrefix ─\u001b[31;16H─\u001b[31;17H─\u001b[31;18H─\u001b[31;19H─\u001b[31;20H─\u001b[31;77H─\u001b[31;78H 7\r\n    ## Dotfiles ─\u001b[32;18H─\u001b[32;19H─\u001b[32;20H─\u001b[32;21H─\u001b[32;22H─\u001b[32;23H─\u001b[32;24H─\u001b[32;25H─\u001b[32;26H─\u001b[32;27H─\u001b[32;28H─\u001b[32;29H─\u001b[32;30H─\u001b[32;31H─\u001b[32;32H─\u001b[32;33H─\u001b[32;34H─\u001b[32;35H─\u001b[32;36H─\u001b[32;37H─\u001b[32;38H─\u001b[32;39H─\u001b[32;40H─\u001b[32;41H"]
25
+[2.064574, "o", "─\u001b[32;42H─\u001b[32;43H─\u001b[32;44H─\u001b[32;45H─\u001b[32;46H─\u001b[32;47H─\u001b[32;48H─\u001b[32;49H─\u001b[32;50H─\u001b[32;51H─\u001b[32;52H─\u001b[32;53H─\u001b[32;54H─\u001b[32;55H─\u001b[32;56H─\u001b[32;57H─\u001b[32;58H─\u001b[32;59H─\u001b[32;60H─\u001b[32;61H─\u001b[32;62H─\u001b[32;63H─\u001b[32;64H─\u001b[32;65H─\u001b[32;66H─\u001b[32;67H─\u001b[32;68H─\u001b[32;69H─\u001b[32;70H─\u001b[32;71H─\u001b[32;72H─\u001b[32;73H─\u001b[32;74H─\u001b[32;75H─\u001b[32;76H─\u001b[32;77H 15 \u001b[m\u001b[33;1H\u001b[K\u001b[34;1H  \u001b[1m\u001b[96mroles\u001b[m\u001b[38;5;224m:\u001b[m\u001b[34;9H\u001b[K\u001b[35;1H\u001b[K\u001b[36;1H\u001b[38;5;248m    ## Unattended ─\u001b[36;20H─\u001b[36;21H─\u001b[36;22H─\u001b[36;23H─\u001b[36;24H─\u001b[36;25H─\u001b[36;26H─\u001b[36;27H─\u001b[36;28H─\u001b[36;29H─\u001b[36;30H─\u001b[36;31H─\u001b[36;32H─\u001b[36;33H─\u001b[36;34H─\u001b[36;35H─\u001b[36;36H─\u001b[36;37H─\u001b[36;38H─\u001b[36;39H─\u001b[36;40H─\u001b[36;41H─\u001b[36;42H─\u001b[36;43H─\u001b[36;44H─\u001b[36;45H─\u001b[36;46H─\u001b[36;47H─\u001b[36;48H─\u001b[36;49H─\u001b[36;50H─\u001b[36;51H─\u001b[36;52H─\u001b[36;53H─\u001b[36;54H─\u001b[36;55H─\u001b[36;56H─\u001b[36;57H─\u001b[36;58H─\u001b[36;59H─\u001b[36;60H─\u001b[36;61H─\u001b[36;62H─\u001b[36;63H─\u001b[36;64H─\u001b[36;65H─\u001b[36;"]
26
+[2.064649, "o", "66H─\u001b[36;67H─\u001b[36;68H─\u001b[36;69H─\u001b[36;70H─\u001b[36;71H─\u001b[36;72H─\u001b[36;73H─\u001b[36;74H─\u001b[36;75H─\u001b[36;76H─\u001b[36;77H─\u001b[36;78H 3 \u001b[37;1H    ## Xsession ─\u001b[37;18H─\u001b[37;19H─\u001b[37;20H─\u001b[37;21H─\u001b[37;22H─\u001b[37;23H─\u001b[37;24H─\u001b[37;25H─\u001b[37;26H─\u001b[37;27H─\u001b[37;28H─\u001b[37;29H─\u001b[37;30H─\u001b[37;31H─\u001b[37;32H─\u001b[37;33H─\u001b[37;34H─\u001b[37;35H─\u001b[37;36H─\u001b[37;37H─\u001b[37;38H─\u001b[37;39H─\u001b[37;40H─\u001b[37;41H─\u001b[37;42H─\u001b[37;43H─\u001b[37;44H─\u001b[37;45H─\u001b[37;46H─\u001b[37;47H─\u001b[37;48H─\u001b[37;49H─\u001b[37;50H─\u001b[37;51H─\u001b[37;52H─\u001b[37;53H─\u001b[37;54H─\u001b[37;55H─\u001b[37;56H─\u001b[37;57H─\u001b[37;58H─\u001b[37;59H─\u001b[37;60H─\u001b[37;61H─\u001b[37;62H─\u001b[37;63H─\u001b[37;64H─\u001b[37;65H─\u001b[37;66H─\u001b[37;67H─\u001b[37;68H─\u001b[37;69H─\u001b[37;70H─\u001b[37;71H─\u001b[37;72H─\u001b[37;73H─\u001b[37;74H─\u001b[37;75H─\u001b[37;76H─\u001b[37;77H─\u001b[37;78H 4 \u001b[38;1H    ## xwinwrap ─\u001b[38;18H─\u001b[38;19H─\u001b[38;20H─\u001b[38;21H─\u001b[38;22H─\u001b[38;23H─\u001b[38;24H─\u001b[38;25H"]
27
+[2.064936, "o", "─\u001b[38;26H─\u001b[38;27H─\u001b[38;28H─\u001b[38;29H─\u001b[38;30H─\u001b[38;31H─\u001b[38;32H─\u001b[38;33H─\u001b[38;34H─\u001b[38;35H─\u001b[38;36H─\u001b[38;37H─\u001b[38;38H─\u001b[38;39H─\u001b[38;40H─\u001b[38;41H─\u001b[38;42H─\u001b[38;43H─\u001b[38;44H─\u001b[38;45H─\u001b[38;46H─\u001b[38;47H─\u001b[38;48H─\u001b[38;49H─\u001b[38;50H─\u001b[38;51H─\u001b[38;52H─\u001b[38;53H─\u001b[38;54H─\u001b[38;55H─\u001b[38;56H─\u001b[38;57H─\u001b[38;58H─\u001b[38;59H─\u001b[38;60H─\u001b[38;61H─\u001b[38;62H─\u001b[38;63H─\u001b[38;64H─\u001b[38;65H─\u001b[38;66H─\u001b[38;67H─\u001b[38;68H─\u001b[38;69H─\u001b[38;70H─\u001b[38;71H─\u001b[38;72H─\u001b[38;73H─\u001b[38;74H─\u001b[38;75H─\u001b[38;76H─\u001b[38;77H─\u001b[38;78H 5 \u001b[39;1H    ## Home dotfiles ─\u001b[39;23H─\u001b[39;24H─\u001b[39;25H─\u001b[39;26H─\u001b[39;27H─\u001b[39;28H─\u001b[39;29H─\u001b[39;30H─\u001b[39;31H─\u001b[39;32H─\u001b[39;33H─\u001b[39;34H─\u001b[39;35H─\u001b[39;36H─\u001b[39;37H─\u001b[39;38H─\u001b[39;39H─\u001b[39;40H─\u001b[39;41H─\u001b[39;42H─\u001b[39;43H─\u001b[39;44H─\u001b[39;45H─\u001b[39;46H─\u001b[39;47H─\u001b[39;48H─\u001b[39;49H─\u001b[39;50H─\u001b[39;51H─\u001b[39;52H─\u001b[39;53H─\u001b[39;54H─\u001b[39;55H─\u001b[39;56H─\u001b[39;57H─\u001b[39;58H─\u001b[39;59H─"]
28
+[2.065018, "o", "\u001b[39;60H─\u001b[39;61H─\u001b[39;62H─\u001b[39;63H─\u001b[39;64H─\u001b[39;65H─\u001b[39;66H─\u001b[39;67H─\u001b[39;68H─\u001b[39;69H─\u001b[39;70H─\u001b[39;71H─\u001b[39;72H─\u001b[39;73H─\u001b[39;74H─\u001b[39;75H─\u001b[39;76H─\u001b[39;77H 58 \u001b[40;1H    ## Prefix dotfiles ─\u001b[40;25H─\u001b[40;26H─\u001b[40;27H─\u001b[40;28H─\u001b[40;29H─\u001b[40;30H─\u001b[40;31H─\u001b[40;32H─\u001b[40;33H─\u001b[40;34H─\u001b[40;35H─\u001b[40;36H─\u001b[40;37H─\u001b[40;38H─\u001b[40;39H─\u001b[40;40H─\u001b[40;41H─\u001b[40;42H─\u001b[40;43H─\u001b[40;44H─\u001b[40;45H─\u001b[40;46H─\u001b[40;47H─\u001b[40;48H─\u001b[40;49H─\u001b[40;50H─\u001b[40;51H─\u001b[40;52H─\u001b[40;53H─\u001b[40;54H─\u001b[40;55H─\u001b[40;56H─\u001b[40;57H─\u001b[40;58H─\u001b[40;59H─\u001b[40;60H─\u001b[40;61H─\u001b[40;62H─\u001b[40;63H─\u001b[40;64H─\u001b[40;65H─\u001b[40;66H─\u001b[40;67H─\u001b[40;68H─\u001b[40;69H─\u001b[40;70H─\u001b[40;71H─\u001b[40;72H─\u001b[40;73H─\u001b[40;74H─\u001b[40;75H─\u001b[40;76H─\u001b[40;77H─\u001b[40;78H 8 \u001b[41;1H    ## Firefox extensions ─\u001b[41;28H─\u001b[41;29H─\u001b[41;30H─\u001b[41;31H─\u001b[41;32H─\u001b[41;33H─\u001b[41;34H─\u001b[41;35H"]
29
+[2.065534, "o", "─\u001b[41;36H─\u001b[41;37H─\u001b[41;38H─\u001b[41;39H─\u001b[41;40H─\u001b[41;41H─\u001b[41;42H─\u001b[41;43H─\u001b[41;44H─\u001b[41;45H─\u001b[41;46H─\u001b[41;47H─\u001b[41;48H─\u001b[41;49H─\u001b[41;50H─\u001b[41;51H─\u001b[41;52H─\u001b[41;53H─\u001b[41;54H─\u001b[41;55H─\u001b[41;56H─\u001b[41;57H─\u001b[41;58H─\u001b[41;59H─\u001b[41;60H─\u001b[41;61H─\u001b[41;62H─\u001b[41;63H─\u001b[41;64H─\u001b[41;65H─\u001b[41;66H─\u001b[41;67H─\u001b[41;68H─\u001b[41;69H─\u001b[41;70H─\u001b[41;71H─\u001b[41;72H─\u001b[41;73H─\u001b[41;74H─\u001b[41;75H─\u001b[41;76H─\u001b[41;77H 20 \u001b[m\u001b[42;1H\u001b[K\u001b[43;1H  \u001b[1m\u001b[96mpost_tasks\u001b[m\u001b[38;5;224m:\u001b[m\u001b[43;14H\u001b[K\u001b[44;1H\u001b[K\u001b[45;1H\u001b[38;5;248m    ## pip packages ─\u001b[45;22H─\u001b[45;23H─\u001b[45;24H─\u001b[45;25H─\u001b[45;26H─\u001b[45;27H─\u001b[45;28H─\u001b[45;29H─\u001b[45;30H─\u001b[45;31H─\u001b[45;32H─\u001b[45;33H─\u001b[45;34H─\u001b[45;35H─\u001b[45;36H─\u001b[45;37H─\u001b[45;38H─\u001b[45;39H─\u001b[45;40H─\u001b[45;41H─\u001b[45;42H─\u001b[45;43H─\u001b[45;44H─\u001b[45;45H─\u001b[45;46H─\u001b[45;47H─\u001b[45;48H─\u001b[45;49H─\u001b[45;50H─\u001b[45;51H─\u001b[45;52H─\u001b[45;53H─\u001b[45;54H─\u001b[45;55H─\u001b[45;56H─\u001b[45;57H─\u001b[45;58H─\u001b[45;59H─\u001b[45;60H─\u001b[45;61H"]
30
+[2.065633, "o", "─\u001b[45;62H─\u001b[45;63H─\u001b[45;64H─\u001b[45;65H─\u001b[45;66H─\u001b[45;67H─\u001b[45;68H─\u001b[45;69H─\u001b[45;70H─\u001b[45;71H─\u001b[45;72H─\u001b[45;73H─\u001b[45;74H─\u001b[45;75H─\u001b[45;76H─\u001b[45;77H 10 \u001b[46;1H    ## pipx packages ─\u001b[46;23H─\u001b[46;24H─\u001b[46;25H─\u001b[46;26H─\u001b[46;27H─\u001b[46;28H─\u001b[46;29H─\u001b[46;30H─\u001b[46;31H─\u001b[46;32H─\u001b[46;33H─\u001b[46;34H─\u001b[46;35H─\u001b[46;36H─\u001b[46;37H─\u001b[46;38H─\u001b[46;39H─\u001b[46;40H─\u001b[46;41H─\u001b[46;42H─\u001b[46;43H─\u001b[46;44H─\u001b[46;45H─\u001b[46;46H─\u001b[46;47H─\u001b[46;48H─\u001b[46;49H─\u001b[46;50H─\u001b[46;51H─\u001b[46;52H─\u001b[46;53H─\u001b[46;54H─\u001b[46;55H─\u001b[46;56H─\u001b[46;57H─\u001b[46;58H─\u001b[46;59H─\u001b[46;60H─\u001b[46;61H─\u001b[46;62H─\u001b[46;63H─\u001b[46;64H─\u001b[46;65H─\u001b[46;66H─\u001b[46;67H─\u001b[46;68H─\u001b[46;69H─\u001b[46;70H─\u001b[46;71H─\u001b[46;72H─\u001b[46;73H─\u001b[46;74H─\u001b[46;75H─\u001b[46;76H─\u001b[46;77H 13 \u001b[47;1H    ## NPM packages ─\u001b[47;22H─\u001b[47;23H─\u001b[47;24H─\u001b[47;25H─\u001b[47;26H─\u001b[47;27H─\u001b[47;28H─\u001b[47;29H─\u001b[47;30H─\u001b[47;31H─\u001b[47;32H─\u001b[47;33H─\u001b[47;34H─\u001b[47;35H─\u001b[47;36H─\u001b[47;37H─\u001b"]
31
+[2.065749, "o", "[47;38H─\u001b[47;39H─\u001b[47;40H─\u001b[47;41H─\u001b[47;42H─\u001b[47;43H─\u001b[47;44H─\u001b[47;45H─\u001b[47;46H─\u001b[47;47H─\u001b[47;48H─\u001b[47;49H─\u001b[47;50H─\u001b[47;51H─\u001b[47;52H─\u001b[47;53H─\u001b[47;54H─\u001b[47;55H─\u001b[47;56H─\u001b[47;57H─\u001b[47;58H─\u001b[47;59H─\u001b[47;60H─\u001b[47;61H─\u001b[47;62H─\u001b[47;63H─\u001b[47;64H─\u001b[47;65H─\u001b[47;66H─\u001b[47;67H─\u001b[47;68H─\u001b[47;69H─\u001b[47;70H─\u001b[47;71H─\u001b[47;72H─\u001b[47;73H─\u001b[47;74H─\u001b[47;75H─\u001b[47;76H─\u001b[47;77H 10 \u001b[13;1H\u001b[?25h"]
32
+[3.066704, "o", "\u001b[50;1H\u001b[m                 \r\u001b[?25l\u001b[20;1H\u001b[?25h"]
33
+[4.067163, "o", "\u001b[50;1H                 \r"]
34
+[4.074334, "o", "\u001b[?25l\u001b[20;1H         \u001b[20;21H\u001b[K\u001b[21;1H          \u001b[93m- \u001b[m\u001b[95m'python3'\u001b[m\u001b[21;22H\u001b[K\u001b[22;1H          \u001b[93m- \u001b[m\u001b[95m'python3-pip'\u001b[m\u001b[22;26H\u001b[K\u001b[23;1H          \u001b[93m- \u001b[m\u001b[95m'python3-venv'\u001b[m\u001b[23;27H\u001b[K\u001b[24;15H\u001b[38;5;248mDotfile dependencies \u001b[41C─\u001b[24;78H 6\u001b[25;15HCLI session ─\u001b[25;28H─\u001b[25;29H─\u001b[25;30H─\u001b[25;31H─\u001b[25;79H2\u001b[26;15HX session ─\u001b[26;26H─\u001b[26;27H─\u001b[26;28H─\u001b[26;29H─\u001b[26;30H─\u001b[26;31H─\u001b[26;79H0\u001b[27;15HCLI applications \u001b[46C20\u001b[28;15HTUI applications \u001b[47C9\r\n          ### GUI applications ─\u001b[29;33H─\u001b[29;34H─\u001b[29;35H─\u001b[29;36H─\u001b[29;37H─\u001b[29;38H─\u001b[29;39H─\u001b[29;40H─\u001b[29;41H─\u001b[29;42H─\u001b[29;43H─\u001b[29;44H─\u001b[29;45H─\u001b[29;46H─\u001b[29;47H─\u001b[29;48H─\u001b[29;49H─\u001b[29;50H─\u001b[29;51H─\u001b[29;52H─\u001b[29;53H─\u001b[29;54H─\u001b[29;55H─\u001b[29;56H─\u001b[29;57H─\u001b[29;58H─\u001b[29;59H─\u001b[29;60H─\u001b[29;61H─\u001b[29;62H─\u001b[29;63H─\u001b[29;64H─\u001b[29;65H─\u001b[29;66H─\u001b[29;67H─\u001b[29;68H─\u001b[29;69H─\u001b[29;70H─\u001b[29;71H─\u001b[29;72H─\u001b[29;73H─\u001b[29;74H─\u001b[29;75H─\u001b[29;76H─\u001b[29"]
35
+[4.074382, "o", ";77H 17 \u001b[30;5H      ### Development \u001b[51C46\r\n          ### DevOps \u001b[m\u001b[32;1H\u001b[K\u001b[33;1H\u001b[38;5;248m    ## Hardware ─\u001b[33;18H─\u001b[33;19H─\u001b[33;20H─\u001b[33;21H─\u001b[33;22H─\u001b[33;23H─\u001b[33;24H─\u001b[33;25H─\u001b[33;26H─\u001b[33;27H─\u001b[33;28H─\u001b[33;29H─\u001b[33;30H─\u001b[33;31H─\u001b[33;32H─\u001b[33;33H─\u001b[33;34H─\u001b[33;35H─\u001b[33;36H─\u001b[33;37H─\u001b[33;38H─\u001b[33;39H─\u001b[33;40H─\u001b[33;41H─\u001b[33;42H─\u001b[33;43H─\u001b[33;44H─\u001b[33;45H─\u001b[33;46H─\u001b[33;47H─\u001b[33;48H─\u001b[33;49H─\u001b[33;50H─\u001b[33;51H─\u001b[33;52H─\u001b[33;53H─\u001b[33;54H─\u001b[33;55H─\u001b[33;56H─\u001b[33;57H─\u001b[33;58H─\u001b[33;59H─\u001b[33;60H─\u001b[33;61H─\u001b[33;62H─\u001b[33;63H─\u001b[33;64H─\u001b[33;65H─\u001b[33;66H─\u001b[33;67H─\u001b[33;68H─\u001b[33;69H─\u001b[33;70H─\u001b[33;71H─\u001b[33;72H─\u001b[33;73H─\u001b[33;74H─\u001b[33;75H─\u001b[33;76H─\u001b[33;77H 10 \u001b[34;1H    ## Prefix ─\u001b[34;16H─\u001b[34;17H─\u001b[34;18H─\u001b[34;19H─\u001b[34;20H─\u001b[34;21H─\u001b[34;22H─\u001b[34;23H─\u001b[34;24H─\u001b[34;25H─\u001b[34;26H─\u001b[34;27H─\u001b[34;28H─"]
36
+[4.075049, "o", "\u001b[34;29H─\u001b[34;30H─\u001b[34;31H─\u001b[34;32H─\u001b[34;33H─\u001b[34;34H─\u001b[34;35H─\u001b[34;36H─\u001b[34;37H─\u001b[34;38H─\u001b[34;39H─\u001b[34;40H─\u001b[34;41H─\u001b[34;42H─\u001b[34;43H─\u001b[34;44H─\u001b[34;45H─\u001b[34;46H─\u001b[34;47H─\u001b[34;48H─\u001b[34;49H─\u001b[34;50H─\u001b[34;51H─\u001b[34;52H─\u001b[34;53H─\u001b[34;54H─\u001b[34;55H─\u001b[34;56H─\u001b[34;57H─\u001b[34;58H─\u001b[34;59H─\u001b[34;60H─\u001b[34;61H─\u001b[34;62H─\u001b[34;63H─\u001b[34;64H─\u001b[34;65H─\u001b[34;66H─\u001b[34;67H─\u001b[34;68H─\u001b[34;69H─\u001b[34;70H─\u001b[34;71H─\u001b[34;72H─\u001b[34;73H─\u001b[34;74H─\u001b[34;75H─\u001b[34;76H─\u001b[34;77H─\u001b[34;78H 7 \u001b[35;1H    ## Dotfiles ─\u001b[35;18H─\u001b[35;19H─\u001b[35;20H─\u001b[35;21H─\u001b[35;22H─\u001b[35;23H─\u001b[35;24H─\u001b[35;25H─\u001b[35;26H─\u001b[35;27H─\u001b[35;28H─\u001b[35;29H─\u001b[35;30H─\u001b[35;31H─\u001b[35;32H─\u001b[35;33H─\u001b[35;34H─\u001b[35;35H─\u001b[35;36H─\u001b[35;37H─\u001b[35;38H─\u001b[35;39H─\u001b[35;40H─\u001b[35;41H─\u001b[35;42H─\u001b[35;43H─\u001b[35;44H─\u001b[35;45H─\u001b[35;46H─\u001b[35;47H─\u001b[35;48H─\u001b[35;49H─\u001b[35;50H─\u001b[35;51H─\u001b[35;52H─\u001b[35;53H─\u001b[35;54H─\u001b[35;55H─\u001b[35;56H─\u001b[35;57H─\u001b[35;58H"]
37
+[4.07508, "o", "─\u001b[35;59H─\u001b[35;60H─\u001b[35;61H─\u001b[35;62H─\u001b[35;63H─\u001b[35;64H─\u001b[35;65H─\u001b[35;66H─\u001b[35;67H─\u001b[35;68H─\u001b[35;69H─\u001b[35;70H─\u001b[35;71H─\u001b[35;72H─\u001b[35;73H─\u001b[35;74H─\u001b[35;75H─\u001b[35;76H─\u001b[35;77H 15 \u001b[m\u001b[36;1H\u001b[K\u001b[37;1H  \u001b[1m\u001b[96mroles\u001b[m\u001b[38;5;224m:\u001b[m\u001b[37;9H\u001b[K\u001b[38;1H\u001b[K\u001b[39;8H\u001b[38;5;248mUnattended ─\u001b[39;20H─\u001b[39;21H─\u001b[39;77H─\u001b[39;78H 3\u001b[40;8HXsession ─\u001b[40;18H─\u001b[40;19H─\u001b[40;20H─\u001b[40;21H─\u001b[40;22H─\u001b[40;23H─\u001b[40;79H4\u001b[41;8Hxwinwrap ─\u001b[41;18H─\u001b[41;19H─\u001b[41;20H─\u001b[41;21H─\u001b[41;22H─\u001b[41;23H─\u001b[41;24H─\u001b[41;25H─\u001b[41;26H─\u001b[41;77H─\u001b[41;78H 5\r\n    ## Home dotfiles ─\u001b[42;23H─\u001b[42;24H─\u001b[42;25H─\u001b[42;26H─\u001b[42;27H─\u001b[42;28H─\u001b[42;29H─\u001b[42;30H─\u001b[42;31H─\u001b[42;32H─\u001b[42;33H─\u001b[42;34H─\u001b[42;35H─\u001b[42;36H─\u001b[42;37H─\u001b[42;38H─\u001b[42;39H─\u001b[42;40H─\u001b[42;41H─\u001b[42;42H─\u001b[42;43H─\u001b[42;44H─\u001b[42;45H─\u001b[42;46H─\u001b[42;47H─\u001b[42;48H─\u001b[42;49H─\u001b[42;50H─\u001b[42;51H─\u001b[42;52H"]
38
+[4.075662, "o", "─\u001b[42;53H─\u001b[42;54H─\u001b[42;55H─\u001b[42;56H─\u001b[42;57H─\u001b[42;58H─\u001b[42;59H─\u001b[42;60H─\u001b[42;61H─\u001b[42;62H─\u001b[42;63H─\u001b[42;64H─\u001b[42;65H─\u001b[42;66H─\u001b[42;67H─\u001b[42;68H─\u001b[42;69H─\u001b[42;70H─\u001b[42;71H─\u001b[42;72H─\u001b[42;73H─\u001b[42;74H─\u001b[42;75H─\u001b[42;76H─\u001b[42;77H 58 \u001b[43;1H    ## Prefix dotfiles ─\u001b[43;25H─\u001b[43;26H─\u001b[43;27H─\u001b[43;28H─\u001b[43;29H─\u001b[43;30H─\u001b[43;31H─\u001b[43;32H─\u001b[43;33H─\u001b[43;34H─\u001b[43;35H─\u001b[43;36H─\u001b[43;37H─\u001b[43;38H─\u001b[43;39H─\u001b[43;40H─\u001b[43;41H─\u001b[43;42H─\u001b[43;43H─\u001b[43;44H─\u001b[43;45H─\u001b[43;46H─\u001b[43;47H─\u001b[43;48H─\u001b[43;49H─\u001b[43;50H─\u001b[43;51H─\u001b[43;52H─\u001b[43;53H─\u001b[43;54H─\u001b[43;55H─\u001b[43;56H─\u001b[43;57H─\u001b[43;58H─\u001b[43;59H─\u001b[43;60H─\u001b[43;61H─\u001b[43;62H─\u001b[43;63H─\u001b[43;64H─\u001b[43;65H─\u001b[43;66H─\u001b[43;67H─\u001b[43;68H─\u001b[43;69H─\u001b[43;70H─\u001b[43;71H─\u001b[43;72H─\u001b[43;73H─\u001b[43;74H─\u001b[43;75H─\u001b[43;76H─\u001b[43;77H─\u001b[43;78H 8 \u001b[44;1H    ## Firefox extensions ─\u001b[44;28H─\u001b[44;29H─\u001b[44;30H─\u001b[44;31H─\u001b[44;32H─\u001b[44;33H─\u001b[44;34H─\u001b[44;"]
39
+[4.075692, "o", "35H─\u001b[44;36H─\u001b[44;37H─\u001b[44;38H─\u001b[44;39H─\u001b[44;40H─\u001b[44;41H─\u001b[44;42H─\u001b[44;43H─\u001b[44;44H─\u001b[44;45H─\u001b[44;46H─\u001b[44;47H─\u001b[44;48H─\u001b[44;49H─\u001b[44;50H─\u001b[44;51H─\u001b[44;52H─\u001b[44;53H─\u001b[44;54H─\u001b[44;55H─\u001b[44;56H─\u001b[44;57H─\u001b[44;58H─\u001b[44;59H─\u001b[44;60H─\u001b[44;61H─\u001b[44;62H─\u001b[44;63H─\u001b[44;64H─\u001b[44;65H─\u001b[44;66H─\u001b[44;67H─\u001b[44;68H─\u001b[44;69H─\u001b[44;70H─\u001b[44;71H─\u001b[44;72H─\u001b[44;73H─\u001b[44;74H─\u001b[44;75H─\u001b[44;76H─\u001b[44;77H 20 \u001b[m\u001b[45;1H\u001b[K\u001b[46;1H  \u001b[1m\u001b[96mpost_tasks\u001b[m\u001b[38;5;224m:\u001b[m\u001b[46;14H\u001b[K\u001b[47;1H\u001b[K\u001b[48;1H\u001b[38;5;248m    ## pip packages ─\u001b[48;22H─\u001b[48;23H─\u001b[48;24H─\u001b[48;25H─\u001b[48;26H─\u001b[48;27H─\u001b[48;28H─\u001b[48;29H─\u001b[48;30H─\u001b[48;31H─\u001b[48;32H─\u001b[48;33H─\u001b[48;34H─\u001b[48;35H─\u001b[48;36H─\u001b[48;37H─\u001b[48;38H─\u001b[48;39H─\u001b[48;40H─\u001b[48;41H─\u001b[48;42H─\u001b[48;43H─\u001b[48;44H─\u001b[48;45H─\u001b[48;46H─\u001b[48;47H─\u001b[48;48H─\u001b[48;49H─\u001b[48;50H─\u001b[48;51H─\u001b[48;52H─\u001b[48;53H─\u001b[48;54H"]
40
+[4.075817, "o", "─\u001b[48;55H─\u001b[48;56H─\u001b[48;57H─\u001b[48;58H─\u001b[48;59H─\u001b[48;60H─\u001b[48;61H─\u001b[48;62H─\u001b[48;63H─\u001b[48;64H─\u001b[48;65H─\u001b[48;66H─\u001b[48;67H─\u001b[48;68H─\u001b[48;69H─\u001b[48;70H─\u001b[48;71H─\u001b[48;72H─\u001b[48;73H─\u001b[48;74H─\u001b[48;75H─\u001b[48;76H─\u001b[48;77H 10 \u001b[49;1H    ## pipx packages ─\u001b[49;23H─\u001b[49;24H─\u001b[49;25H─\u001b[49;26H─\u001b[49;27H─\u001b[49;28H─\u001b[49;29H─\u001b[49;30H─\u001b[49;31H─\u001b[49;32H─\u001b[49;33H─\u001b[49;34H─\u001b[49;35H─\u001b[49;36H─\u001b[49;37H─\u001b[49;38H─\u001b[49;39H─\u001b[49;40H─\u001b[49;41H─\u001b[49;42H─\u001b[49;43H─\u001b[49;44H─\u001b[49;45H─\u001b[49;46H─\u001b[49;47H─\u001b[49;48H─\u001b[49;49H─\u001b[49;50H─\u001b[49;51H─\u001b[49;52H─\u001b[49;53H─\u001b[49;54H─\u001b[49;55H─\u001b[49;56H─\u001b[49;57H─\u001b[49;58H─\u001b[49;59H─\u001b[49;60H─\u001b[49;61H─\u001b[49;62H─\u001b[49;63H─\u001b[49;64H─\u001b[49;65H─\u001b[49;66H─\u001b[49;67H─\u001b[49;68H─\u001b[49;69H─\u001b[49;70H─\u001b[49;71H─\u001b[49;72H─\u001b[49;73H─\u001b[49;74H─\u001b[49;75H─\u001b[49;76H─\u001b[49;77H 13 \u001b[20;1H\u001b[?25h"]
41
+[5.076435, "o", "\u001b[50;1H\u001b[m                 \r\u001b[?25l\u001b[20;1H\u001b[?25h"]
42
+[6.076838, "o", "\u001b[50;1H                 \r"]
43
+[6.083395, "o", "\u001b[?25l\u001b[20;1H\u001b[38;5;248m         \u001b[11C ─\u001b[20;23H─\u001b[20;24H─\u001b[20;25H─\u001b[20;26H─\u001b[20;27H─\u001b[20;28H─\u001b[20;29H─\u001b[20;30H─\u001b[20;31H─\u001b[20;32H─\u001b[20;33H─\u001b[20;34H─\u001b[20;35H─\u001b[20;36H─\u001b[20;37H─\u001b[20;38H─\u001b[20;39H─\u001b[20;40H─\u001b[20;41H─\u001b[20;42H─\u001b[20;43H─\u001b[20;44H─\u001b[20;45H─\u001b[20;46H─\u001b[20;47H─\u001b[20;48H─\u001b[20;49H─\u001b[20;50H─\u001b[20;51H─\u001b[20;52H─\u001b[20;53H─\u001b[20;54H─\u001b[20;55H─\u001b[20;56H─\u001b[20;57H─\u001b[20;58H─\u001b[20;59H─\u001b[20;60H─\u001b[20;61H─\u001b[20;62H─\u001b[20;63H─\u001b[20;64H─\u001b[20;65H─\u001b[20;66H─\u001b[20;67H─\u001b[20;68H─\u001b[20;69H─\u001b[20;70H─\u001b[20;71H─\u001b[20;72H─\u001b[20;73H─\u001b[20;74H─\u001b[20;75H─\u001b[20;76H─\u001b[20;77H─\u001b[20;78H 4 \u001b[21;1H          ### Dotfile dependencies ─\u001b[21;37H─\u001b[21;38H─\u001b[21;39H─\u001b[21;40H─\u001b[21;41H─\u001b[21;42H─\u001b[21;43H─\u001b[21;44H─\u001b[21;45H─\u001b[21;46H─\u001b[21;47H─\u001b[21;48H─\u001b[21;49H─\u001b[21;50H─\u001b[21;51H─\u001b[21;52H─\u001b[21;53H─\u001b[21;54H─\u001b[21;55H─\u001b[21;56H─\u001b[21;57H─\u001b[21;58H─\u001b[21;59H─\u001b[21;60H─\u001b[21;61H─\u001b[21;62H─\u001b[21;63H─\u001b[21;64H─\u001b[21;65H─\u001b["]
44
+[6.083437, "o", "21;66H─\u001b[21;67H─\u001b[21;68H─\u001b[21;69H─\u001b[21;70H─\u001b[21;71H─\u001b[21;72H─\u001b[21;73H─\u001b[21;74H─\u001b[21;75H─\u001b[21;76H─\u001b[21;77H─\u001b[21;78H 6 \u001b[22;1H          ### CLI session ─\u001b[22;28H─\u001b[22;29H─\u001b[22;30H─\u001b[22;31H─\u001b[22;32H─\u001b[22;33H─\u001b[22;34H─\u001b[22;35H─\u001b[22;36H─\u001b[22;37H─\u001b[22;38H─\u001b[22;39H─\u001b[22;40H─\u001b[22;41H─\u001b[22;42H─\u001b[22;43H─\u001b[22;44H─\u001b[22;45H─\u001b[22;46H─\u001b[22;47H─\u001b[22;48H─\u001b[22;49H─\u001b[22;50H─\u001b[22;51H─\u001b[22;52H─\u001b[22;53H─\u001b[22;54H─\u001b[22;55H─\u001b[22;56H─\u001b[22;57H─\u001b[22;58H─\u001b[22;59H─\u001b[22;60H─\u001b[22;61H─\u001b[22;62H─\u001b[22;63H─\u001b[22;64H─\u001b[22;65H─\u001b[22;66H─\u001b[22;67H─\u001b[22;68H─\u001b[22;69H─\u001b[22;70H─\u001b[22;71H─\u001b[22;72H─\u001b[22;73H─\u001b[22;74H─\u001b[22;75H─\u001b[22;76H─\u001b[22;77H─\u001b[22;78H 2 \u001b[23;1H          ### X session ─\u001b[23;26H─\u001b[23;27H─\u001b[23;28H─\u001b[23;29H─\u001b[23;30H─\u001b[23;31H─\u001b[23;32H─\u001b[23;33H─\u001b[23;34H─\u001b[23;35H─\u001b[23;36H─\u001b[23;37H─\u001b[23;38H─\u001b[23;39H─\u001b[23;40H─\u001b[23;41H"]
45
+[6.084528, "o", "─\u001b[23;42H─\u001b[23;43H─\u001b[23;44H─\u001b[23;45H─\u001b[23;46H─\u001b[23;47H─\u001b[23;48H─\u001b[23;49H─\u001b[23;50H─\u001b[23;51H─\u001b[23;52H─\u001b[23;53H─\u001b[23;54H─\u001b[23;55H─\u001b[23;56H─\u001b[23;57H─\u001b[23;58H─\u001b[23;59H─\u001b[23;60H─\u001b[23;61H─\u001b[23;62H─\u001b[23;63H─\u001b[23;64H─\u001b[23;65H─\u001b[23;66H─\u001b[23;67H─\u001b[23;68H─\u001b[23;69H─\u001b[23;70H─\u001b[23;71H─\u001b[23;72H─\u001b[23;73H─\u001b[23;74H─\u001b[23;75H─\u001b[23;76H─\u001b[23;77H 10 \u001b[24;15HCLI applications ─\u001b[24;33H─\u001b[24;34H─\u001b[24;35H─\u001b[24;77H 20\u001b[25;15HTUI applications \u001b[47C9\u001b[26;15HGUI applications \u001b[47C7\u001b[27;15HDevelopment ─\u001b[27;28H─\u001b[27;29H─\u001b[27;30H─\u001b[27;31H─\u001b[27;78H46\u001b[28;15HDevOps ─\u001b[28;23H─\u001b[28;24H─\u001b[28;25H─\u001b[28;26H─\u001b[28;27H─\u001b[28;28H─\u001b[28;29H─\u001b[28;30H─\u001b[28;31H─\u001b[28;79H7\u001b[m\u001b[29;1H\u001b[K\u001b[30;5H\u001b[38;5;248m## Hardware ─\u001b[30;18H─\u001b[30;19H─\u001b[30;20H─\u001b[30;21H─\u001b[30;22H─\u001b[30;23H─\u001b[30;24H─\u001b[30;25H─\u001b[30;26H─\u001b[30;78H10\r\n    ## Prefix ─\u001b[31;16H─\u001b[31;17H─\u001b[31;18H─\u001b[31;19H─\u001b[31;20H─\u001b[31;21H─\u001b[32;1H    ## Dotfiles ─\u001b[32;18H─\u001b[32;19H"]
46
+[6.084558, "o", "─\u001b[32;20H─\u001b[32;21H─\u001b[32;22H─\u001b[32;23H─\u001b[32;24H─\u001b[32;25H─\u001b[32;26H─\u001b[32;27H─\u001b[32;28H─\u001b[32;29H─\u001b[32;30H─\u001b[32;31H─\u001b[32;32H─\u001b[32;33H─\u001b[32;34H─\u001b[32;35H─\u001b[32;36H─\u001b[32;37H─\u001b[32;38H─\u001b[32;39H─\u001b[32;40H─\u001b[32;41H─\u001b[32;42H─\u001b[32;43H─\u001b[32;44H─\u001b[32;45H─\u001b[32;46H─\u001b[32;47H─\u001b[32;48H─\u001b[32;49H─\u001b[32;50H─\u001b[32;51H─\u001b[32;52H─\u001b[32;53H─\u001b[32;54H─\u001b[32;55H─\u001b[32;56H─\u001b[32;57H─\u001b[32;58H─\u001b[32;59H─\u001b[32;60H─\u001b[32;61H─\u001b[32;62H─\u001b[32;63H─\u001b[32;64H─\u001b[32;65H─\u001b[32;66H─\u001b[32;67H─\u001b[32;68H─\u001b[32;69H─\u001b[32;70H─\u001b[32;71H─\u001b[32;72H─\u001b[32;73H─\u001b[32;74H─\u001b[32;75H─\u001b[32;76H─\u001b[32;77H 15 \u001b[m\u001b[33;1H\u001b[K\u001b[34;1H  \u001b[1m\u001b[96mroles\u001b[m\u001b[38;5;224m:\u001b[m\u001b[34;9H\u001b[K\u001b[35;1H\u001b[K\u001b[36;1H\u001b[38;5;248m    ## Unattended ─\u001b[36;20H─\u001b[36;21H─\u001b[36;22H─\u001b[36;23H─\u001b[36;24H─\u001b[36;25H─\u001b[36;26H─\u001b[36;27H─\u001b[36;28H─\u001b[36;29H─\u001b[36;30H─\u001b[36;31H─\u001b[36;32H─\u001b[36;33H─\u001b[36;34H─\u001b[36;35H─\u001b[36;36H─\u001b[36;37H"]
47
+[6.085324, "o", "─\u001b[36;38H─\u001b[36;39H─\u001b[36;40H─\u001b[36;41H─\u001b[36;42H─\u001b[36;43H─\u001b[36;44H─\u001b[36;45H─\u001b[36;46H─\u001b[36;47H─\u001b[36;48H─\u001b[36;49H─\u001b[36;50H─\u001b[36;51H─\u001b[36;52H─\u001b[36;53H─\u001b[36;54H─\u001b[36;55H─\u001b[36;56H─\u001b[36;57H─\u001b[36;58H─\u001b[36;59H─\u001b[36;60H─\u001b[36;61H─\u001b[36;62H─\u001b[36;63H─\u001b[36;64H─\u001b[36;65H─\u001b[36;66H─\u001b[36;67H─\u001b[36;68H─\u001b[36;69H─\u001b[36;70H─\u001b[36;71H─\u001b[36;72H─\u001b[36;73H─\u001b[36;74H─\u001b[36;75H─\u001b[36;76H─\u001b[36;77H─\u001b[36;78H 3 \u001b[37;1H    ## Xsession ─\u001b[37;18H─\u001b[37;19H─\u001b[37;20H─\u001b[37;21H─\u001b[37;22H─\u001b[37;23H─\u001b[37;24H─\u001b[37;25H─\u001b[37;26H─\u001b[37;27H─\u001b[37;28H─\u001b[37;29H─\u001b[37;30H─\u001b[37;31H─\u001b[37;32H─\u001b[37;33H─\u001b[37;34H─\u001b[37;35H─\u001b[37;36H─\u001b[37;37H─\u001b[37;38H─\u001b[37;39H─\u001b[37;40H─\u001b[37;41H─\u001b[37;42H─\u001b[37;43H─\u001b[37;44H─\u001b[37;45H─\u001b[37;46H─\u001b[37;47H─\u001b[37;48H─\u001b[37;49H─\u001b[37;50H─\u001b[37;51H─\u001b[37;52H─\u001b[37;53H─\u001b[37;54H─\u001b[37;55H─\u001b[37;56H─\u001b[37;57H─\u001b[37;58H─\u001b[37;59H─\u001b[37;60H─\u001b[37;61H─\u001b[37;62H─\u001b[37;63H─\u001b[37;64H─\u001b[37;65H─\u001b[37;66H─\u001b[37;"]
48
+[6.085353, "o", "67H─\u001b[37;68H─\u001b[37;69H─\u001b[37;70H─\u001b[37;71H─\u001b[37;72H─\u001b[37;73H─\u001b[37;74H─\u001b[37;75H─\u001b[37;76H─\u001b[37;77H─\u001b[37;78H 4 \u001b[38;1H    ## xwinwrap ─\u001b[38;18H─\u001b[38;19H─\u001b[38;20H─\u001b[38;21H─\u001b[38;22H─\u001b[38;23H─\u001b[38;24H─\u001b[38;25H─\u001b[38;26H─\u001b[38;27H─\u001b[38;28H─\u001b[38;29H─\u001b[38;30H─\u001b[38;31H─\u001b[38;32H─\u001b[38;33H─\u001b[38;34H─\u001b[38;35H─\u001b[38;36H─\u001b[38;37H─\u001b[38;38H─\u001b[38;39H─\u001b[38;40H─\u001b[38;41H─\u001b[38;42H─\u001b[38;43H─\u001b[38;44H─\u001b[38;45H─\u001b[38;46H─\u001b[38;47H─\u001b[38;48H─\u001b[38;49H─\u001b[38;50H─\u001b[38;51H─\u001b[38;52H─\u001b[38;53H─\u001b[38;54H─\u001b[38;55H─\u001b[38;56H─\u001b[38;57H─\u001b[38;58H─\u001b[38;59H─\u001b[38;60H─\u001b[38;61H─\u001b[38;62H─\u001b[38;63H─\u001b[38;64H─\u001b[38;65H─\u001b[38;66H─\u001b[38;67H─\u001b[38;68H─\u001b[38;69H─\u001b[38;70H─\u001b[38;71H─\u001b[38;72H─\u001b[38;73H─\u001b[38;74H─\u001b[38;75H─\u001b[38;76H─\u001b[38;77H─\u001b[38;78H 5 \u001b[39;8HHome dotfiles \u001b[55C 58\u001b[40;8HPrefix dotfiles \u001b[55C8\u001b[41;8HFirefox extensions \u001b[50C 20\u001b[m\u001b[42;1H\u001b[K\u001b[43;1H  \u001b[1m\u001b[96mpost_tasks"]
49
+[6.085732, "o", "\u001b[m\u001b[38;5;224m:\u001b[m\u001b[43;14H\u001b[K\u001b[44;1H\u001b[K\u001b[45;1H\u001b[38;5;248m    ## pip packages ─\u001b[45;22H─\u001b[45;23H─\u001b[45;24H─\u001b[45;25H─\u001b[45;26H─\u001b[45;27H─\u001b[45;28H─\u001b[45;29H─\u001b[45;30H─\u001b[45;31H─\u001b[45;32H─\u001b[45;33H─\u001b[45;34H─\u001b[45;35H─\u001b[45;36H─\u001b[45;37H─\u001b[45;38H─\u001b[45;39H─\u001b[45;40H─\u001b[45;41H─\u001b[45;42H─\u001b[45;43H─\u001b[45;44H─\u001b[45;45H─\u001b[45;46H─\u001b[45;47H─\u001b[45;48H─\u001b[45;49H─\u001b[45;50H─\u001b[45;51H─\u001b[45;52H─\u001b[45;53H─\u001b[45;54H─\u001b[45;55H─\u001b[45;56H─\u001b[45;57H─\u001b[45;58H─\u001b[45;59H─\u001b[45;60H─\u001b[45;61H─\u001b[45;62H─\u001b[45;63H─\u001b[45;64H─\u001b[45;65H─\u001b[45;66H─\u001b[45;67H─\u001b[45;68H─\u001b[45;69H─\u001b[45;70H─\u001b[45;71H─\u001b[45;72H─\u001b[45;73H─\u001b[45;74H─\u001b[45;75H─\u001b[45;76H─\u001b[45;77H 10 \u001b[46;1H    ## pipx packages ─\u001b[46;23H─\u001b[46;24H─\u001b[46;25H─\u001b[46;26H─\u001b[46;27H─\u001b[46;28H─\u001b[46;29H─\u001b[46;30H─\u001b[46;31H─\u001b[46;32H─\u001b[46;33H─\u001b[46;34H─\u001b[46;35H─\u001b[46;36H─\u001b[46;37H─\u001b[46;38H─\u001b[46;39H─\u001b[46;40H─\u001b[46;41H─\u001b[46;42H─\u001b[46;43H─\u001b[46;44H─\u001b[46;45H─\u001b[46;46H─\u001b[46;47H─\u001b[46;48H─\u001b[46;49H"]
50
+[6.085853, "o", "─\u001b[46;50H─\u001b[46;51H─\u001b[46;52H─\u001b[46;53H─\u001b[46;54H─\u001b[46;55H─\u001b[46;56H─\u001b[46;57H─\u001b[46;58H─\u001b[46;59H─\u001b[46;60H─\u001b[46;61H─\u001b[46;62H─\u001b[46;63H─\u001b[46;64H─\u001b[46;65H─\u001b[46;66H─\u001b[46;67H─\u001b[46;68H─\u001b[46;69H─\u001b[46;70H─\u001b[46;71H─\u001b[46;72H─\u001b[46;73H─\u001b[46;74H─\u001b[46;75H─\u001b[46;76H─\u001b[46;77H 13 \u001b[47;1H    ## NPM packages ─\u001b[47;22H─\u001b[47;23H─\u001b[47;24H─\u001b[47;25H─\u001b[47;26H─\u001b[47;27H─\u001b[47;28H─\u001b[47;29H─\u001b[47;30H─\u001b[47;31H─\u001b[47;32H─\u001b[47;33H─\u001b[47;34H─\u001b[47;35H─\u001b[47;36H─\u001b[47;37H─\u001b[47;38H─\u001b[47;39H─\u001b[47;40H─\u001b[47;41H─\u001b[47;42H─\u001b[47;43H─\u001b[47;44H─\u001b[47;45H─\u001b[47;46H─\u001b[47;47H─\u001b[47;48H─\u001b[47;49H─\u001b[47;50H─\u001b[47;51H─\u001b[47;52H─\u001b[47;53H─\u001b[47;54H─\u001b[47;55H─\u001b[47;56H─\u001b[47;57H─\u001b[47;58H─\u001b[47;59H─\u001b[47;60H─\u001b[47;61H─\u001b[47;62H─\u001b[47;63H─\u001b[47;64H─\u001b[47;65H─\u001b[47;66H─\u001b[47;67H─\u001b[47;68H─\u001b[47;69H─\u001b[47;70H─\u001b[47;71H─\u001b[47;72H─\u001b[47;73H─\u001b[47;74H─\u001b[47;75H─\u001b[47;76H─\u001b[47;77H 10 \u001b[m\u001b[48;1H\u001b[94m~                                                   "]
51
+[6.085966, "o", "                            \u001b[49;1H~                                                                               \u001b[20;1H\u001b[?25h"]
52
+[7.086505, "o", "\u001b[50;1H\u001b[m                 \r"]
53
+[7.091534, "o", "\u001b[?25l\u001b[13;1H\u001b[38;5;248m   \u001b[16C ─\u001b[13;22H─\u001b[13;23H─\u001b[13;24H─\u001b[13;25H─\u001b[13;26H─\u001b[13;27H─\u001b[13;28H─\u001b[13;29H─\u001b[13;30H─\u001b[13;31H─\u001b[13;32H─\u001b[13;33H─\u001b[13;34H─\u001b[13;35H─\u001b[13;36H─\u001b[13;37H─\u001b[13;38H─\u001b[13;39H─\u001b[13;40H─\u001b[13;41H─\u001b[13;42H─\u001b[13;43H─\u001b[13;44H─\u001b[13;45H─\u001b[13;46H─\u001b[13;47H─\u001b[13;48H─\u001b[13;49H─\u001b[13;50H─\u001b[13;51H─\u001b[13;52H─\u001b[13;53H─\u001b[13;54H─\u001b[13;55H─\u001b[13;56H─\u001b[13;57H─\u001b[13;58H─\u001b[13;59H─\u001b[13;60H─\u001b[13;61H─\u001b[13;62H─\u001b[13;63H─\u001b[13;64H─\u001b[13;65H─\u001b[13;66H─\u001b[13;67H─\u001b[13;68H─\u001b[13;69H─\u001b[13;70H─\u001b[13;71H─\u001b[13;72H─\u001b[13;73H─\u001b[13;74H─\u001b[13;75H─\u001b[13;76H 151 \u001b[14;1H    ## Hardware ─\u001b[14;18H─\u001b[14;19H─\u001b[14;20H─\u001b[14;21H─\u001b[14;22H─\u001b[14;23H─\u001b[14;24H─\u001b[14;25H─\u001b[14;26H─\u001b[14;27H─\u001b[14;28H─\u001b[14;29H─\u001b[14;30H─\u001b[14;31H─\u001b[14;32H─\u001b[14;33H─\u001b[14;34H─\u001b[14;35H─\u001b[14;36H─\u001b[14;37H─\u001b[14;38H─\u001b[14;39H─\u001b[14;40H─\u001b[14;41H─\u001b[14;42H─\u001b[14;43H─\u001b[14;44H─\u001b[14;45H─\u001b[14;46H─\u001b[14;47H─\u001b[14;48H─\u001b[14;49H─\u001b[1"]
54
+[7.091573, "o", "4;50H─\u001b[14;51H─\u001b[14;52H─\u001b[14;53H─\u001b[14;54H─\u001b[14;55H─\u001b[14;56H─\u001b[14;57H─\u001b[14;58H─\u001b[14;59H─\u001b[14;60H─\u001b[14;61H─\u001b[14;62H─\u001b[14;63H─\u001b[14;64H─\u001b[14;65H─\u001b[14;66H─\u001b[14;67H─\u001b[14;68H─\u001b[14;69H─\u001b[14;70H─\u001b[14;71H─\u001b[14;72H─\u001b[14;73H─\u001b[14;74H─\u001b[14;75H─\u001b[14;76H─\u001b[14;77H 10 \u001b[15;1H    ## Prefix ─\u001b[15;16H─\u001b[15;17H─\u001b[15;18H─\u001b[15;19H─\u001b[15;20H─\u001b[15;21H─\u001b[15;22H─\u001b[15;23H─\u001b[15;24H─\u001b[15;25H─\u001b[15;26H─\u001b[15;27H─\u001b[15;28H─\u001b[15;29H─\u001b[15;30H─\u001b[15;31H─\u001b[15;32H─\u001b[15;33H─\u001b[15;34H─\u001b[15;35H─\u001b[15;36H─\u001b[15;37H─\u001b[15;38H─\u001b[15;39H─\u001b[15;40H─\u001b[15;41H─\u001b[15;42H─\u001b[15;43H─\u001b[15;44H─\u001b[15;45H─\u001b[15;46H─\u001b[15;47H─\u001b[15;48H─\u001b[15;49H─\u001b[15;50H─\u001b[15;51H─\u001b[15;52H─\u001b[15;53H─\u001b[15;54H─\u001b[15;55H─\u001b[15;56H─\u001b[15;57H─\u001b[15;58H─\u001b[15;59H─\u001b[15;60H─\u001b[15;61H─\u001b[15;62H─\u001b[15;63H─\u001b[15;64H─\u001b[15;65H─\u001b[15;66H─\u001b[15;67H─\u001b[15;68H─\u001b[15;69H─\u001b[15;70H─\u001b[15;71H─"]
55
+[7.092849, "o", "\u001b[15;72H─\u001b[15;73H─\u001b[15;74H─\u001b[15;75H─\u001b[15;76H─\u001b[15;77H─\u001b[15;78H 7 \u001b[16;1H    ## Dotfiles ─\u001b[16;18H─\u001b[16;19H─\u001b[16;20H─\u001b[16;21H─\u001b[16;22H─\u001b[16;23H─\u001b[16;24H─\u001b[16;25H─\u001b[16;26H─\u001b[16;27H─\u001b[16;28H─\u001b[16;29H─\u001b[16;30H─\u001b[16;31H─\u001b[16;32H─\u001b[16;33H─\u001b[16;34H─\u001b[16;35H─\u001b[16;36H─\u001b[16;37H─\u001b[16;38H─\u001b[16;39H─\u001b[16;40H─\u001b[16;41H─\u001b[16;42H─\u001b[16;43H─\u001b[16;44H─\u001b[16;45H─\u001b[16;46H─\u001b[16;47H─\u001b[16;48H─\u001b[16;49H─\u001b[16;50H─\u001b[16;51H─\u001b[16;52H─\u001b[16;53H─\u001b[16;54H─\u001b[16;55H─\u001b[16;56H─\u001b[16;57H─\u001b[16;58H─\u001b[16;59H─\u001b[16;60H─\u001b[16;61H─\u001b[16;62H─\u001b[16;63H─\u001b[16;64H─\u001b[16;65H─\u001b[16;66H─\u001b[16;67H─\u001b[16;68H─\u001b[16;69H─\u001b[16;70H─\u001b[16;71H─\u001b[16;72H─\u001b[16;73H─\u001b[16;74H─\u001b[16;75H─\u001b[16;76H─\u001b[16;77H 15 \u001b[m\u001b[17;9H\u001b[K\u001b[18;1H  \u001b[1m\u001b[96mroles\u001b[m\u001b[38;5;224m:\u001b[m\u001b[18;9H\u001b[K\u001b[19;1H\u001b[K\u001b[20;5H\u001b[38;5;248m## Unattended ─\u001b[20;20H─\u001b[20;21H─\u001b[20;79H3\r\n    ## Xsession ─\u001b[21;18H─\u001b[21;19H─\u001b[21;20H─\u001b[21;21H─\u001b[21;22H─\u001b[21;23H─\u001b[21;24H─\u001b[21;25H─\u001b[21;26H─"]
56
+[7.092881, "o", "\u001b[21;27H─\u001b[21;28H─\u001b[21;29H─\u001b[21;30H─\u001b[21;31H─\u001b[21;32H─\u001b[21;33H─\u001b[21;34H─\u001b[21;35H─\u001b[21;79H4\r\n    ## xwinwrap ─\u001b[22;18H─\u001b[22;19H─\u001b[22;20H─\u001b[22;21H─\u001b[22;22H─\u001b[22;23H─\u001b[22;24H─\u001b[22;25H─\u001b[22;26H─\u001b[22;79H5\r\n    ## Home dotfiles ─\u001b[23;23H─\u001b[23;24H─\u001b[23;78H58\r\n    ## Prefix dotfiles ─\u001b[24;25H─\u001b[24;26H─\u001b[24;27H─\u001b[24;28H─\u001b[24;29H─\u001b[24;30H─\u001b[24;31H─\u001b[24;77H─\u001b[24;78H 8\r\n    ## Firefox extensions ─\u001b[25;28H─\u001b[25;29H─\u001b[25;30H─\u001b[25;31H─\u001b[25;77H 20\u001b[m\u001b[26;1H\u001b[K\u001b[27;1H  \u001b[1m\u001b[96mpost_tasks\u001b[m\u001b[38;5;224m:\u001b[m\u001b[27;14H\u001b[K\u001b[28;1H\u001b[K\u001b[29;1H\u001b[38;5;248m    ## pip packages ─\u001b[29;22H─\u001b[29;23H─\u001b[29;24H─\u001b[29;25H─\u001b[29;26H─\u001b[29;27H─\u001b[29;28H─\u001b[29;29H─\u001b[29;30H─\u001b[29;31H─\u001b[29;32H─\u001b[29;33H─\u001b[29;34H─\u001b[29;35H─\u001b[29;36H─\u001b[29;37H─\u001b[29;38H─\u001b[29;39H─\u001b[29;40H─\u001b[29;41H─\u001b[29;42H─\u001b[29;43H─\u001b[29;44H─\u001b[29;45H─\u001b[29;46H─\u001b[29;47H─\u001b[29;48H─\u001b[29;49H─\u001b[29;50H"]
57
+[7.093092, "o", "─\u001b[29;51H─\u001b[29;52H─\u001b[29;53H─\u001b[29;54H─\u001b[29;55H─\u001b[29;56H─\u001b[29;57H─\u001b[29;58H─\u001b[29;59H─\u001b[29;60H─\u001b[29;61H─\u001b[29;62H─\u001b[29;63H─\u001b[29;64H─\u001b[29;65H─\u001b[29;66H─\u001b[29;67H─\u001b[29;68H─\u001b[29;69H─\u001b[29;70H─\u001b[29;71H─\u001b[29;72H─\u001b[29;73H─\u001b[29;74H─\u001b[29;75H─\u001b[29;76H─\u001b[29;77H 10 \u001b[30;8Hpipx packages \u001b[57C3\u001b[31;8HNPM packages \u001b[56C 10\u001b[m\r\n\u001b[94m~                                                                               \u001b[33;1H~                                                                               \u001b[34;1H~                                                                               \u001b[35;1H~                                                                               \u001b[36;1H~                                                                               \u001b[37;1H~                                                                               \u001b[38;1H~                                                                               \u001b[39;1H~                                                "]
58
+[7.093123, "o", "                               \u001b[40;1H~                                                                               \u001b[41;1H~                                                                               \u001b[42;1H~                                                                               \u001b[43;1H~                                                                               \u001b[44;1H~                                                                               \u001b[45;1H~                                                                               \u001b[46;1H~                                                                               \u001b[47;1H~                                                                               \u001b[13;1H\u001b[?25h"]
59
+[8.096945, "o", "\u001b[50;1H\u001b[?2004l\u001b[>4;m\u001b]2;bash:vim-unobtrusive-fold:make demo \u0007\u001b]1;bash:vim-unobtrusive-fold:make demo \u0007\u001b[23;2t\u001b[23;1t\u001b[22;2t\u001b[22;1t\u001b[23;2t\u001b[23;1t\u001b[m\u001b[?1004l\u001b[?2004l\u001b[?1l\u001b>\u001b[>4;m\u001b[?1049l\u001b[23;0;0t"]
0 60
new file mode 100644
... ...
@@ -0,0 +1 @@
1
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800" height="1085.5"><rect width="800" height="1085.5" rx="0" ry="0" class="a"/><svg height="1085.5" viewBox="0 0 80 108.55" width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>@keyframes m{0%{transform:translateX(-1120px)}12.5%{transform:translateX(-1200px)}24.9%{transform:translateX(-1280px)}25%{transform:translateX(-2160px)}37.5%{transform:translateX(-2240px)}49.9%{transform:translateX(-2320px)}50%{transform:translateX(-2880px)}62.4%{transform:translateX(-2960px)}74.9%{transform:translateX(-3040px)}75%{transform:translateX(-3760px)}87.4%{transform:translateX(-3840px)}87.5%{transform:translateX(-4320px)}to{transform:translateX(-4400px)}}.a{fill:#282d35}.d,.e{fill:#dbab79;white-space:pre}.e{fill:#66c2cd;font-weight:700}.f,.g,.h,.i{fill:#ffd7d7;white-space:pre}.g,.h,.i{fill:#d290e3}.h,.i{fill:#a8a8a8}.i{fill:#73bef3}</style><g font-family="Monaco,Consolas,Menlo,'Bitstream Vera Sans Mono','Powerline Symbols',monospace" font-size="1.67"><defs><symbol id="1"><text y="1.67" style="white-space:pre" fill="#5fd7ff">---</text></symbol><symbol id="2"><text y="1.67" class="d">-</text><text x="2.004" y="1.67" class="e">hosts</text><text x="7.014" y="1.67" class="f">:</text><text x="9.018" y="1.67" class="g">&apos;all&apos;</text></symbol><symbol id="3"><text x="2.004" y="1.67" class="e">vars</text><text x="6.012" y="1.67" class="f">:</text></symbol><symbol id="4"><text x="4.008" y="1.67" class="e">prefix</text><text x="10.02" y="1.67" class="f">:</text><text x="12.024" y="1.67" class="g">&apos;{{</text><text x="16.032" y="1.67" class="g">ansible_env.HOME</text><text x="33.066" y="1.67" class="g">}}/.local&apos;</text></symbol><symbol id="5"><text x="2.004" y="1.67" class="e">pre_tasks</text><text x="11.022" y="1.67" class="f">:</text></symbol><symbol id="6"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">APT</text><text x="11.022" y="1.67" class="h">cache</text><text x="17.034" y="1.67" class="h">update</text><text x="24.048" y="1.67" class="h">─────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">7</text></symbol><symbol id="7"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">APT</text><text x="11.022" y="1.67" class="h">repository</text><text x="22.044" y="1.67" class="h">dependencies</text><text x="35.07" y="1.67" class="h">──────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">7</text></symbol><symbol id="8"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">APT</text><text x="11.022" y="1.67" class="h">repositories</text><text x="24.048" y="1.67" class="h">────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">10</text></symbol><symbol id="9"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">APT</text><text x="11.022" y="1.67" class="h">packages</text><text x="20.04" y="1.67" class="h">───────────────────────────────────────────────────────</text><text x="76.152" y="1.67" class="h">151</text></symbol><symbol id="10"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">Hardware</text><text x="16.032" y="1.67" class="h">────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">10</text></symbol><symbol id="11"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">Prefix</text><text x="14.028" y="1.67" class="h">───────────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">7</text></symbol><symbol id="12"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">Dotfiles</text><text x="16.032" y="1.67" class="h">────────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">15</text></symbol><symbol id="13"><text x="2.004" y="1.67" class="e">roles</text><text x="7.014" y="1.67" class="f">:</text></symbol><symbol id="14"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">Unattended</text><text x="18.036" y="1.67" class="h">───────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">3</text></symbol><symbol id="15"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">Xsession</text><text x="16.032" y="1.67" class="h">─────────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">4</text></symbol><symbol id="16"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">xwinwrap</text><text x="16.032" y="1.67" class="h">─────────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">5</text></symbol><symbol id="17"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">Home</text><text x="12.024" y="1.67" class="h">dotfiles</text><text x="21.042" y="1.67" class="h">───────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">58</text></symbol><symbol id="18"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">Prefix</text><text x="14.028" y="1.67" class="h">dotfiles</text><text x="23.046" y="1.67" class="h">──────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">8</text></symbol><symbol id="19"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">Firefox</text><text x="15.03" y="1.67" class="h">extensions</text><text x="26.052" y="1.67" class="h">──────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">20</text></symbol><symbol id="20"><text x="2.004" y="1.67" class="e">post_tasks</text><text x="12.024" y="1.67" class="f">:</text></symbol><symbol id="21"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">pip</text><text x="11.022" y="1.67" class="h">packages</text><text x="20.04" y="1.67" class="h">────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">10</text></symbol><symbol id="22"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">pipx</text><text x="12.024" y="1.67" class="h">packages</text><text x="21.042" y="1.67" class="h">───────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">13</text></symbol><symbol id="23"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">NPM</text><text x="11.022" y="1.67" class="h">packages</text><text x="20.04" y="1.67" class="h">────────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">10</text></symbol><symbol id="24"><text y="1.67" class="i">~</text></symbol><symbol id="25"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">APT</text><text x="11.022" y="1.67" class="h">packages</text></symbol><symbol id="26"><text x="4.008" y="1.67" class="d">-</text><text x="6.012" y="1.67" class="e">name</text><text x="10.02" y="1.67" class="f">:</text><text x="12.024" y="1.67" class="g">&apos;Install</text><text x="21.042" y="1.67" class="g">APT</text><text x="25.05" y="1.67" class="g">packages&apos;</text></symbol><symbol id="27"><text x="6.012" y="1.67" class="e">become</text><text x="12.024" y="1.67" class="f">:</text><text x="14.028" y="1.67" style="white-space:pre" fill="#b9c0cb">yes</text></symbol><symbol id="28"><text x="6.012" y="1.67" class="e">apt</text><text x="9.018" y="1.67" class="f">:</text></symbol><symbol id="29"><text x="8.016" y="1.67" class="e">name</text><text x="12.024" y="1.67" class="f">:</text></symbol><symbol id="30"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">Support</text><text x="22.044" y="1.67" class="h">files</text><text x="28.056" y="1.67" class="h">─────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">5</text></symbol><symbol id="31"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">Hardware</text><text x="23.046" y="1.67" class="h">─────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">19</text></symbol><symbol id="32"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">Python</text><text x="21.042" y="1.67" class="h">────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">4</text></symbol><symbol id="33"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">Dotfile</text><text x="22.044" y="1.67" class="h">dependencies</text><text x="35.07" y="1.67" class="h">──────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">6</text></symbol><symbol id="34"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">CLI</text><text x="18.036" y="1.67" class="h">session</text><text x="26.052" y="1.67" class="h">───────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">2</text></symbol><symbol id="35"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">X</text><text x="16.032" y="1.67" class="h">session</text><text x="24.048" y="1.67" class="h">────────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">10</text></symbol><symbol id="36"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">CLI</text><text x="18.036" y="1.67" class="h">applications</text><text x="31.062" y="1.67" class="h">─────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">20</text></symbol><symbol id="37"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">TUI</text><text x="18.036" y="1.67" class="h">applications</text><text x="31.062" y="1.67" class="h">──────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">9</text></symbol><symbol id="38"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">GUI</text><text x="18.036" y="1.67" class="h">applications</text><text x="31.062" y="1.67" class="h">─────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">17</text></symbol><symbol id="39"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">Development</text><text x="26.052" y="1.67" class="h">──────────────────────────────────────────────────</text><text x="77.154" y="1.67" class="h">46</text></symbol><symbol id="40"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">DevOps</text><text x="21.042" y="1.67" class="h">────────────────────────────────────────────────────────</text><text x="78.156" y="1.67" class="h">7</text></symbol><symbol id="41"><text x="4.008" y="1.67" class="h">##</text><text x="7.014" y="1.67" class="h">Firefox</text><text x="15.03" y="1.67" class="h">extensions</text><text x="26.052" y="1.67" class="h">────────</text></symbol><symbol id="42"><text x="10.02" y="1.67" class="h">###</text><text x="14.028" y="1.67" class="h">Python</text></symbol><symbol id="43"><text x="10.02" y="1.67" class="d">-</text><text x="12.024" y="1.67" class="g">&apos;python3&apos;</text></symbol><symbol id="44"><text x="10.02" y="1.67" class="d">-</text><text x="12.024" y="1.67" class="g">&apos;python3-pip&apos;</text></symbol><symbol id="45"><text x="10.02" y="1.67" class="d">-</text><text x="12.024" y="1.67" class="g">&apos;python3-venv&apos;</text></symbol><symbol id="a"><path fill="transparent" d="M0 0h80v50H0z"/></symbol><symbol id="b"><path fill="#6f7683" d="M0 0h1.102v2.171H0z"/></symbol></defs><path class="a" d="M0 0h80v108.55H0z"/><g style="animation-duration:8.043371s;animation-iteration-count:infinite;animation-name:m;animation-timing-function:steps(1,end)"><svg width="4480"><svg><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/></svg><svg x="80"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><text x="4.008" y="23.38" class="h">##</text><text x="7.014" y="23.38" class="h">APT</text><text x="11.022" y="23.38" class="h">repository</text><text x="22.044" y="23.38" class="h">dependencies</text><text x="35.07" y="23.38" class="h">────────</text></svg><svg x="160"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><text x="4.008" y="25.551" class="h">##</text><text x="7.014" y="25.551" class="h">APT</text><text x="11.022" y="25.551" class="h">repositories</text><text x="24.048" y="25.551" class="h">─────────────────────────────────────────────────</text></svg><svg x="240"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><text x="4.008" y="29.893" class="h">##</text><text x="7.014" y="29.893" class="h">Hardware</text><text x="16.032" y="29.893" class="h">──────────────────────────────</text></svg><svg x="320"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><text x="4.008" y="32.064" class="h">##</text><text x="7.014" y="32.064" class="h">Prefix</text><text x="14.028" y="32.064" class="h">──────────────────────────────────────────────────────</text></svg><svg x="400"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><text x="4.008" y="42.919" class="h">##</text><text x="7.014" y="42.919" class="h">Unattended</text><text x="18.036" y="42.919" class="h">──────────────</text></svg><svg x="480"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><text x="4.008" y="45.09" class="h">##</text><text x="7.014" y="45.09" class="h">Xsession</text><text x="16.032" y="45.09" class="h">───────────────────────────────────────</text></svg><svg x="560"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><text x="4.008" y="49.432" class="h">##</text><text x="7.014" y="49.432" class="h">Home</text><text x="12.024" y="49.432" class="h">dotfiles</text><text x="21.042" y="49.432" class="h">────</text></svg><svg x="640"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><text x="4.008" y="51.603" class="h">##</text><text x="7.014" y="51.603" class="h">Prefix</text><text x="14.028" y="51.603" class="h">dotfiles</text><text x="23.046" y="51.603" class="h">────────────────────────────────</text></svg><svg x="720"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><text x="4.008" y="62.458" class="h">##</text><text x="7.014" y="62.458" class="h">pip</text><text x="11.022" y="62.458" class="h">packages</text><text x="20.04" y="62.458" class="h">──────────</text></svg><svg x="800"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><text x="4.008" y="64.629" class="h">##</text><text x="7.014" y="64.629" class="h">pipx</text><text x="12.024" y="64.629" class="h">packages</text><text x="21.042" y="64.629" class="h">─────────────────────────────────────</text></svg><svg x="880"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/></svg><svg x="960"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/></svg><svg x="1040"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1120"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1200"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="26.027"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1280"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1360"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><text x="10.02" y="40.748" class="h">###</text><text x="14.028" y="40.748" class="h">Hardware</text><text x="23.046" y="40.748" class="h">─────────────</text><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1440"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><text x="10.02" y="55.945" class="h">###</text><text x="14.028" y="55.945" class="h">GUI</text><text x="18.036" y="55.945" class="h">applications</text><text x="31.062" y="55.945" class="h">─────────────────────</text><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1520"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><text x="10.02" y="60.287" class="h">###</text><text x="14.028" y="60.287" class="h">DevOps</text><text x="21.042" y="60.287" class="h">─────────────</text><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1600"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><text x="4.008" y="68.971" class="h">##</text><text x="7.014" y="68.971" class="h">Dotfiles</text><text x="16.032" y="68.971" class="h">────────────────────────</text><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1680"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><text x="4.008" y="77.655" class="h">##</text><text x="7.014" y="77.655" class="h">Unattended</text><text x="18.036" y="77.655" class="h">───────────────────────────────────────────────</text><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1760"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><text x="4.008" y="81.997" class="h">##</text><text x="7.014" y="81.997" class="h">xwinwrap</text><text x="16.032" y="81.997" class="h">────────</text><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1840"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><text x="4.008" y="84.168" class="h">##</text><text x="7.014" y="84.168" class="h">Home</text><text x="12.024" y="84.168" class="h">dotfiles</text><text x="21.042" y="84.168" class="h">──────────────────────────────────────</text><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="1920"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#41" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2000"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><text x="4.008" y="97.194" class="h">##</text><text x="7.014" y="97.194" class="h">pip</text><text x="11.022" y="97.194" class="h">packages</text><text x="20.04" y="97.194" class="h">────────────────────────────────────────</text><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2080"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><text x="4.008" y="101.536" class="h">##</text><text x="7.014" y="101.536" class="h">NPM</text><text x="11.022" y="101.536" class="h">packages</text><text x="20.04" y="101.536" class="h">─────────────────</text><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2160"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="26.027"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2240"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="41.224"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2320"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2400"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><text x="10.02" y="62.458" class="h">###</text><text x="14.028" y="62.458" class="h">GUI</text><text x="18.036" y="62.458" class="h">applications</text><text x="31.062" y="62.458" class="h">─────────────────────────────────────────────</text><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2480"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><text x="4.008" y="73.313" class="h">##</text><text x="7.014" y="73.313" class="h">Prefix</text><text x="14.028" y="73.313" class="h">──────────────</text><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2560"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><text x="4.008" y="75.484" class="h">##</text><text x="7.014" y="75.484" class="h">Dotfiles</text><text x="16.032" y="75.484" class="h">─────────────────────────────────────────</text><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2640"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><use xlink:href="#12" y="73.814"/><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><text x="4.008" y="90.681" class="h">##</text><text x="7.014" y="90.681" class="h">Home</text><text x="12.024" y="90.681" class="h">dotfiles</text><text x="21.042" y="90.681" class="h">──────────────────────────────</text><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2720"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><use xlink:href="#12" y="73.814"/><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#41" y="93.353"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="2800"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><use xlink:href="#12" y="73.814"/><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><text x="4.008" y="103.707" class="h">##</text><text x="7.014" y="103.707" class="h">pip</text><text x="11.022" y="103.707" class="h">packages</text><text x="20.04" y="103.707" class="h">─────────────────────────────────</text><use xlink:href="#24" y="104.208"/></svg><svg x="2880"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="41.224"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><use xlink:href="#12" y="73.814"/><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="2960"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="41.224"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><use xlink:href="#12" y="73.814"/><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="3040"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#42" y="41.249"/><use xlink:href="#43" y="43.42"/><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><use xlink:href="#12" y="73.814"/><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="3120"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><text x="10.02" y="45.09" class="h">###</text><text x="14.028" y="45.09" class="h">Dotfile</text><text x="22.044" y="45.09" class="h">dependencies</text><text x="35.07" y="45.09" class="h">──────────────────────────────</text><use xlink:href="#44" y="45.591"/><use xlink:href="#45" y="47.762"/><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><use xlink:href="#12" y="73.814"/><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="3200"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><text x="10.02" y="49.432" class="h">###</text><text x="14.028" y="49.432" class="h">X</text><text x="16.032" y="49.432" class="h">session</text><text x="24.048" y="49.432" class="h">────────────────</text><use xlink:href="#33" y="49.933"/><use xlink:href="#34" y="52.104"/><use xlink:href="#35" y="54.275"/><use xlink:href="#36" y="56.446"/><use xlink:href="#37" y="58.617"/><use xlink:href="#38" y="60.788"/><use xlink:href="#39" y="62.959"/><use xlink:href="#40" y="65.13"/><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><use xlink:href="#12" y="73.814"/><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="3280"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><text x="4.008" y="68.971" class="h">##</text><text x="7.014" y="68.971" class="h">Dotfiles</text><text x="16.032" y="68.971" class="h">──</text><use xlink:href="#10" y="69.472"/><use xlink:href="#11" y="71.643"/><use xlink:href="#12" y="73.814"/><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="3360"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><text x="4.008" y="77.655" class="h">##</text><text x="7.014" y="77.655" class="h">Unattended</text><text x="18.036" y="77.655" class="h">──────────────────</text><use xlink:href="#13" y="78.156"/><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="3440"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><text x="4.008" y="79.826" class="h">##</text><text x="7.014" y="79.826" class="h">Xsession</text><text x="16.032" y="79.826" class="h">──────────────────────────────────────────────────</text><use xlink:href="#14" y="82.498"/><use xlink:href="#15" y="84.669"/><use xlink:href="#16" y="86.84"/><use xlink:href="#17" y="89.011"/><use xlink:href="#18" y="91.182"/><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="3520"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><text x="2.004" y="92.852" class="e">post_tasks</text><text x="12.024" y="92.852" class="h">x</text><text x="14.028" y="92.852" class="h">dotfiles</text><text x="23.046" y="92.852" class="h">──────────────────────────────────────────────────────</text><text x="78.156" y="92.852" class="h">8</text><use xlink:href="#19" y="93.353"/><use xlink:href="#20" y="97.695"/><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="3600"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><text x="4.008" y="99.365" class="h">##</text><text x="7.014" y="99.365" class="h">pipx</text><text x="12.024" y="99.365" class="h">packages</text><text x="21.042" y="99.365" class="h">───────────────────────────</text><use xlink:href="#21" y="102.037"/><use xlink:href="#22" y="104.208"/></svg><svg x="3680"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><text y="103.707" class="i">~</text><text x="52.104" y="103.707" class="h">────────────────────────</text><text x="77.154" y="103.707" class="h">10</text><use xlink:href="#22" y="104.208"/></svg><svg x="3760"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="41.224"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="3840"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="106.354"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#25" y="26.052"/><use xlink:href="#26" y="28.223"/><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="3920"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><text x="4.008" y="29.893" class="h">##</text><text x="7.014" y="29.893" class="h">Hardware</text><text x="16.032" y="29.893" class="h">─────────────────────────────────</text><use xlink:href="#27" y="30.394"/><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="4000"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><text x="4.008" y="32.064" class="h">##</text><text x="7.014" y="32.064" class="h">Prefix</text><text x="14.028" y="32.064" class="h">─────────────────────────────────────────────────────────</text><use xlink:href="#28" y="32.565"/><use xlink:href="#29" y="34.736"/><use xlink:href="#30" y="36.907"/><use xlink:href="#31" y="39.078"/><use xlink:href="#32" y="41.249"/><use xlink:href="#33" y="43.42"/><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="4080"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><text x="4.008" y="45.09" class="h">##</text><text x="7.014" y="45.09" class="h">Xsession</text><text x="16.032" y="45.09" class="h">──────────ndencies</text><text x="35.07" y="45.09" class="h">──────────────────────────────────────────</text><text x="78.156" y="45.09" class="h">6</text><use xlink:href="#34" y="45.591"/><use xlink:href="#35" y="47.762"/><use xlink:href="#36" y="49.933"/><use xlink:href="#37" y="52.104"/><use xlink:href="#38" y="54.275"/><use xlink:href="#39" y="56.446"/><use xlink:href="#40" y="58.617"/><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="4160"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><text x="4.008" y="62.458" class="h">##</text><text x="7.014" y="62.458" class="h">pip</text><text x="11.022" y="62.458" class="h">packages</text><text x="20.04" y="62.458" class="h">─────────────────────────────</text><use xlink:href="#10" y="62.959"/><use xlink:href="#11" y="65.13"/><use xlink:href="#12" y="67.301"/><use xlink:href="#13" y="71.643"/><use xlink:href="#14" y="75.985"/><use xlink:href="#15" y="78.156"/><use xlink:href="#16" y="80.327"/><use xlink:href="#17" y="82.498"/><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="4240"><use xlink:href="#a"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><text y="84.168" class="i">~</text><text x="49.098" y="84.168" class="h">───────────────────────────</text><text x="77.154" y="84.168" class="h">58</text><use xlink:href="#18" y="84.669"/><use xlink:href="#19" y="86.84"/><use xlink:href="#20" y="91.182"/><use xlink:href="#21" y="95.524"/><use xlink:href="#22" y="97.695"/><use xlink:href="#23" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="4320"><use xlink:href="#a"/><use xlink:href="#b" x="-.004" y="26.027"/><use xlink:href="#1"/><use xlink:href="#2" y="4.342"/><use xlink:href="#3" y="8.684"/><use xlink:href="#4" y="10.855"/><use xlink:href="#5" y="15.197"/><use xlink:href="#6" y="19.539"/><use xlink:href="#7" y="21.71"/><use xlink:href="#8" y="23.881"/><use xlink:href="#9" y="26.052"/><use xlink:href="#10" y="28.223"/><use xlink:href="#11" y="30.394"/><use xlink:href="#12" y="32.565"/><use xlink:href="#13" y="36.907"/><use xlink:href="#14" y="41.249"/><use xlink:href="#15" y="43.42"/><use xlink:href="#16" y="45.591"/><use xlink:href="#17" y="47.762"/><use xlink:href="#18" y="49.933"/><use xlink:href="#19" y="52.104"/><use xlink:href="#20" y="56.446"/><use xlink:href="#21" y="60.788"/><use xlink:href="#22" y="62.959"/><use xlink:href="#23" y="65.13"/><use xlink:href="#24" y="67.301"/><use xlink:href="#24" y="69.472"/><use xlink:href="#24" y="71.643"/><use xlink:href="#24" y="73.814"/><use xlink:href="#24" y="75.985"/><use xlink:href="#24" y="78.156"/><use xlink:href="#24" y="80.327"/><use xlink:href="#24" y="82.498"/><use xlink:href="#24" y="84.669"/><use xlink:href="#24" y="86.84"/><use xlink:href="#24" y="89.011"/><use xlink:href="#24" y="91.182"/><use xlink:href="#24" y="93.353"/><use xlink:href="#24" y="95.524"/><use xlink:href="#24" y="97.695"/><use xlink:href="#24" y="99.866"/><use xlink:href="#24" y="102.037"/><use xlink:href="#24" y="104.208"/></svg><svg x="4400"><use xlink:href="#a"/><use xlink:href="#b" x="-.004"/></svg></svg></g></g></svg></svg>
0 2
\ No newline at end of file
1 3
new file mode 100644
... ...
@@ -0,0 +1,107 @@
1
+*unobtrusive-fold.txt*	A Vim plugin for unobtrusive folds
2
+Robert Cranston                                             *unobtrusive-fold*
3
+
4
+==============================================================================
5
+CONTENTS                                           *unobtrusive-fold-contents*
6
+  1. Introduction.....................................|unobtrusive-fold-intro|
7
+  2. Configuration...................................|unobtrusive-fold-config|
8
+  3. Commands......................................|unobtrusive-fold-commands|
9
+  4. Functions....................................|unobtrusive-fold-functions|
10
+  5. Example........................................|unobtrusive-fold-example|
11
+  6. About............................................|unobtrusive-fold-about|
12
+
13
+==============================================================================
14
+INTRODUCTION                                          *unobtrusive-fold-intro*
15
+
16
+unobtrusive-fold provides commands that define folds from text that blends in
17
+with the rest of the content, such as comments or markup headings. Optionally,
18
+this can be combined with folds for indented paragraphs. Folds are
19
+automatically ended when the indentation drops below that of the line where
20
+the fold was introduced. It also provides 'foldtext' function and a command
21
+for debugging 'foldexpr's.
22
+
23
+==============================================================================
24
+CONFIGURATION                                        *unobtrusive-fold-config*
25
+
26
+Since this method of folding is more involved than the built-in ones it can be
27
+slow for very big files. Options are provided to mitigate this.
28
+
29
+                                                *g:unobtrusive_fold_max_lines*
30
+Set to non-zero value to make the commands below do nothing if the number of
31
+lines in the current buffer is higher than the given value. Defaults to 0.
32
+
33
+                                            *g:unobtrusive_fold_max_prevlines*
34
+Set to non-zero value to look at at most this many previous lines when
35
+calculating folds. Defaults to 0.
36
+
37
+==============================================================================
38
+COMMANDS                                           *unobtrusive-fold-commands*
39
+
40
+:UnobtrusiveFoldComment[!]                           *:UnobtrusiveFoldComment*
41
+  Sets the current window's 'foldmethod', 'foldexpr', and plugin-internal
42
+  variables based on the current buffer's 'commentstring'. Does nothing when
43
+  it is empty. Give ! to enable indented paragraph folding.
44
+
45
+  Defines folds with a fold level equal to the number of times the last
46
+  character (ignoring whitespace) of the first part of 'commentstring' is
47
+  repeated (not including the first occurrence) at the start of line. For
48
+  example, if 'commentstring' is `/* %s */`, `/**` starts a level 1 fold,
49
+  `/***` starts a level 2 fold, etc.
50
+
51
+:UnobtrusiveFoldChar[!] {char}                          *:UnobtrusiveFoldChar*
52
+  Sets the current window's 'foldmethod', 'foldexpr' and plugin-internal
53
+  variables based on {char}. Lines in syntax groups whose names contain
54
+  "Comment", "Code", or "Snippet" are ignored. Give ! to enable indented
55
+  paragraph folding.
56
+
57
+  Defines folds with a fold level equal to the number of times {char} is
58
+  repeated at the start of line (including the first occurrence) at the start
59
+  of line. For example, if {char} is `#`, `#` starts a level 1 fold, `##`
60
+  starts a level 2 fold, etc.
61
+
62
+:UnobtrusiveFoldDebug                                  *:UnobtrusiveFoldDebug*
63
+  Inserts the return value of 'foldexpr' and the effective |foldlevel()| into
64
+  the leftmost columns of the current buffer.
65
+
66
+==============================================================================
67
+FUNCTIONS                                         *unobtrusive-fold-functions*
68
+
69
+unobtrusive_fold#text()                              *unobtrusive_fold#text()*
70
+  Set 'foldtext' to this function to get an improved version of
71
+  `getline(v:foldstart)`. Leading tabs are expanded to 'tabstop' spaces. If
72
+  'fillchars' `fold:` is not space, the number of lines included in the fold
73
+  is printed, padded with `fold:` so that it lines up with one column short of
74
+  the right edge of the window, or 'textwidth' (if not 0), whichever is
75
+  smaller. The empty column at the far right is nice for people who set
76
+  'colorcolumn' to `+1`. The rest of the line is cleared (i.e. not filled
77
+  automatically by Vim with 'fillchars' `fold:`). A good value for `fold:`
78
+  might be the box drawing character `─`.
79
+
80
+==============================================================================
81
+EXAMPLE                                             *unobtrusive-fold-example*
82
+
83
+Example |vimrc|:
84
+>
85
+  set commentstring=
86
+  set shiftwidth=2
87
+  set textwidth=79
88
+  set fillchars+=fold:─
89
+  set foldtext=unobtrusive_fold#text()
90
+
91
+  syntax enable
92
+  filetype plugin indent on
93
+
94
+  autocmd FileType *        UnobtrusiveFoldComment
95
+  autocmd FileType markdown UnobtrusiveFoldChar #
96
+<
97
+
98
+==============================================================================
99
+ABOUT                                                 *unobtrusive-fold-about*
100
+
101
+Version: 1.0.0
102
+Author:  Robert Cranston
103
+License: ISC
104
+URL:     https://git.rcrnstn.net/rcrnstn/vim-unobtrusive-fold
105
+
106
+
107
+vim:tw=78:ts=8:ft=help:norl:
0 108
new file mode 100644
... ...
@@ -0,0 +1,78 @@
1
+""
2
+" @section About
3
+" - Version: 1.0.0
4
+" - Author:  Robert Cranston
5
+" - License: ISC
6
+" - URL:     https://git.rcrnstn.net/rcrnstn/vim-unobtrusive-fold
7
+" @order intro config commands functions example about
8
+
9
+""
10
+" @section Introduction, intro
11
+" unobtrusive-fold provides commands that define folds from text that blends in
12
+" with the rest of the content, such as comments or markup headings.
13
+" Optionally, this can be combined with folds for indented paragraphs. Folds
14
+" are automatically ended when the indentation drops below that of the line
15
+" where the fold was introduced. It also provides 'foldtext' function and a
16
+" command for debugging 'foldexpr's.
17
+
18
+""
19
+" @section Example
20
+" Example |vimrc|:
21
+" >
22
+"   set commentstring=
23
+"   set shiftwidth=2
24
+"   set textwidth=79
25
+"   set fillchars+=fold:─
26
+"   set foldtext=unobtrusive_fold#text()
27
+"
28
+"   syntax enable
29
+"   filetype plugin indent on
30
+"
31
+"   autocmd FileType *        UnobtrusiveFoldComment
32
+"   autocmd FileType markdown UnobtrusiveFoldChar #
33
+
34
+"" Guard
35
+if exists('g:loaded_unobtrusive_fold') || &compatible
36
+  finish
37
+endif
38
+let g:loaded_unobtrusive_fold = 1
39
+
40
+"" Commands
41
+
42
+"" :UnobtrusiveFoldComment
43
+
44
+""
45
+" Sets the current window's 'foldmethod', 'foldexpr', and plugin-internal
46
+" variables based on the current buffer's 'commentstring'. Does nothing when it
47
+" is empty. Give ! to enable indented paragraph folding.
48
+"
49
+" Defines folds with a fold level equal to the number of times the last
50
+" character (ignoring whitespace) of the first part of 'commentstring' is
51
+" repeated (not including the first occurrence) at the start of line. For
52
+" example, if 'commentstring' is `/* %s */`, `/**` starts a level 1 fold,
53
+" `/***` starts a level 2 fold, etc.
54
+command -bar -bang -nargs=0 UnobtrusiveFoldComment
55
+\ call unobtrusive_fold#comment(<q-bang>)
56
+
57
+"" :UnobtrusiveFoldChar
58
+
59
+""
60
+" Sets the current window's 'foldmethod', 'foldexpr' and plugin-internal
61
+" variables based on {char}. Lines in syntax groups whose names contain
62
+" "Comment", "Code", or "Snippet" are ignored. Give ! to enable indented
63
+" paragraph folding.
64
+"
65
+" Defines folds with a fold level equal to the number of times {char} is
66
+" repeated at the start of line (including the first occurrence) at the start
67
+" of line. For example, if {char} is `#`, `#` starts a level 1 fold, `##`
68
+" starts a level 2 fold, etc.
69
+command -bar -bang -nargs=1 UnobtrusiveFoldChar
70
+\ call unobtrusive_fold#char(<q-bang>, <f-args>)
71
+
72
+"" :UnobtrusiveFoldDebug
73
+
74
+""
75
+" Inserts the return value of 'foldexpr' and the effective |foldlevel()| into
76
+" the leftmost columns of the current buffer.
77
+command -bar -nargs=0 UnobtrusiveFoldDebug
78
+\ call unobtrusive_fold#debug()
0 79
new file mode 100644
... ...
@@ -0,0 +1,36 @@
1
+
2
+Paragraphs (even at indentation 0) outside markers
3
+also create folds.
4
+
5
+Paragraphs on the same level
6
+do not swallow empty lines.
7
+
8
+## Marker 1
9
+Single line paragraphs do not create folds, neither right after markers...
10
+
11
+...nor on their own.
12
+
13
+But lines below with more indentation are counted as part of the same fold...
14
+
15
+  ...while still being able to create
16
+    folds
17
+  of their own.
18
+
19
+### Marker 2
20
+Wider markers create higher fold levels.
21
+
22
+  #### Marker 3
23
+  Indentation does not affect marker fold levels.
24
+
25
+  Marker folds of the same level swallow empty lines...
26
+
27
+  #### Marker 3
28
+
29
+  ##### Marker 4
30
+  ...but ones on different levels do not.
31
+
32
+  #### Marker 3
33
+  Higher level folds are ended when the indentation drops.
34
+
35
+Leading and trailing empty lines are not part of folds.
36
+
0 37
new file mode 100644
... ...
@@ -0,0 +1,36 @@
1
+[= |0]
2
+[>1|1]Paragraphs (even at indentation 0) outside markers
3
+[<1|1]also create folds.
4
+[= |0]
5
+[>1|1]Paragraphs on the same level
6
+[<1|1]do not swallow empty lines.
7
+[= |0]
8
+[>1|1]## Marker 1
9
+[= |1]Single line paragraphs do not create folds, neither right after markers...
10
+[= |1]
11
+[= |1]...nor on their own.
12
+[= |1]
13
+[>2|2]But lines below with more indentation are counted as part of the same fold...
14
+[= |2]
15
+[>3|3]  ...while still being able to create
16
+[<4|3]    folds
17
+[<2|3]  of their own.
18
+[= |1]
19
+[>2|2]### Marker 2
20
+[<3|2]Wider markers create higher fold levels.
21
+[= |2]
22
+[>3|3]  #### Marker 3
23
+[= |3]  Indentation does not affect marker fold levels.
24
+[= |3]
25
+[<4|3]  Marker folds of the same level swallow empty lines...
26
+[= |3]
27
+[>3|3]  #### Marker 3
28
+[= |3]
29
+[>4|4]  ##### Marker 4
30
+[<4|4]  ...but ones on different levels do not.
31
+[= |3]
32
+[>3|3]  #### Marker 3
33
+[<3|3]  Higher level folds are ended when the indentation drops.
34
+[= |2]
35
+[<1|2]Leading and trailing empty lines are not part of folds.
36
+[= |0]
... ...
@@ -1,2 +1,43 @@
1 1
 set nocompatible
2 2
 set rtp+=.
3
+
4
+set commentstring=
5
+set shiftwidth=2
6
+set textwidth=79
7
+set fillchars+=fold:─
8
+set foldtext=unobtrusive_fold#text()
9
+
10
+syntax enable
11
+filetype plugin indent on
12
+
13
+autocmd FileType *        UnobtrusiveFoldComment
14
+autocmd FileType markdown UnobtrusiveFoldChar #
15
+
16
+function! Demo(file) abort
17
+  set background=dark
18
+  highlight! Comment term=NONE cterm=NONE gui=NONE ctermbg=NONE guibg=NONE ctermfg=Grey guifg=Grey
19
+  highlight! link Folded Comment
20
+
21
+  execute 'args' a:file
22
+  nnoremap gz :redraw \| sleep 1<CR>
23
+  normal ggzMgz
24
+  if a:file ==# '~/.vim/vimrc'
25
+    normal 5jgz
26
+    normal zagz
27
+    normal 10jgz
28
+    normal zagz
29
+    normal gz
30
+    normal zcgz
31
+    normal zcgz
32
+  endif
33
+  if a:file ==# '~/projects/ansible/playbook/desktop/desktop.yml'
34
+    normal 12jgz
35
+    normal zagz
36
+    normal 7jgz
37
+    normal zagz
38
+    normal gz
39
+    normal zcgz
40
+    normal zcgz
41
+  endif
42
+  qall!
43
+endfunction