Jostein Kjønigsen

Results 625 comments of Jostein Kjønigsen

I don't have a strong opinion on this. Myself I'm not sure debugging would be made easier by such a change... And if you pre-compile your configuration to a DLL...

> as for what happens, I'd imagine it would be the same as what happens now with the cscript if there is an API break it'll break The problem is...

Hey there and thanks for the PR! In general the idea seems useful, and superficially the code looks good. I'll try to get this properly reviewed and merged as soon...

Hey there and sorry for the delay. I finally got around to reviewing this PR and I have a few small comments. If you get those issues resolved, this looks...

Any news on this PR? :D

I may be wrong, but I think starting workspacer.exe from a console window will provide you with a stack-trace if it crashes.

I've done something similar to Emacs, and on Windows you can't really have symlinks. What I did for emacs (and for other software too) was just to chain-load the git-hosted...

Looking into it, it seems like there is a `#load`-directive which may be used to solve that need? https://learn.microsoft.com/en-us/archive/msdn-magazine/2016/january/essential-net-csharp-scripting ![image](https://user-images.githubusercontent.com/411338/234231414-6670129f-65e3-45f7-977d-40ad2710c2c0.png)

> I'd appreciate any input you can provide as to the intention of the `IKeyBindManager` versus the `KeyBindManager` This is just a common construct to separate contract from implementation. It...

If you are using function-valued parameters anywhere, you are implicitly creating `System.Action` instances. ````c# var x = "123"; // System.String var y = () => { Console.WriteLine("Hey there!"); }; //...