Gustavo Henrique Voigt

Results 7 comments of Gustavo Henrique Voigt

Hi, any news on this issue? I saw that the PR is open but it needs a review from a maintainer

I had a similar issue running `SDK 52.0.7` and `expo-updates 0.27.4` with a Pixel 6 running Android 15 version. I am upgrading to `SDK 53.0.9` and `expo-updates 0.28.13`. I will...

Try setting the right range for it, something like this: ``` monaco?.languages.registerCompletionItemProvider('customLang', { provideCompletionItems: (model, position) => { const range = new monaco.Range( position.lineNumber, 1, position.lineNumber, position.column ); return {...

@suren-atoyan is the method `registerInlineCompletionsProvider` supported? I am trying this example to create a ghost text suggestion, just like github copilot but for a custom language: ``` monaco.languages.registerInlineCompletionsProvider('custom', { provideInlineCompletions(model,...

I am getting this error on the console when trying to use the code provided before: ``` errors.ts:26 Uncaught Error: Cannot use 'in' operator to search for 'snippet' in undefined...

Already solved it! I was checking the wrong part of the documentation. Here is the full code if anyone needs: ``` monaco.languages.registerInlineCompletionsProvider('custom', { provideInlineCompletions(model, position, context, token) { console.log(model, position,...