Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Unanswered
Can I make VS Code autocomplete load_uint and store_uint?

I use Visual Studio Code with the "FunC Language Support" extension by Whales Corp. This setup is convenient and often helps with the autocompletion in FunC. But for some reason when I type load_uint() or store_uint() the autocomplete suggests all kinds of things from load_coins to load_ref, but not the one I need, even though it's a popular function.

It's not the end of the world, I can type the whole thing manually, but it feels very weird to me. Maybe I don't understand something and the support for load_uint() can be turned on somehow?

  
  
Posted one year ago
Votes Newest

Answers