KamasamaK
KamasamaK
Instead of making a language-specific change, I think a more general request could be to add a setting that would allow filtering.
I don't believe there is anything in the VS Code API for accessing the clipboard, but you should be able to use a Node package like [`clipboardy`](https://www.npmjs.com/package/clipboardy) to accomplish that.
It looks like this is only an issue with auto-completion suggestions. You can still press `Ctrl+Space` to force the suggestion or just run the `Emmet: Expand Abbreviation` command. This is...
I wasn't saying to not have a wordPattern, but to not have it change to accommodate Emmet autocompletion. The PHP one you linked also fails autocomplete on your example. It...
PHP and HTML are completely separate languages so it's not that strange that there would be syntactic differences. For example, in HTML5 there is an attribute `aria-labelledby` which would make...
I think it would be better to disable the built-in find in that case. Would it be feasible to implement a custom find that could search the virtual document and...
I agree that guessing whether a generic string literal is a SQL statement should be done conservatively. However, given this example, it is clear that any string literal value of...
@redtopia Sure, but only a bit more complicated since when not using named arguments, the first argument would have the same rules applied. Both of these cases were actually addressed...
The default is to use the `files.exclude` setting of VS Code. I will consider adding an extension setting that can override that.
Another workaround is to reference it as `local.xyz` each time it is used.