hi,
I work in node.js and mongo and often want to test some code by pasting it into mongo shell.
In newer versions of mongo this ability seemed to stop working.
I just read that tab completion is a new feature and found out what the problem is.
Paste this into mongo shell:
db.help()
Now try and paste this:
db.help()
Sometimes I can run my commands through a JavaScript minifier to get them to work, but is there a better way to solve this problem/bug?
Thanks,
Jamund Ferguson