3

When creating a new interface a GUID has to be added to the interface definition. The Embarcadero IDE has a shortcut for this Ctrl-Shft-G

Does Visual Studio Code with the omnipascal extenson also have such a shortcut?

Wosi
  • 41,986
  • 17
  • 75
  • 82
Bascy
  • 2,017
  • 1
  • 21
  • 46

1 Answers1

2

There is no dedicated shortcut for creating a GUID for an interface but it's always the first item in the code completion list when requested from inside an interface declaration without a GUID. The default shortcut in VSCode to request code completion is CTRL+SPACE.

Code completion for a new interface GUID

Wosi
  • 41,986
  • 17
  • 75
  • 82