Reputation: 15404
I saw the following coding gif, which depicts a user typing commands (e.g. import
) and a pop up message would describe the usage for that command.
How can I set up something similar?
Upvotes: 0
Views: 518
Reputation: 43495
Code editors like vim
(with jedi
or python-mode
) or emacs
and integrated development environments like pycharm
can offer the same functionality.
Upvotes: 1
Reputation: 191725
According to the github issues in the repo of that gif, the video was taken using bpython
Source: https://github.com/tqdm/tqdm/issues/67
Upvotes: 3