Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit ac66fd6

Browse files
committed
Merge pull request #11139 from adobe/jeff/fix-urlHints
fixes #11088
2 parents 19f9b43 + a99cdae commit ac66fd6

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

  • src/extensions/default/CSSCodeHints

src/extensions/default/CSSCodeHints/main.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,12 @@ define(function (require, exports, module) {
261261
// Always select initial value
262262
selectInitial = true;
263263

264+
// We need to end the session and begin a new session if the ( char is typed to
265+
// get arguments into the list when typing too fast
266+
if (implicitChar === "(") {
267+
return true;
268+
}
269+
264270
// When switching from a NAME to a VALUE context, restart the session
265271
// to give other more specialized providers a chance to intervene.
266272
if (lastContext === CSSUtils.PROP_NAME) {

0 commit comments

Comments
 (0)