- 
                Notifications
    You must be signed in to change notification settings 
- Fork 9
Home
        Jonathan Matthews edited this page Sep 10, 2025 
        ·
        5 revisions
      
    Some WIP notes on using the CUE VSCode extension, that build on the Quick Start guide:
- Use the Command Palette, Shift+Command+P(Mac) /Ctrl+Shift+P(Windows/Linux), to run CUE-specific commands. They are all prefixed withCUE:.
- Use the Outputwindow and selectCUEorCUE Language Serverin the Output Channel Selector dropdown for useful log messages.
- If you need trace-level logging of the LSP, then modify the user or workspace [settings] (https://code.visualstudio.com/docs/getstarted/settings) to add flags to specify a logfile location and the level of tracing:
{
   "cue.languageServerFlags" : [
      "-logfile=/tmp/cue_lsp.vscode",
      "-rpc.trace"
   ]
}
The main cue lsp wiki might also be of interest.