Boop
Boop copied to clipboard
Bug Report: unexpected replacement of tabs with spaces
trafficstars
Any tab entered into Boop, either via typing or the result of a script, is converted into 4 spaces.
Expected behavior:
- The only changes made to the text should be done by the scripts themselves.
- Result text should be exactly what the script outputs.
Steps to reproduce:
- Open boop
- press tab, a, s, d, f
- copy all text
- open terminal
- type
echo "then paste then" - compare output to
echo "\tasdf"
/**
{
"api": 1,
"name": "Tab Test",
"description": "Return tab + some text",
"author": "xoism",
"icon": "metamorphose",
"tags": "test,tab"
}
**/
function main (state) {
state.text = "\tasdf";
}
- copy output of above script
- perform same test in terminal as above
Boop version: 1.4.0 OS: macOS 12.6.1