dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | README | LICENSE

commit b4cfd2f1a880e6721e8f2affe6766a8614182478 (patch)
parent c42fadd3d445734ffe09ffd790d985b6c03159d7
Author: Alex Karle <alex@alexkarle.com>
Date:   Sat,  3 Sep 2022 11:10:10 -0400

acme: Add t2s script for tab->space conversion

It's just easier to edit code with tabs in Acme...

Diffstat:
Abin/acme-scripts/t2s | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/bin/acme-scripts/t2s b/bin/acme-scripts/t2s @@ -0,0 +1,3 @@ +#!/bin/sh +# t2s -- tabs to spaces +sed 's/ / /g' "$@"