codingknob
codingknob

Reputation: 11690

auto completions ipython end square/round bracket

In Jupyter Notebook if you type in [ it automatically completes it to [].

Same for the ( --> () and { --> {}

How can one make Ipython do this? I have anaconda installation of python that also includes Ipython

Upvotes: 0

Views: 920

Answers (1)

Sraw
Sraw

Reputation: 20264

You think that is notebook or ipython's feature. But actually it isn't.

It's codemirror which is the front js lib of jupyter notebook.

There are some options:

  1. Use another front end which support this feature such as qtconsole.
  2. Here is a related solution.

Upvotes: 1

Related Questions