summaryrefslogtreecommitdiffstats
path: root/config/sh/functions
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-10-08 12:09:20 -0400
committerJesse Luehrs <doy@tozt.net>2023-10-08 12:59:10 -0400
commit49570c8dd03448240897b37b68567352b790f16f (patch)
tree6c192a52046d5d0dd1b84a838befd8e777cfeafb /config/sh/functions
parent66939c71da756c1d9e07a88a4a8ea2a018650060 (diff)
downloadconf-49570c8dd03448240897b37b68567352b790f16f.tar.gz
conf-49570c8dd03448240897b37b68567352b790f16f.zip
convert to stow
Diffstat (limited to 'config/sh/functions')
-rw-r--r--config/sh/functions14
1 files changed, 0 insertions, 14 deletions
diff --git a/config/sh/functions b/config/sh/functions
deleted file mode 100644
index b64c4cf..0000000
--- a/config/sh/functions
+++ /dev/null
@@ -1,14 +0,0 @@
-function perldoc {
- # XXX bash specific
- if type cpandoc >/dev/null 2>&1; then
- cpandoc "$@"
- else
- command perldoc "$@"
- fi
-}
-
-function cdu {
- cd "$(git root)" || return
-}
-
-# vim:ft=sh: