Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shift Tab on Google Colab

Using the command "Shift-Tab" does not work in Google Colab. Does anyone know an alternative that can be used?

I tried using shift + tab during the command and after a parenthesis after the command. For example, it was used at "print" and then again at "print("

like image 642
Dr. Fontaine Avatar asked Sep 24 '18 20:09

Dr. Fontaine


People also ask

How do you shift tab in Google Colab?

On Colab, for SHIFT+ TAB to work, you have to disable Automatically trigger code completions on Tools->Settings . You also have to have already imported the library that you are trying to get the docstring. For example run the import in another code snippet. Save this answer.

What is Ctrl M in Colab?

Useful Keyboard Shortcuts in Google Colab Command. Shortcut. Create cell. Command/Ctrl+M+B. Select all cells.

How do I split a cell in Google Colab?

The default is Ctrl + M -, But you can modify it to whatever shortcut you prefer.


1 Answers

On Colab, for SHIFT+ TAB to work, you have to disable Automatically trigger code completions on Tools->Settings.

You also have to have already imported the library that you are trying to get the docstring. For example run the import in another code snippet.

All Shortcuts can be found using CTRL + MH or going to Tools->Keyboard Shortcuts

like image 120
Thiago Romano Avatar answered Sep 27 '22 21:09

Thiago Romano