mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
13 lines
462 B
Bash
Executable File
13 lines
462 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Seriously, why do people fuck around with other editor-specific ways
|
|
# of commenting things. You don't need no fucking "visual" mode. Vi
|
|
# already *is* visual mode (of ex). So tired of people extending Vim to
|
|
# improve it without even knowing how to use Vi in the first place. If
|
|
# you don't know how to integrate the shell, you don't know Vi. Learn it
|
|
# *before* you "extend" it.
|
|
|
|
while IFS= read -r line; do
|
|
echo "${1:-#} $line"
|
|
done
|