7

new untitled file message

By mistake I pressed on "don't show this again". How can I make vscode show that option again?

2
  • Does this answer your question? How to undo "Don't show this prompt again" in vscode python? Commented Aug 27, 2021 at 19:18
  • For future problems of unwanted settings change, press ctrl shift p then type in "user settings json". Then, find and delete the setting you changed, and it will revert to default. Commented Sep 14, 2023 at 23:10

5 Answers 5

7

This was broken in vscode v1.90, see https://github.com/microsoft/vscode/issues/214671 where I pointed out the new setting:

// Controls if the empty editor text hint should be visible in the editor. "workbench.editor.empty.hint": "text",

Workbench > Editor > Empty: Hint 

also see https://github.com/microsoft/vscode/issues/214679

But it has been fixed and is working in the latest Insiders Build and should be out in v1.91 in early July 2023.


There is a setting that enables/disables that message:

Workbench > Editor > Empty: Hint

By selecting "Don't show again" you disabled that setting (setting it to hidden).
To get the message back, reenable it - set it to text.

Sign up to request clarification or add additional context in comments.

Comments

2
  1. Press ctrl + shift + P
  2. Type Change Language Mode press enter

You will get menu with all the languages.

Additionally you can save the file with correct extension to get all the language support installed in your VS code.

Hope this helped

6 Comments

You can also click the current language in the bottom-right corner ("plain text" on OP's screenshot).
Yep or do that.
thank you, but that's not what i wanted, if it's possible to bring back that message it will bee awesome!
Open settings.json using Ctrl+shift+P and select Preferences:Settings(JSON) Find "workbench.editor.untitled.hint": "hidden" change "hidden" to "text"
than you very much <3
|
2

I don't know when they changed the name of this setting but now it's called

"workbench.editor.empty.hint" 

You still need to change it to "text"

1 Comment

This should be the new accepted answer, couldn't find anything until seeing this
1

enter image description here

I follow above answer I solved for me

Comments

0

To anyone looking for this prompt today...

I used to have it enabled, but suddenly the prompt was gone. I went through all the workbench settings and finally found the setting.

It seems like they recently changed the setting ID from workbench.editor.untitled.hint to workbench.editor.empty.hint, and when doing that, set the setting to hidden regardless of the current value.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.