vs-shell-format icon indicating copy to clipboard operation
vs-shell-format copied to clipboard

Bug: case

Open Malix-Labs opened this issue 2 years ago • 1 comments

case variable in
	case1)
		echo case1
		;;
	case2)
		echo case2
		;;
	case3)
		echo case3
		;;
esac

gets formated to

case variable in
case1)
	echo case1
	;;
case2)
	echo case2
	;;
case3)
	echo case3
	;;
esac

Malix-Labs avatar Nov 29 '23 11:11 Malix-Labs

Anyone find a workaround for this?

TheGardenMonkey avatar Mar 08 '24 15:03 TheGardenMonkey