Justin Su
Justin Su
The more I dig into this, the more I feel like `path_helper` is a PITA... It turns `MANPATH=:foo` (something that is _appended_ to man's default search path) into `MANPATH=/usr/share/man:/usr/local/share/man:foo:` (which...
> > it basically blows away anything that comes from man's default search path > > Right, and surprisingly the default search path has some components interpsersed between `/usr/local/share/man` (which...
> I pushed a "fix" to the `faithful-macos-manpath` branch. Not sure if we should take it though, it matches macOS behavior but it seems just wrong. > > fish's current...
I think this broke the `git-interactive-rebase-tool` formula. How can I work around this and similar issues in the meantime?
`--set-cursor` is useful for this kind of abbreviation, but if the abbreviation inserts both quote marks, then it can't be used with history search. This feels more like a ergonomics...
Homebrew's livecheck usually handles the auto-bump. But with v1.3 changing the release format, this is being done manually in https://github.com/Homebrew/homebrew-cask/pull/224797.
I can reproduce in: Zed: v0.213.3 (Zed) OS: macOS 15.7.2 Memory: 16 GiB Architecture: x86_64
> When you set `BAT_PAGER="less -R"`, bat detects that you've provided command-line arguments (the `-R` flag). As the README says, bat will then **not add** any of its automatic options:...
Context: I've configured my own default options for less in $LESS. However, bat [appends its own options](https://github.com/sharkdp/bat/blob/master/README.md#using-less-as-a-pager). Most of bat's less options are good defaults (I use `--RAW-CONTROL-CHARS` and `--quit-if-one-screen`...
If I set `BAT_PAGER='less -F'` or use `--pager='less -F'`, it's clear that bat isn't passing `--RAW-CONTROL-CHARS` anymore, since the colour codes aren't interpreted by less anymore. So I think bat...