Blog: 2026-02-26

From razwiki
Jump to navigation Jump to search

unifying auto spellcheck across

  • text editor (vim support currently, could add emacs)
  • command line (fish support currently)
  • browser (no support)

Strange sort of issue. Adding a git remote using set-url --add to `all` removes the original push url:

fish $ git remote -v
codeberg	[email protected]:razzi/fish-functions.git (fetch)
codeberg	[email protected]:razzi/fish-functions.git (push)
github	[email protected]:razzius/fish-functions (fetch)
github	[email protected]:razzius/fish-functions (push)
origin	[email protected]:~razzi/fish-functions (fetch)
origin	[email protected]:~razzi/fish-functions (push)
fish $ git remote add all (git remote get-url origin)
fish $ git remote -v
all	[email protected]:~razzi/fish-functions (fetch)
all	[email protected]:~razzi/fish-functions (push)
codeberg	[email protected]:razzi/fish-functions.git (fetch)
codeberg	[email protected]:razzi/fish-functions.git (push)
github	[email protected]:razzius/fish-functions (fetch)
github	[email protected]:razzius/fish-functions (push)
origin	[email protected]:~razzi/fish-functions (fetch)
origin	[email protected]:~razzi/fish-functions (push)
fish $ git remote set-url --add --push all (git remote get-url github)
fish $ git remote -v
all	[email protected]:~razzi/fish-functions (fetch)
all	[email protected]:razzius/fish-functions (push)
codeberg	[email protected]:razzi/fish-functions.git (fetch)
codeberg	[email protected]:razzi/fish-functions.git (push)
github	[email protected]:razzius/fish-functions (fetch)
github	[email protected]:razzius/fish-functions (push)
origin	[email protected]:~razzi/fish-functions (fetch)
origin	[email protected]:~razzi/fish-functions (push)