This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 145830
Collapse All | Expand All

(-)a/css.editor/src/org/netbeans/modules/css/gsf/CssCompletion.java (-1 / +3 lines)
Lines 809-815 public class CssCompletion implements Co Link Here
809
        int skipPrefixChars = 0;
809
        int skipPrefixChars = 0;
810
        if (t.id() == CssTokenId.COLON) {
810
        if (t.id() == CssTokenId.COLON) {
811
            return ""; //NOI18N
811
            return ""; //NOI18N
812
        } else if(t.id() == CssTokenId.STRING) {
812
        } else if (t.id() == CssTokenId.COMMA) {
813
            return ""; //NOI18N
814
        } else if (t.id() == CssTokenId.STRING) {
813
            skipPrefixChars = 1; //skip the leading quotation char
815
            skipPrefixChars = 1; //skip the leading quotation char
814
        }
816
        }
815
817

Return to bug 145830