Diego Mattioli
Diego Mattioli

Reputation: 31

Disable hover tips when coding in Python - Google Colab

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!

Image

Upvotes: 3

Views: 1985

Answers (2)

Mossab
Mossab

Reputation: 1093

Until Google does something about this, here's a workaround for all annoyed developers out there.

Disable it manually by injecting CSS to the page:

  1. install an extension that help you change web-pages css content, I'll be using User CSS
  2. Open a notebook and past the following lines in the extension
.parameter-hints-widget {
  visibility: hidden !important;}

Steps

Upvotes: 0

Bob Smith
Bob Smith

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'.

enter image description here

Upvotes: 1

Related Questions