Skip to content

Commit ec2d8b2

Browse files
authored
Add 'Tab completion' to the Glossary (#918)
1 parent 79cfa7f commit ec2d8b2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

_episodes/02-numpy.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,8 @@ standard deviation: 4.61383319712
377377
>
378378
> How did we know what functions NumPy has and how to use them?
379379
> If you are working in IPython or in a Jupyter Notebook, there is an easy way to find out.
380-
> If you type the name of something followed by a dot, then you can use tab completion
380+
> If you type the name of something followed by a dot, then you can use
381+
> [tab completion]({{ page.root }}/reference.html#tab-completion)
381382
> (e.g. type `numpy.` and then press <kbd>Tab</kbd>)
382383
> to see a list of all functions and attributes that you can use. After selecting one, you
383384
> can also add a question mark (e.g. `numpy.cumprod?`), and IPython will return an

reference.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,10 @@ syntax error
254254
: A programming error that occurs when statements are in an order or contain characters
255255
not expected by the programming language.
256256

257+
tab completion
258+
: A feature of command-line interpreters, in which the program automatically fills in partially
259+
typed commands upon pressing the <kbd>Tab</kbd> key.
260+
257261
test oracle
258262
: A program, device, data set, or human being
259263
against which the results of a test can be compared.

0 commit comments

Comments
 (0)