aboutsummaryrefslogtreecommitdiff
path: root/scripts/commands/:codi
blob: 09fb11bf7fc9fdff3e26edc6a308031399d84695 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

filetype=${1:-javascript}
tmpfile=$(mktemp /tmp/interpreter.XXXXXXX)

sensible-terminal -e sh -c "~/.bin/with_zsh 'codi $filetype $tmpfile'";

rm $tmpfile;