View CSS property suggestions in Notepad ++

Using Notepad ++ 5.7

I modified the .css file when I blocked / selected a rule and accidentally pressed a key in combination with alt or ctrl and other keys in the lower left part of the keyboard ... I don’t know which keys.

Moving around, a list of CSS values ​​appears, for example: first-letter several hundred. What key commands are needed for this again, and where is the documentation for this feature? It seems to me exciting.

Code I currently selected:

input[type=reset]:hover, input[type=submit]:hover{
color:#ffffff;
background-color:#1c1c1c;
cursor:pointer;
border:2px groove #0e0e0e;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;

}

+3
source share
1 answer

CTRL + Space does this. As for the documentation, try the following two:

https://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Keyboard_And_Mouse_Shortcuts - , CTRL-Space . Auto Completion, .

+2

Source: https://habr.com/ru/post/1772404/


All Articles