aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Don't flag unused imports aliased as `_`Brad Lewis2025-10-061-1/+1
| |
| * Run check unused imports on document refreshBrad Lewis2025-10-061-0/+2
|/
* Merge pull request #1078 from BradLewis/fix/using-pkg-name-conflictsBradley Lewis2025-10-062-21/+55
|\ | | | | Resolve types from usings before global scope
| * Resolve types from usings before global scopeBrad Lewis2025-10-062-21/+55
|/
* Merge pull request #1040 from DanielGavin/remove-unused-importsDanielGavin2025-10-0510-152/+328
|\ | | | | Add new code action: remove unused imports
| * Use defer to handle the case when document_open fails.remove-unused-importsDanielGavin2025-10-051-2/+2
| |
| * Remove unused fields/variablesDanielGavin2025-10-043-39/+35
| |
| * Move the deletion of the uri to the request itself.DanielGavin2025-10-042-2/+2
| |
| * Added diagnostic system to collect all the diagnostics. Unused imports are ↵DanielGavin2025-10-035-102/+181
| | | | | | | | shown on save and open.
| * Merge branch 'master' into remove-unused-importsDanielGavin2025-09-277-42/+149
| |\
| * | Have the removed imports remove the line.DanielGavin2025-09-273-6/+32
| | |
| * | Merge branch 'master' into remove-unused-importsDanielGavin2025-09-2723-1183/+3344
| |\ \
| * | | Add support for graying out unused importsDanielGavin2025-09-224-30/+45
| | | |
| * | | Add new code action: remove unused importsDanielGavin2025-09-224-10/+69
| | | |
* | | | Merge pull request #1074 from thetarnav/inlay-range-improvedDanielGavin2025-10-044-14/+39
|\ \ \ \ | | | | | | | | | | Use document range in inlay hints
| * | | | Fix typoDamian Tarnawski2025-10-011-4/+4
| | | | |
| * | | | Use document range in get_inlay_hintsDamian Tarnawski2025-10-014-14/+39
| | | | |
| * | | | Use the ranged argument from inlay hints to improve performance.DanielGavin2025-10-011-1/+1
| | | | |
* | | | | Merge pull request #1077 from BradLewis/fix/generic-proc-inlining-hoverBradley Lewis2025-10-043-2/+21
|\ \ \ \ \ | | | | | | | | | | | | Add proc inlining information for generic procs
| * | | | | Add proc inlining information for generic procsBrad Lewis2025-10-043-2/+21
|/ / / / /
* | | | | Merge pull request #1076 from BradLewis/fix/call-after-proc-overloadBradley Lewis2025-10-042-32/+97
|\ \ \ \ \ | | | | | | | | | | | | Correctly provide completions when calling a proc immediately after a proc overload call
| * | | | | Correctly provide completions when calling a proc immediately after a proc ↵Brad Lewis2025-10-042-32/+97
|/ / / / / | | | | | | | | | | | | | | | overload call
* | | | | Merge pull request #1075 from thetarnav/patch-2DanielGavin2025-10-021-6/+0
|\ \ \ \ \ | |/ / / / |/| | | | Delete root package-lock.json
| * | | | Delete root package-lock.jsonDamian Tarnawski2025-10-011-6/+0
|/ / / /
* | | | Merge pull request #1062 from BradLewis/chore/set-odin-version-ciBradley Lewis2025-09-302-8/+12
|\ \ \ \ | | | | | | | | | | Add a variable to set the odin branch/tag in the ci and nightly builds
| * | | | Add a variable to set the odin branch/tag in the ci and nightly buildsBrad Lewis2025-09-262-8/+12
| | |/ / | |/| |
* | | | Merge pull request #1071 from BradLewis/fix/os-namesBradley Lewis2025-09-302-10/+25
|\ \ \ \ | | | | | | | | | | Add more names for comparison when checking whether to collect a file
| * | | | Add more names for comparison when checking whether to collect a fileBrad Lewis2025-09-302-10/+25
|/ / / /
* | | | Merge pull request #1070 from BradLewis/fix/improve-file-collection-os-logicBradley Lewis2025-09-301-19/+23
|\ \ \ \
| * | | | Infer used os better when collecting globals in a fileBrad Lewis2025-09-301-19/+23
|/ / / /
* | | | Merge pull request #1068 from BradLewis/feat/poly-call-exprBradley Lewis2025-09-282-0/+29
|\ \ \ \ | | | | | | | | | | Find and replace poly types for call expr
| * | | | Find and replace poly types for call exprBrad Lewis2025-09-282-0/+29
|/ / / /
* | | | Merge pull request #1066 from BradLewis/fix/crash-renaming-zedBradley Lewis2025-09-281-1/+1
|\ \ \ \ | | | | | | | | | | Use uri path for log when document does not exist
| * | | | Use uri path for log when document does not existBrad Lewis2025-09-281-1/+1
|/ / / /
* | | | Merge pull request #1065 from BradLewis/fix/alphabetical-ordering-completionsBradley Lewis2025-09-281-3/+7
|\ \ \ \ | |_|_|/ |/| | | Fix ordering of completions with same score
| * | | Fix ordering of completions with same scoreBrad Lewis2025-09-281-3/+7
|/ / /
* | | Merge pull request #1060 from thetarnav/inlay_hints_implicit_return_valuesBradley Lewis2025-09-277-43/+149
|\ \ \ | |/ / |/| | Add inlay hints for implicit return values (closes #1058)
| * | Replace arrow symbol with underscore in inlay hintsDamian Tarnawski2025-09-272-2/+2
| | |
| * | Add inlay hints for implicit return values (closes #1058)Damian Tarnawski2025-09-267-43/+149
| | |
* | | Merge pull request #1061 from ↵Bradley Lewis2025-09-261-2/+3
|\ \ \ | |/ / |/| | | | | | | | BradLewis/fix/ensure-non-negative-lines-columns-diagnostics Ensure the lines and columns for diagnostics are non negative
| * | Ensure the lines and columns for diagnostics are non negativeBrad Lewis2025-09-261-2/+3
|/ /
* | Merge pull request #1057 from BradLewis/feat/indexing-matricesBradley Lewis2025-09-252-1/+34
|\ \ | | | | | | Correctly infer types when indexing matrices
| * | Correctly infer types when indexing matricesBrad Lewis2025-09-252-1/+34
|/ /
* | Merge pull request #1050 from BradLewis/feat/goto-def-packagesBradley Lewis2025-09-243-2/+97
|\ \ | | | | | | Goto definition on package use goes to package declaration
| * | Goto definition on package use goes to package declarationBrad Lewis2025-09-243-2/+97
|/ /
* | Merge pull request #1054 from BradLewis/fix/package-naming-conflictsBradley Lewis2025-09-242-1/+40
|\ \ | | | | | | Correct resolving package instead of field when name collides
| * | Correct resolving package instead of field when name collidesBrad Lewis2025-09-242-1/+40
|/ /
* | Use client capabilities to check if range semantic token is supported.DanielGavin2025-09-244-5/+23
| |
* | Merge pull request #1053 from BradLewis/fix/bool-docsBradley Lewis2025-09-241-1/+1
|\ \ | | | | | | Correct bool docs
| * | Correct bool docsBrad Lewis2025-09-241-1/+1
|/ /