kuskus icon indicating copy to clipboard operation
kuskus copied to clipboard

Control+T, Outlines do not present user defined functions or variables

Open johndog opened this issue 2 years ago • 1 comments

If I create a .kql document and put in the following code:

let BytesInMB=(bytes: long) {
   round(bytes / 1024.0 / 1024.0, 2)
};
print a=BytesInMB(42)
;

I'd like to see two things:

  • Pressing Control-T presents an indexed view of all the symbols in the workspace. I should be able to search for 'Bytes' and navigate directly to BytesInMB, from any document I have open.
    • Currently, the Control-T simply shows No matching symbols in workspace
  • The outline view for a document, the pane displayed below the Kusto Workspace in the "Explorer" view, should show BytesInMB as a symbol, along with any other variables/functions/tables defined in the document.
    • Currently, the outline view simply says No symbols found in document 'temp.kql'

johndog avatar Feb 10 '23 20:02 johndog

Hi @johndog , thanks for the report. I'm happy to facilitate contributions and deployments but I'm no longer actively doing bug fixes or feature work on these extensions.

I don't think this Outline view was ever supported, so I'm tagging this as a feature request. Feel free to dig in.

rosshamish avatar Feb 13 '23 03:02 rosshamish