From 3f6367d2ca522cb012fb7e922a689014d659da3f Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Tue, 14 Jan 2020 14:59:11 +0000
Subject: [PATCH] Remove f function

---
 tag-zsh/zsh/functions/f | 9 ---------
 1 file changed, 9 deletions(-)
 delete mode 100644 tag-zsh/zsh/functions/f

diff --git a/tag-zsh/zsh/functions/f b/tag-zsh/zsh/functions/f
deleted file mode 100644
index 919b1501..00000000
--- a/tag-zsh/zsh/functions/f
+++ /dev/null
@@ -1,9 +0,0 @@
-# No arguments: `fin ps`
-# With arguments: acts like `fin`
-f() {
-  if [[ $# > 0 ]]; then
-    fin $@
-  else
-    fin start
-  fi
-}