Marc M. Adkins

Results 10 issues of Marc M. Adkins

This can be prevented by adding a `tools.go` file: ``` //go:build tools package tools import ( // Protect this entry in go.mod from being removed by go mod tidy. _...

enhancement

Test icon is hand edited copy of run icon so it kind of sucks a little. :-(

After I did this work I saw PR 170 which is apparently languishing. My bad for not checking first. On the other hand this PR currently has no merge issues...

For the following file: ```racket #lang racket/base (require racket/class) (define test% (class object% (define/public (testes) (displayln "not funny")))) ``` the class name `test%` and method name `testes` (sorry, inappropriate humor)...

It seems like I used to be able to double-click on a symbol and have it selected. Now I have to put the cursor in the symbol first and then...

There seems to be no way to enter an EOF in the `Input >` field. Normally I would use `-D` (on Linux) but that isn't recognized. Testing code that reads...

The following: ``` (in-package :cl-user) (defun infinity () (loop do (progn (print "Hello, World!")) (sleep 1))) (infinity) ``` can be killed using the **Threads** tree view without any issue. It...

TL;DR Add function to create a zerolog.Context object with a logger copy and clear the copy's context byte array in order to fix breakage in `phsym/zeroslog`. The recent release of...

I honestly don't expect this PR to be accepted. I'm pretty sure I'm the only person who thinks this is useful. Plus it's not thread safe. Fortunately for me, I...

This is a variant of #19 that removes the need to store state data in the console handler. It's actually pretty much what I originally intended to build before I...