Changeset 22993 for dotfiles

Show
Ignore:
Timestamp:
11/08/08 11:25:40 (5 years ago)
Author:
oinume
Message:

[dotfiles/zsh/oinume] zsh 4.3.6だとエラーになる問題を修正

Location:
dotfiles/zsh/oinume
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • dotfiles/zsh/oinume/.zshenv

    r13629 r22993  
    3838export JLESSCHARSET="japanese" 
    3939export HTTP_HOME="$HOME/.w3m/bookmark.html" # for w3m 
    40 export FTP_PASSIVE_MODE="NO" 
     40export FTP_PASSIVE_MODE="YES" 
    4141 
    4242#### $PAGER     "less"   
    4343# less -M �ϥڡ����Υ��ơ�����(���ڡ������)����� 
    44 if [ -x `where jless` ]; then 
    45     export PAGER="jless -RM" 
    46 elif [ -x `where less` ];  then 
     44if [ -x /usr/bin/less ] || [ -x /usr/local/bin/less ] ;  then 
    4745    export PAGER="less -RM" 
    4846else 
  • dotfiles/zsh/oinume/.zshenv_private

    r13629 r22993  
    11# keychain (ssh-agent) 
    2 if [ -x `which keychain` ] ; then 
     2if [ -x /usr/bin/keychain ] || [ -x /usr/local/bin/keychain ] ; then 
    33    keychain ~/.ssh/id_rsa ~/.ssh/id_dsa ~/.ssh/identity 2>&1 > /dev/null 
    44   _keychain_file="$HOME/.keychain/`uname -n`-sh" 
     
    4444    export LS_COLORS 
    4545fi 
     46