LSP: bugfix: input type debug appears to have disappeared from convertBuildOptions

This commit is contained in:
Cat 2023-03-30 11:29:10 +02:00 committed by Thulinma
parent eee3595d46
commit c1885a7a54
2 changed files with 157 additions and 151 deletions

View file

@ -7955,6 +7955,12 @@ var mist = {
obj.type = 'unix';
break;
}
case 'json':
case 'debug':
case 'inputlist': {
obj.type = ele.type;
break;
}
default:
obj.type = 'str';
}