forked from rkitover/vimpager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimcat
executable file
·405 lines (344 loc) · 10 KB
/
vimcat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#!/bin/sh
version_tag=2.06
# FIND REAL PARENT DIRECTORY
link=$0
while [ -h "$link" ]; do
ls0=`ls -l "$link"`
new_link=`expr "$ls0" : '.* -> \(.*\)$'`
if expr "$new_link" : '/.*' > /dev/null; then
link=$new_link
else
link=`dirname "$link"`/$new_link
fi
done
project_dir=`dirname "$link"`
# END OF FIND REAL PARENT DIRECTORY
. "$project_dir/inc/prologue.sh"
[ -n "$ZSH_VERSION" ] && emulate -R sh 2>/dev/null # force zsh into full POSIX
version="$(cd "$project_dir" && git describe 2>/dev/null) (git)" || version="$version_tag (checkout)"
runtime=$project_dir
if [ -n "$VIMPAGER_VIM" ]; then
vim=$VIMPAGER_VIM
elif command -v vim.basic >/dev/null; then
vim=vim.basic
elif command -v vim >/dev/null; then
vim=vim
elif command -v nvim >/dev/null; then
vim=nvim
else
echo "$0: neither vim nor nvim found, vim or nvim is required for vimcat" >&2
exit 1
fi
tab_stop=8
# Do not interact with X server in any way (fixes bug #255 with clobbering
# selection buffer and clipboard.)
unset DISPLAY
quit() {
(
kill "$vim_pid" >/dev/null 2>&1
do_sleep 100
kill -9 "$vim_pid" >/dev/null 2>&1
kill "$pipeline_pid" >/dev/null 2>&1
do_sleep 100
kill -9 "$pipeline_pid" >/dev/null 2>&1
kill "$tail_pid" >/dev/null 2>&1
do_sleep 100
if [ -f "${tmp_dir}/cat_pid" ]; then
cat_pid=$(cat "${tmp_dir}/cat_pid")
kill "$cat_pid" >/dev/null 2>&1
do_sleep 100
kill -9 "$cat_pid" >/dev/null 2>&1
fi
kill -9 "$tail_pid" >/dev/null 2>&1
cd "${tmp_dir%/*}" 2>/dev/null # some systems cannot remove CWD
rm -rf "$tmp_dir" 2>/dev/null # rm -rf "" shows error on OpenBSD
) &
# Terminal settings may get screwed up.
if [ -n "$OLDSTTY" ]; then
stty "$OLDSTTY" 2>/dev/null >/dev/tty
fi
[ $tab_stop -ne 8 ] && tabs -8 2>/dev/null >/dev/tty
exit "$@"
}
do_sleep() {
_ms=${1:-100}
"$vim" -NEnR -i NONE -u NONE +"sleep $_ms m" +q >/dev/null 2>&1
}
usage() {
cat <<'EOF'
Usage: [32mvimcat [1;34m[[1;35mOPTION[1;34m][0m... [1;34m[[1;35mFILE [1m| [1;35m-[1;34m][0m...
Display [1;35mFILE[0m(s) in the terminal with (n)vim syntax highlighting using ANSI escape codes.
With no [1;35mFILE[0m, or when [1;35mFILE[0m is [1;35m-[0m, read standard input.
[1m-h, --help, --usage[0m This help screen.
[1m-v, --version[0m Show version information and exit.
[1m-n[0m Print with line numbers.
[1m-s[0m Squeeze multiple blank lines into one.
[1m-o [1;35mFILE[0m | [1;35m-[0m Output ANSI highlighted text to [1;35mFILE[0m or standard output.
[1m-t [1;35mseconds[0m Scroll time in seconds (e.g: 1, 5, 0.4)
[1m--cmd [1;35mCOMMAND[0m Run (n)vim [1;35mCOMMAND[0m before initialization.
[1m-c [1;35mCOMMAND[0m Run (n)vim [1;35mCOMMAND[0m after initialization.
[1m-u [1;35mFILE[0m Use [1;35mFILE[0m as the vimrc.
[1m-x [0m Give debugging output on stderr.
Examples:
[32mvimcat [1;35mprogram.py[0m # output [1;35mprogram.py[0m with highlighting to terminal
Project homepage: <[1;34mhttp://github.com/rkitover/vimpager[0m>
and documentation: <[1;34mhttps://github.com/rkitover/vimpager/blob/master/markdown/vimcat.md[0m>
or available locally via: [32mman [1;35mvimcat[0m
EOF
}
write_chunks() {
cd "$chunks_dir"
rm -f -- *
split -b 4096 -
touch PIPELINE_DONE
}
start_pipeline() {
if [ -n "$pipeline" ]; then
pipeline="$pipeline | write_chunks"
else
pipeline=write_chunks
fi
cat -- "$pipeline_start" | (eval "$pipeline" <&3 & echo $! > "$tmp_dir/pipeline_pid") 3<&0
pipeline_pid=$(cat "$tmp_dir/pipeline_pid")
}
start_highlight_job() {
# INSERT VIMCAT_DEBUG PREPARATION HERE
set -- -NEn -i NONE \
--cmd "set runtimepath^=$runtime" \
--cmd "call vimcat#Init({ 'rc': '$vimcatrc' })" \
--cmd visual \
${extra_cmd:+--cmd "$extra_cmd"} \
${extra_c:+-c "$extra_c"} \
-c "call vimcat#Run(\"$dest_file\", ${line_numbers:-0}, \"$chunks_dir\", \"$pipeline_start\")"
[ -n "$vimcatrc" ] && set -- "$@" -u "$vimcatrc"
if [ "${VIMCAT_DEBUG:-0}" -eq 0 ]; then
("$vim" "$@" </dev/tty >/dev/null 2>&1; touch "$tmp_dir/vim_done") &
vim_pid=$!
else
"$vim" "$@" </dev/tty
touch "$tmp_dir/vim_done"
fi
}
squeeze_blank_lines() {
sed '/^[ ]*$/{
N
/^[ ]*\n[ ]*$/D
}'
}
read_vim_settings() {
i=1
OLDIFS=$IFS
IFS='
'
for var in $(IFS=$OLDIFS; "$vim" -NEnR ${vimcatrc:+-u "$vimcatrc"} ${extra_cmd:+--cmd "$extra_cmd"} ${extra_c:+-c "$extra_c"} -i NONE +'
let g:tab_stop = 8
if ! &et
let g:tab_stop = &ts
endif
call writefile([""] + map([g:tab_stop], "\"VAL:\".v:val"), "/dev/stderr")
quit
' </dev/tty 2>&1 >/dev/null); do
case "$var" in
VAL:*)
case $i in
1)
tab_stop=${var#VAL:}
break
;;
esac
i=$((i + 1))
;;
esac
done
IFS=$OLDIFS
}
# if no args and stdin is on a terminal, pretend we're cat and wait on stdin.
if [ $# -eq 0 -a -t 0 ]; then
exec cat
fi
# check for -h before main option parsing, this is much faster
for arg in "$@"; do
case "$arg" in
"-h"|"--help"|"-help"|"--usage"|"-usage")
usage
quit 0
;;
"-v"|"--version"|"-version")
echo "vimcat $version"
quit 0
;;
"-x")
set -x
;;
esac
done
tmp_dir=${TMPDIR:-/tmp}
mkdir_options="-m 700"
case "$(uname -s)" in
MINGW*|MSYS*)
if [ -n "$temp" ]; then
# MSYS2 is a little tricky, we're gonna stick to the user's private temp
# the -m mode switch to mkdir doesn't work
tmp_dir=$(cygpath --unix "$temp")
mkdir_options=
fi
;;
esac
tmp_dir=$tmp_dir/vimcat_$$
if ! mkdir $mkdir_options "$tmp_dir"; then
echo "Could not create temporary directory $tmp_dir" >&2
exit 1
fi
trap 'quit 1' PIPE HUP INT QUIT ILL TRAP KILL BUS TERM
tmp_file_in=$tmp_dir/vimcat_in.txt
out_fifo=$tmp_dir/vimcat_out.fifo
mkfifo "$out_fifo"
# check for arguments
while [ $# -gt 0 ] ; do
case "$1" in
"-c")
shift
if [ -z "$extra_c" ]; then
extra_c=$1
else
extra_c="$extra_c | $1"
fi
shift
;;
"--cmd")
shift
if [ -z "$extra_cmd" ]; then
extra_cmd=$1
else
extra_cmd="$extra_cmd | $1"
fi
shift
;;
"-u")
shift
vimcatrc=$1
shift
;;
"-o")
shift
output_file=$1
shift
;;
"-t")
shift
scroll_time=$1
shift
;;
"-s")
shift
squeeze_blank_lines=1
;;
"-n")
shift
line_numbers=1
;;
"-x")
# xtrace should already be set by the first option parsing
shift
;;
"--")
shift
break
;;
-)
break
;;
-*)
echo "$0: bad option '$1', see --help for usage." >&2
quit 1
;;
*)
break
;;
esac
done
# Check for directories in args.
for arg; do
[ -d "$arg" ] && echo "$0: '$arg' is a directory" && quit 1
done
# Just pass through if not on a tty, unless -o was given
if [ -z "$output_file" ]; then
if [ ! -t 1 ]; then
exec cat "$@"
fi
fi
if [ -z "$vimcatrc" ]; then
if [ -f ~/.vimcatrc ]; then
vimcatrc=~/.vimcatrc
else
vimcatrc=
fi
fi
if [ $# -eq 0 ]; then
set -- -
fi
if [ -n "$output_file" -a $# -gt 1 ]; then
echo "$0: -o can only be used with one input file or stdin." >&2
quit 1
fi
# Save terminal settings to restore on quit.
OLDSTTY=$(stty -g 2>/dev/null </dev/tty)
read_vim_settings
chunks_dir=$tmp_dir/chunks
mkdir "$chunks_dir"
i=1
for file in "$@"
do
if [ $# -ge 2 ]; then
if [ $i -gt 1 ]; then
printf '\n'
fi
printf "==> %s <==\n\n" "$file"
fi
pipeline=
pipeline_start=$file
if [ "${squeeze_blank_lines:-0}" -eq 1 ]; then
pipeline=squeeze_blank_lines
fi
exit_code=0
# Check that the file is readable
if [ "$file" != - ]; then
if [ ! -r "$file" ]; then
echo "$0: Cannot read file: $file" >&2
exit_code=1
fi
[ ! -s "$file" ] && continue
fi
if [ -z "$output_file" -o "$output_file" = "-" ]; then
dest_file=$out_fifo
(
if [ $tab_stop -ne 8 ]; then
stty tab0 2>/dev/null >/dev/tty
tabs -${tab_stop} 2>/dev/null >/dev/tty
fi
while :; do
[ ! -z "$scroll_time" ] && sleep ${scroll_time}
cat "$out_fifo" & cat_pid=$!
echo ${cat_pid} > "${tmp_dir}/cat_pid"
wait ${cat_pid}
done
) &
tail_pid=$!
else
dest_file=$output_file
printf '' > "$dest_file"
fi
start_highlight_job
start_pipeline
while [ ! -f "$tmp_dir/vim_done" ]; do
do_sleep 50
done
if [ -n "$tail_pid" ]; then
# if it's not a fifo where this doesn't work, tail needs some time to catch up
[ ! -p "$out_fifo" ] && do_sleep 1100
kill $tail_pid >/dev/null 2>&1
fi
i=$((i + 1))
done
quit $exit_code
# vim: sw=4 et ft=sh