Community
Participate
Working Groups
One of our users mentioned in a post that when having a prefix of a tag the tag is not provided. Example: 1. create a new empty html file 2. hit Ctrl+Space - see that <html> tag proposal is provided 3. exit the content assist mode and write in the file "<ht" 4. hit again ctrl+space The user expectation was to get <html> tag proposal current - no proposals are provided
Created attachment 177442 [details] patch Whenever document is completely empty addEmptyDocumentProposals() is called, which computes all these proposals. As soon as we type something document is not empty, thats why we don't see any proposal.If we can treat document without DocType as empty then this small patch works .If we want to deal with document without doctype as separate , then we may need to do large(relatively) change for a infrequent scenario.Let me know if i should take second approach.
Changes look good. Thanks, Rakesh.