Ask Your Question
1

How to literally print the output of tab completion in the command line?

asked 8 years ago

jipilab gravatar image

Some time ago, I realized that pressing tab after a "." in the command line opens a new window where it is possible to scroll through the possible methods to call on this object.

Is it still possible to print inside the terminal all the possibilities?

Even if I modify the preferences of the command line from "readline" to "multicolumns", it still does not show much of the possibilities and sometimes seeing all of them at once is faster than scrolling.

Is it possible to get this feature back as before somehow?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
1

answered 8 years ago

tmonteil gravatar image

The answer is yes, see some more details on this answer : https://ask.sagemath.org/question/358...

Preview: (hide)
link
0

answered 8 years ago

If you want an actual Python list of the possibilities, you can do something like this:

sage: shell = get_ipython()  # the IPython 'shell', which handles completion
sage: s = 'hello'
sage: shell.complete('s.r')
('s.r',
 [u's.replace',
  u's.rfind',
  u's.rindex',
  u's.rjust',
  u's.rpartition',
  u's.rsplit',
  u's.rstrip'])
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 8 years ago

Seen: 641 times

Last updated: Feb 06 '17