| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Fixes build errors. The old location is no longer available: https://download.eclipse.org/releases/2023-12/202311171000/ returns 404
Fixes microsoft#524 Ensures completion text can be appended by clients E.g. For `com.|` the completion proposal has: completion: com.sun.jndi.ldap.pool completionLocation: 3 replaceEnd: 4 replaceStart: 0 `insertText` will be `sun.jndi.ldap.pool` For `List.|` the completion proposal has: completion: of() completionLocation: 4 replaceStart: 5 replaceEnd: 5 `insertText` will be `of()`
|
Any chance to get some feedback on this? |
Sorry, something went wrong.
| $.setInsertText(insertText.substring(prefix)); | ||
| } else { | ||
| $.setInsertText(insertText); | ||
| } |
There was a problem hiding this comment.
this doesn't work for VS Code. Typing Sys to trigger completion, select System and it becomes tem.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
First commit is from #525
Second commit fixes #524
Ensures completion text can be appended by clients
E.g.
For com.| the completion proposal has:
insertText will be sun.jndi.ldap.pool
For List.| the completion proposal has:
insertText will be of()
I didn't find any existing completion tests, so not sure how to write a test case for this