Reputation: 31
I am writing a program in Google Colab - Python. I could not figure out how to disable the annoying function description that covers most of my code, as in the image attached. It appears when my cursor is amongst the arguments of a function or similar
Thank you!
Upvotes: 3
Views: 1985
Reputation: 1093
Disable it manually by injecting CSS to the page:
.parameter-hints-widget {
visibility: hidden !important;}
Upvotes: 0
Reputation: 38579
You can disable these popups in the settings. Select Settings from the Tools menu. Then, select the editor tab and uncheck 'Automatically trigger code completions'.
Upvotes: 1