Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mysterious number icon next to file name in PhpStorm [closed]

I accidentally pushed a hotkey in PhpStorm, and now there is a little number icon next to one of my file names.

What does this mean, and how can I remove it?

Here's a screenshot:

enter image description here

like image 330
Bryan Miller Avatar asked Jul 23 '16 02:07

Bryan Miller


People also ask

How do I enable hints in PhpStorm?

In the Settings/Preferences dialog ( Ctrl+Alt+S ), go to Editor | Color Scheme | Language Defaults, then select Inline hints.

How do I find a file in PhpStorm?

From the main menu, select Edit | Find | Find in Files Ctrl+Shift+F . In the search field, type your search string. Alternatively, in the editor, highlight the string you want to find and press Ctrl+Shift+F . PhpStorm places the highlighted string into the search field.

How do I switch between tabs in PhpStorm?

Switch between tabs To move between tabs, press Alt+Right or Alt+Left . You can also switch between recently viewed tabs or files. In the editor, press Ctrl+Tab . Keep pressing Ctrl for the Switcher window to stay open.


1 Answers

What does this mean

That's a Bookmark with Mnemonic -- basically, a numbered bookmark that can be quickly accessed from anywhere using that mnemonic as a key.

https://www.jetbrains.com/help/phpstorm/2016.2/navigating-with-bookmarks.html?search=bookmarks

and how can I remove it

Same way how you set it up. Few ways actually:

  1. Bring Bookmarks screen in and remove any unwanted bookmark from there: Navigate | Bookmarks | Show Bookmarks (Shift + F11 using Default keymap on Linux/Windows)

  2. Select that file in Project View panel and while focus is still there activate Navigate | Bookmarks | Toggle Bookmark with Mnemonic (Ctrl + F11 using Default keymap on Linux/Windows)

like image 113
LazyOne Avatar answered Oct 25 '22 03:10

LazyOne