summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-18 01:27:16 -0400
committerJune McEnroe <june@causal.agency>2018-08-18 01:27:16 -0400
commit500195d6f1d13fc988bba60d6b35a7bdb5bb3a49 (patch)
treeacfc8ec02eef13a55a3391dbbc0eaf259c1305e5
parentCut off path components until right prompt fits (diff)
downloadsrc-500195d6f1d13fc988bba60d6b35a7bdb5bb3a49.tar.gz
src-500195d6f1d13fc988bba60d6b35a7bdb5bb3a49.zip
Use whence instead of type
type is an alias for whence -v and is more for human consumption.
-rw-r--r--home/.kshrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/home/.kshrc b/home/.kshrc
index 734d71b7..196b8ad1 100644
--- a/home/.kshrc
+++ b/home/.kshrc
@@ -12,7 +12,7 @@ CDPATH=:$HOME
 
 export PAGER=less
 export EDITOR=vim
-if type nvim > /dev/null; then
+if whence nvim > /dev/null; then
 	EDITOR=nvim
 	alias vim=nvim
 	export MANPAGER="nvim -c 'set ft=man' -"
@@ -61,7 +61,7 @@ function branch {
 	fi
 }
 
-type realpath > /dev/null && HOME=$(realpath "$HOME")
+whence realpath > /dev/null && HOME=$(realpath "$HOME")
 function prompt {
 	typeset status=$?
 	typeset path title right color left cols
n>Add FrontierJune McEnroe 2019-05-27Break nicks with ZWNJJune McEnroe 2019-05-26Add DawnJune McEnroe 2019-05-20Declare vasprintf(3) for GNUJune McEnroe 2019-05-20Fix comparison warning in ttpreJune McEnroe 2019-05-20Add AuthorityJune McEnroe 2019-05-19Specify precedence of unary versions of operatorsJune McEnroe 2019-05-18Add compound assignment operators to orderJune McEnroe 2019-05-15Support simple assignment in orderJune McEnroe 2019-05-15Implement sizeof in orderJune McEnroe 2019-05-15Add orderJune McEnroe 2019-05-12Add T suffix in bitJune McEnroe 2019-05-10Highlight yacc and lex files as CJune McEnroe 2019-05-10Use val instead of suboptargJune McEnroe 2019-05-09Add Parable of the SowerJune McEnroe 2019-05-07Add bit without buildJune McEnroe 2019-05-04Fix MANDIR typoJune McEnroe 2019-05-04Move relay to binJune McEnroe