You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a vhdl file contains \r\n the regexps will not detect generics or ports
change
entityText = entityText.replace(/\n/g, " ")
to
entityText = entityText.replace(/\r*\n/g, " ")
The text was updated successfully, but these errors were encountered:
If a vhdl file contains \r\n the regexps will not detect generics or ports
change
entityText = entityText.replace(/\n/g, " ")
to
entityText = entityText.replace(/\r*\n/g, " ")
The text was updated successfully, but these errors were encountered: