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
Instead of changing the way “simple” expressions are detected,
switch to ignoring errors when completing. This approach is more
generic than the previous one from 0b66b8f, but also changes
the way errors are thrown when completing.
This reverts the code changes from commit 0b66b8f.
The test case is left intact.
Fixes: nodejs#6325
PR-URL: nodejs#6328
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Instead of changing the way “simple” expressions are detected,
switch to ignoring errors when completing. This approach is more
generic than the previous one from 0b66b8f, but also changes
the way errors are thrown when completing.
This reverts the code changes from commit 0b66b8f.
The test case is left intact.
Fixes: #6325
PR-URL: #6328
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
It seems that tab completion only works if the element to be completed is at the beginning of the line.
Examples:
> buf<TAB>
completes tobuffer
> <SPACE>buf<TAB>
does not complete> buffer.<TAB>
completes to the list of buffer properties> var buf = buffer.Slow<TAB>
does not completeThe text was updated successfully, but these errors were encountered: