You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When editing a study-config.json file, auto-complete suggests the names of all Boa datasets. But currently it will only suggest outside of the string. So you have to auto-complete after the :, but before typing the " to start the string.
Our current workaround is to have the auto-complete actually place the dataset name with quotes around it.
But most users probably would only try to auto-complete once they start the string. Ideally, it would automatically suggest the moment you type the " to open the string.
This is probably due to JSON disallowing auto-complete inside strings. I am not sure if we can override that.
The text was updated successfully, but these errors were encountered:
Not sure when things changed, but it is now autocompleting inside strings.
However, it is starting the completing from the current word (not the start of the string) so if you select it you get weird things like "java-sf": "2013 "2013 September/SF"/SF",. So still not working as we would like it.
When editing a
study-config.json
file, auto-complete suggests the names of all Boa datasets. But currently it will only suggest outside of the string. So you have to auto-complete after the:
, but before typing the"
to start the string.Our current workaround is to have the auto-complete actually place the dataset name with quotes around it.
But most users probably would only try to auto-complete once they start the string. Ideally, it would automatically suggest the moment you type the
"
to open the string.This is probably due to JSON disallowing auto-complete inside strings. I am not sure if we can override that.
The text was updated successfully, but these errors were encountered: