Charles Holmes
Charles Holmes
I have neovim 0.4.3 installed on my mac. I have a spartan .vimrc right now: ```vim call plug#begin() if has('nvim') Plug 'numirias/semshi', {'do': ':UpdateRemotePlugins'} endif call plug#end() ``` When I...
Hledger seems to fail when recurring transactions have comments. Here is an example. I have a file *example.ledger*: ```ledger ~ monthly from 2022-01 a 10 USD b ~ monthly from...
When I try to install coc-python (via `:CocInstall coc-python`), I get this error: ``` Install finished - ✗ coc-python EEXIST: file already exists, mkdir '/home/chuck/.config/coc/extensions/node_ modules/coc-python' ``` But I've verified...
I string a lot of my programs together through piping, but some of them work best with confirmation prompting. However, if I pipe program A's output into program B and...
I want to replace keywords everywhere they occur. See my example: ```markdown # This is the heading {#sec:alpha} This is ref 1 = @sec:alpha This is ref 2 = {@sec:alpha}...
I have a linear probe with 32 contacts spaced 100 um apart. 16 contacts are dead. Radius = 90 um, so no spatial information should be used for sorts. I...
It appears that `yfinance.download` uses a progress bar that apparently prints to stdout. Should this be stderr instead?
My understanding is that if I use wal (e.g., `wal -i SOME_IMAGE`) to generate a colorscheme and then I call `wal -R -l`, it should regenerate the colorscheme but with...
I am using miller 6.8.0 on OSX. Here is my mlrrc: ``` pprint ``` When I run the following command, I get the following error: ``` ❯ mlr --csv cat
I'm trying to filter my data by group. The first step of this involves splitting the data with the verb split and using the "-g" option. However, I get the...