-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
interactive shell: autocompletion list corruption #23
Labels
Comments
It still has a minor issue, that global objects like njs, Math, JSON can appear 2 times in the completion list. I am going to leave this as is, because it would require much more refactoring.
|
@xeioex the patch works mostly fine, the most annoying problem is resolved. >> Math.
Math.__proto__ Math.asin Math.atanh Math.cos Math.expm1 Math.imul Math.log10 Math.LOG2E Math.pow Math.sin Math.SQRT2
Math.abs Math.asinh Math.cbrt Math.cosh Math.floor Math.LN10 Math.LOG10E Math.max Math.random Math.sinh Math.tan
Math.acos Math.atan Math.ceil Math.E Math.fround Math.LN2 Math.log1p Math.min Math.round Math.sqrt Math.tanh
Math.acosh Math.atan2 Math.clz32 Math.exp Math.hypot Math.log Math.log2 Math.PI Math.sign Math.SQRT1_2 Math.trunc
>> Math.PI
3.14159
>> Math.
Math.__proto__ Math.atan2 Math.cosh Math.hypot Math.LOG10E Math.pow Math.SQRT1_2
Math.abs Math.atanh Math.E Math.imul Math.log1p Math.random Math.SQRT2
Math.acos Math.cbrt Math.exp Math.isPrototypeOf Math.log2 Math.round Math.tan
Math.acosh Math.ceil Math.expm1 Math.LN10 Math.LOG2E Math.sign Math.tanh
Math.asin Math.clz32 Math.floor Math.LN2 Math.max Math.sin Math.toString
Math.asinh Math.constructor Math.fround Math.log Math.min Math.sinh Math.trunc
Math.atan Math.cos Math.hasOwnProperty Math.log10 Math.PI Math.sqrt Math.valueOf
>> Math. |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the autocompletion list is corrupted after the value of any property of any global object was accessed.
The text was updated successfully, but these errors were encountered: