Patrick Meinecke
Patrick Meinecke
I'd just comment out that line and give it ago however you've been doin' it. The verb `RunAs` attempts to elevate the process, probably triggering a UAC prompt. By default...
afaik there's only one pipe, not one for read and one for write. an example session details file looks like this: ```json { "status":"started", "languageServiceTransport":"NamedPipe", "languageServicePipeName":"\\\\.\\pipe\\PSES_2wbpjblh.pnn", "debugServiceTransport":"NamedPipe", "debugServicePipeName":"\\\\.\\pipe\\PSES_ndg4d4tp.2pr" } ```...
Oh okay I stand corrected, we support that apparently. I'd probably try to get it working without splitting them first as that's the most tested path. You're getting the same...
> Noup, it is "successfully" connected and silently hangs when try to call client.initialize Ah okay that's very different and more likely to be the exact thing we need to...
That may be thanks to the awesome work @andschwa has done getting PSES to work in different clients ❤️
@tylerl0706 [This if statement](https://github.com/PowerShell/PowerShellEditorServices/blob/33cb42140d23ac94c28d325d242899b9a39aae7e/src/PowerShellEditorServices/Symbols/ScriptDocumentSymbolProvider.cs#L36) needs to support untitled tabs that contain PowerShell. The main difficulty would be determining that it's definitely PowerShell. Trying to run that on untitled tabs with...
Coincidentally I've thought about this **a lot** over the last month or so. I think an ideal implementation would be being able to select a target psd1 file the same...
@rkeithhill Yeah that makes sense. We could have it act more like the references code lens currently does but with a way to exclude (well, the references code lens would...
Something I've been wanting for a long time is the ability to assign an AST type to an editor command so any time you right clicked within an AST of...
@tylerl0706 I don't think we send any events that generic to PSES, but more importantly you just couldn't register context menu items dynamically period. They all need to be define...