splitter magic for columns
[feisty_meow.git] / scripts / rev_control / version_control.sh
index 8c7e996162769570b7c3b7644ae15063dd84ee70..7656dc1003c453617fae7b9f3ae0b326da8d9e1a 100644 (file)
@@ -17,6 +17,11 @@ export MAX_DEPTH=5
 # use our splitter tool for lengthy output if it's available.
 if [ ! -z "$(which splitter)" ]; then
   TO_SPLITTER="$(which splitter)"
+
+#hmmm: another reusable chunk here, getting terminal size.
+  # calculate the number of columsn in the terminal.
+  cols=$(stty size | awk '{print $2}')
+  TO_SPLITTER+=" --maxcol $(($cols - 1))"
 else
   TO_SPLITTER=cat
 fi