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
There are a couple issues with the current autocomplete implementation:
it doesn't handle partial quotes correctly so you may have difficulty autocompleting anything with spaces.
for example run test.js "foo bar" will pass ["foo bar"] while run test.js "foo bar and run test.js "foo bar will pass ['"foo', "bar"]
there is currently no way to determine in a script's autocomplete method what argument the user is currently trying to complete.
for example run test.js foo and run test.js foo will pass ["foo"] to the method.
The text was updated successfully, but these errors were encountered:
To add to d0s' point above; there's a few other references for autocomplete's limitations, as well as some workarounds by other users at #522 and #1014
To avoid too much duplication, I'll close this one
Bitburner v2.6.2 (633da38)
There are a couple issues with the current autocomplete implementation:
for example
run test.js "foo bar"
will pass["foo bar"]
whilerun test.js "foo bar
andrun test.js "foo bar
will pass['"foo', "bar"]
for example
run test.js foo
andrun test.js foo
will pass["foo"]
to the method.The text was updated successfully, but these errors were encountered: