Please help as it drives me crazy
This thing pops up right where I need to see the code.
I tried many things – disabled all I could in settings
Went to settings.json:
{
"editor.detectIndentation": true,
"editor.insertSpaces": false,
"editor.tabSize": 4,
"workbench.colorTheme": "Default Dark Modern",
"telemetry.telemetryLevel": "off",
"workbench.iconTheme": "material-icon-theme",
"extensions.ignoreRecommendations": true,
"files.autoSave": "afterDelay",
"workbench.settings.applyToAllProfiles": [
"files.autoSave",
"editor.formatOnPaste",
"editor.insertSpaces",
"editor.tabSize",
"editor.hover.enabled",
"notebook.lineNumbers",
"editor.inlineSuggest.showToolbar",
"editor.inlayHints.enabled"
],
"notebook.editorOptionsCustomizations": {
"editor.insertSpaces": false
},
"jupyter.askForKernelRestart": false,
"zenMode.hideLineNumbers": false,
"multiCommand.commands": [
{
"command": "multiCommand.executeAndFocusBelow",
"sequence": [
"notebook.cell.execute",
"notebook.focusNextEditor"
]
},{
"command": "multiCommand.deleteAndFocusBelow",
"sequence": [
"notebook.cell.delete",
"notebook.focusPreviousEditor",
"notebook.focusNextEditor"
]
}
],
"python.dataScience.jupyterServerURI": "http://localhost:8888/",
"python.dataScience.askForKernelRestart": false,
"python.dataScience.alwaysTrustNotebooks": true,
"explorer.confirmDragAndDrop": false,
"notebook.lineNumbers": "on",
"github.copilot.editor.enableAutoCompletions": true,
"editor.hover.above": false,
"editor.inlineSuggest.showToolbar": "never",
"accessibility.verbosity.hover": false,
"editor.experimentalInlineEdit.showToolbar": "never",
"editor.inlayHints.enabled": "off",
"editor.hover.enabled": false,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"workbench.editor.empty.hint": "hidden"
}
And it is still showing.
Tried changing “off” to false and false to “off”.
And it is still showing.
Can it be that is because I edit remote notebook via vpn/ssh?
Dunno what to think.
Help please.