summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChloƩ Vulquin <code@toast.bunkerlabs.net>2026-01-14 19:48:46 +0100
committerChloƩ Vulquin <code@toast.bunkerlabs.net>2026-01-14 19:54:08 +0100
commitd5e522754dbff4be53d6f05f93d1c864d0eaa202 (patch)
tree247b015e08a9fe7098392b7b2b471ed01879e674
parentgit: instantiate git.toast.cafe as me: \o/ (diff)
remove fossil
-rw-r--r--dot_config/private_fish/completions/f.fish12
-rw-r--r--dot_config/private_fish/functions/f.fish9
-rw-r--r--dot_local/bin/executable_fossil-diff2
-rw-r--r--dot_local/bin/executable_fossil-log5
-rw-r--r--dot_local/bin/executable_fossil-st2
5 files changed, 0 insertions, 30 deletions
diff --git a/dot_config/private_fish/completions/f.fish b/dot_config/private_fish/completions/f.fish
deleted file mode 100644
index 99796c6..0000000
--- a/dot_config/private_fish/completions/f.fish
+++ /dev/null
@@ -1,12 +0,0 @@
-# f wraps fossil by default
-complete -c f -w fossil
-
-# additional subcommands
-set -l dcommands (fossil help -a)
-set -l paths $PATH/fossil-*
-set -l commands (string replace -r '.*fossil-' '' $paths)
-
-if set -q commands[1]
- complete -c fossil -n "not __fish_seen_subcommand_from $dcommands" \
- -a "$commands"
-end
diff --git a/dot_config/private_fish/functions/f.fish b/dot_config/private_fish/functions/f.fish
deleted file mode 100644
index a3a5e33..0000000
--- a/dot_config/private_fish/functions/f.fish
+++ /dev/null
@@ -1,9 +0,0 @@
-function f --wraps=fossil
- set -l maybecmd fossil-$argv[1]
- if type -q $maybecmd;
- set -e argv[1];
- $maybecmd $argv;
- else
- fossil $argv;
- end
-end
diff --git a/dot_local/bin/executable_fossil-diff b/dot_local/bin/executable_fossil-diff
deleted file mode 100644
index f145661..0000000
--- a/dot_local/bin/executable_fossil-diff
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-fossil diff "$@" --command batdiff
diff --git a/dot_local/bin/executable_fossil-log b/dot_local/bin/executable_fossil-log
deleted file mode 100644
index ea922af..0000000
--- a/dot_local/bin/executable_fossil-log
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-YELLOW=$(echo '\x1b[0;33m')
-NORMAL=$(echo '\x1b[0m')
-
-exec fossil timeline -F "${YELLOW}[%h]${NORMAL} %c" "$@"
diff --git a/dot_local/bin/executable_fossil-st b/dot_local/bin/executable_fossil-st
deleted file mode 100644
index e3806b3..0000000
--- a/dot_local/bin/executable_fossil-st
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-fossil status "$@"