-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix content assist in user preferences #4667
Conversation
Signed-off-by: Anton Kosyakov <anton.kosyakov@typefox.io>
@akosyakov I'm sorry but can you briefly explain what the content assist is and how I can test the patch ? |
If you open user preferences editor, and press ctrl + space, you should get proposals for preference names. It is not the case on master. |
thank you ! I'll test the PR now 😃 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it works great now, thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works well. thank you !
@@ -67,7 +67,7 @@ export class JsonClientContribution extends BaseLanguageClientContribution { | |||
for (const s of allConfigs) { | |||
if (s.fileMatch) { | |||
for (let fileMatch of s.fileMatch) { | |||
if (fileMatch.charAt(0) !== '/' && !fileMatch.match(/\w+:\/\//)) { | |||
if (fileMatch.charAt(0) !== '/' && !fileMatch.match(/\w+:/)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@svenefftinge would be fine to remove them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's fine for now but might pop up again, once we use the vs code extension.
fix #4661