franc
franc

Reputation: 606

PhpStorm - Where can I see if I changed a file?

I am using PhpStorm 2022.2 on Windows 10 with (Settings > Appearance > Theme) IntelliJ Light. I dont use version controlling (git, svn etc.) in my project.

When I change a file I am used (from other editors) to see some change in the file tab, e.g. the color changes, or there is a "*" beside the filename. In PhpStorm I don't see any changes in the file tab or else where, if I changed something in the file. Where can I set this?

I looked through all settings, searched the net, but found only solutions concerning version control.

Upvotes: 0

Views: 159

Answers (2)

franc
franc

Reputation: 606

I found it myself, after searching again with better search words ;) I found it on PhpStorm Help pages:

https://www.jetbrains.com/help/phpstorm/settings-editor-tabs.html#appearance

So the setting is in:

Settings > Editor > General > Editor Tabs > Mark modified ()*

And after checked it does what I expect :)

Upvotes: 0

LazyOne
LazyOne

Reputation: 165471

  1. Settings (Preferences on macOS)
  2. Editor | General | Editor Tabs
  3. Ensure that Mark modified (*) option is enabled

enter image description here

https://www.jetbrains.com/help/phpstorm/settings-editor-tabs.html#appearance

The result:

enter image description here

Upvotes: 1

Related Questions