DanielGavin / ols

Language server for Odin
MIT License
375 stars 56 forks source link

Better `#load` and `#load_directory` support #363

Open thetarnav opened 2 months ago

thetarnav commented 2 months ago
  1. Currently #load_directory doesn't appear in autocomplete, only #load.
  2. The hover type of result of #load is missing.
  3. The hover type of result of #load_directory is incorrect, it shows string when it should be []base:runtime.Load_Directory_File.
dir   := #load_directory("example") // []base:runtime.Load_Directory_File
bytes := #load("example")           // []byte
str   := #load("example", string)   // string