Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
johndog opened this issue Feb 10, 2023 · 1 comment
Open
Labels
feature New feature or request help wanted Contribution requested

Comments

@johndog
Copy link

johndog commented Feb 10, 2023

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'
@rosshamish
Copy link
Owner

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 rosshamish added feature New feature or request help wanted Contribution requested labels Feb 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature or request help wanted Contribution requested
Projects
None yet
Development

No branches or pull requests

2 participants