PJ Eby

Results 222 comments of PJ Eby

To address a few items from above: * If you set either the vault or kanban options to create the notes alongside the board, they will be created there instead...

As of version 0.4.4, you can now select the contents of a dataview list (or any other list, for that matter) and either drag-drop or copy-paste to the "+ Add...

FYI, this line: ``` console = console or {"log": () -> {}} ``` Doesn't do what you think it does. It _always_ disables logging, because it makes `console` into a...

Possibly worth noting is that the dirname and basename recipes given here aren't actually replacements for the `dirname` and `basename` commands. The real `dirname` command doesn't include a trailing `/`,...

They don't handle multiple trailing slashes correctly. Try strings like: * `abc//` * `//xyz/..//abc//` etc. There might be other problems, I'm not sure. It's hard to do it right without...

Note that you can implement these things yourself in your `.direnvrc` or a `~/.config/direnv/lib/00-disable.sh` , e.g. using: ```shell ${DIRENV_DISABLE:+exit} ``` This will basically treat any current `.envrc` as a no-op...

I'm confused. If you want to disable direnv in a shell whose environment you control, why not just redefine or unset the hook function for that shell? As long as...

Then can't you write the .envrc files to not do expensive things if they're "already merged"? This discussion is still way too abstract for me, as it's unclear who owns...

What? I don't know if that's true, but I do use cygwin as my main shell on Windows, not msys. (Maybe you're thinking of WSL? IIUC, WSL is actually Linux...

After a bit of fiddling, I got one of those examples to build and link a C main program to a go library under msys... and it built a plain...