Lane Spangler

Results 6 issues of Lane Spangler

It can be useful to get the output from the hy-shell as a string using `redirect-send` while still keeping the output in the REPL buffer as a record.

This seems like a sensible default, since you normally expect to see a lisp representation of your output rather than some internal model representation.

In the case of an empty list, the `thing` to decode is the byte array [b'l', b'e'], i.e. the list marker "l" followed immediately by the end marker "e". Previously,...

Spacemacs defines commands for splitting a window into two and then focusing the new window: ```lisp (defun split-window-below-and-focus () "Split the window vertically and focus the new window." (interactive) (split-window-below)...

The vscode extension has been renamed from `lldb-vscode` to `lldb-dap`. Thus `dap-lldb-debug-program` will no longer point to the right extension. I tried changing everything to point to the new extension,...

### Did you check existing issues? - [X] I have read all the [tree-sitter docs](https://tree-sitter.github.io/tree-sitter/using-parsers) if it relates to using the parser - [X] I have searched the existing issues...

bug