1

How I can change the parameter hint size box In VScode so I can see more parameters? enter image description here

itay k
  • 81
  • 1
  • 8
  • 1
    That's not possible currently. There is an existing GitHub issue and another [SO post](https://stackoverflow.com/questions/44638328/vs-code-size-of-description-popup) talks about it too. There's an answer that suggests using some plugin to achieve this. – Asif Kamran Malick Aug 07 '22 at 10:37
  • @AsifKamranMalick thanks dude how i can archive the post? – itay k Aug 07 '22 at 10:39

1 Answers1

0

This is my solution using Custom CSS Extension

.parameter-hints-widget {
  max-height: 4000px !important;
}
.phwrapper {
  max-width: 4000px !important;
  max-height: 4000px !important;
}
.phwrapper.monaco-scrollable-element {
  max-width: 4000px !important;
  max-height: 4000px !important;
}
Huy
  • 1