From d39a3a1cfd0cb9e7865dc0adbfb1333314143762 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 29 Apr 2016 11:04:30 -0400 Subject: Test for linux instead --- .zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zshrc b/.zshrc index 9ec45b04..e9200413 100644 --- a/.zshrc +++ b/.zshrc @@ -15,9 +15,9 @@ export EDITOR=vim GIT_EDITOR=vim type nvim > /dev/null && EDITOR=nvim GIT_EDITOR=nvim && alias vim=nvim export GPG_TTY=$TTY -[[ "$OSTYPE" =~ 'darwin|bsd' ]] && alias bsd=true || alias bsd=false -bsd && export CLICOLOR=1 || alias ls='ls --color' grep='grep --color' -bsd || alias rm='rm -I' +export CLICOLOR=1 +[[ "$OSTYPE" = 'linux-gnu' ]] && + alias ls='ls --color' grep='grep --color' rm='rm -I' alias gcl='git clone' alias gs='git status -sb' -- cgit 1.4.1 ll'>enroll IRC client
summary refs log tree commit diff
path: root/chat.h (unfollow)
Commit message (Collapse)Author
2018-08-06Fix allocation size in vaswprintfJune McEnroe
This is so embarrassing. It only started crashing once it had strings that were long enough, and then it took me so long to notice this mistake. I was worried I was still doing va_list wrong somehow.
2018-08-06Implement word wrappingJune McEnroe
2018-08-06Use wchar_t strings for all of UIJune McEnroe
vaswprintf is a nightmare.
2018-08-06Rename line editing functionsJune McEnroe
2018-08-05Initialize all possible color pairsJune McEnroe
This is actually possible with use_default_colors!
2018-08-05Refactor color initializationJune McEnroe
2018-08-05Add ^L redrawJune McEnroe
2018-08-05Use 16 colors if availableJune McEnroe
Fall back to using bold if there are only 8 colors. This also allowed bright background colors in 16-color terminals. I must port this system to torus. I'll be able to remove the awful termcap patch hack.
2018-08-05Limit parsed colors to number of mIRC colorsJune McEnroe
Oh boy that's embarrassing.
2018-08-04Show source link on exitJune McEnroe
2018-08-04Implement line editing, scrollingJune McEnroe
Don't really have a way to implement the M-* keys, and currently missing C-w.
2018-08-04Handle /topicJune McEnroe