frankplow

Results 14 comments of frankplow

Looks like `charidx` and `byteidx` are unsupported by the vim version the checks are running on. I can revert d3655b7 but feel there’s a decent case to depend on them...

Reverted d3655b7 for now. I tried shimming it as suggested but `byteidx/charidx` don't have quite the same behaviour as the `strchars/strlen` solution (when the index exceeds the length of the...

f2adeb7 makes some modifications to the sound based on feedback I've gotten. Also turns out that the filter library's Chebyshev type II filter is buggy, so I've switched the anti-aliasing...

> I would say that while the middle signal quality range sounds ok. The lower end sounds too good and the message can be heard across even at 5% signal...

04b508d fixes a crash which would occur if `getChannelData` did not return a modulation type for a specific radio. I've also ensured all ACRE radios will always return this. It...

Yeah, it shows on xlsfonts for me as well. I also thought it was strange the problem was specific to siji. It works on all other bitmap fonts as far...

As I said in my original post, I have 70-yes-bitmaps.conf in my conf.d: `ls /etc/fonts/conf.d | grep bitmap` returns `70-yes-bitmaps.conf`. I've also tried `70-force-bitmaps.conf`, which made no difference. Also the...

@stark I tried it, again no luck. It worked just like yours without `70-yes-bitmaps.conf` or any other configuration until last week. Think I've tried every combo of `sudo` / `70-yes-bitmaps.conf`...

vim-lsp Log Note: a lot of duplicate requests have been omitted here ``` Sun 10 Apr 2022 14:22:40 BST:["lsp#register_server","server registered","rust-analyzer"] Sun 10 Apr 2022 14:22:40 BST:["s:on_text_document_did_open()",1,"rust","/home/frank/fun/euler/035_circular_primes","file:///home/frank/fun/euler/035_circular_primes/src/main.rs"] Sun 10 Apr 2022...

Has the original issue been resolved/is there a workaround? With the following MWE: Makefile ```make CC=arm-none-eabi-gcc main: main.c $(CC) $< -o $@ ``` main.c ```c int main() { return 0;...