Nick OBrien
Nick OBrien
Currently, `math.rationalize` seems to ignore imaginary numbers: ```js // math.js version 9.5.1 // complex coefficient a = (2 + complex(3, 4)) let a = new math.OperatorNode("+", "add", [new math.ConstantNode(2), new...
Take this example: ```jl foo(;old) = old old = 16 foo(;old=old) foo(;old) ``` 1. Renaming the `old` in `foo(;old) = old` to `NEW` gives ```jl foo(;NEW) = NEW old =...
The `ij` text object includes some of a function signature if it spans multiple lines:  It doesn't select anything if the entire block is on one line, like this:...
When watching a livestream with mpv, playerctld will change the player back to mpv every few seconds. I think this is because the `mpris:length` field changes as the stream progresses....
Adds a config option `pause_icon` under Bling to change the pause notification icon. If `pause_icon` is the empty string, it will use the album cover.
The following behavior for the field `y
`ef-themes-toggle` currently checks the current theme with [`(eq (car custom-enabled-themes) one)`](https://github.com/protesilaos/ef-themes/blob/2686d155e2a889079c164a593b006aff1cdac095/ef-themes.el#L652), which doesn't detect themes that aren't the first entry in `custom-enabled-themes`. Would you consider using `memq` instead? ### Context...
#23 Copied indent, font-lock, and movement tests from [julia-mode-tests.el](https://github.com/JuliaEditorSupport/julia-emacs/blob/d360ad5285b8a0be1818fd6c2b4307c34e468c6e/julia-mode-tests.el). As of now, 25/60 tests fail when using `julia-ts-mode` instead of `julia-mode`. It would be better if we could somehow use...
Fixes #21
Especially since tree-sitter-julia is currently unstable, tests would be useful for maintaining compatibility. [nix-ts-mode](https://github.com/nix-community/nix-ts-mode) seems like a good reference for a test directory.