renan
renan

Reputation: 347

mongo shell - go to matching bracket / curly braces

Are there any shortcuts to go to the matching bracket / curly braces in the mongo shell ? I look into the documentation (https://docs.mongodb.com/manual/reference/mongo-shell/#keyboard-shortcuts) and found nothing.

Upvotes: 0

Views: 447

Answers (1)

Wan B.
Wan B.

Reputation: 18845

As of current version of MongoDB (v4.0) there is no built-in shortcuts to go to a matching brackets on mongo shell.

You could try to construct the commands through an editor (i.e. vim, etc), or utilise MongoDB GUI (i.e. MongoDB Compass)

Upvotes: 1

Related Questions