-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_nya
75 lines (64 loc) · 1.71 KB
/
_nya
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# nya シリーズの共通設定ファイルです。
# 実行時のカレントディレクトリか、
# 環境変数HOMEの指すディレクトリに置くと
# 起動時に読みこんで実行します。
#
# 名称などを変更したい場合は、起動時に -r オプションで
# パスを指定してください。
print %0 reading ...
alias cp cp -i
alias rm rm -i
alias mv mv -i
alias bcc bcc32
alias zipinfo unzip -l
alias dir\w dir /w
suffix ny %nyatype% -f
suffix pl perl
suffix rb ruby
suffix jar java -jar
suffix awk awk -f
suffix vbs cscript
suffix js cscript
option uncompletechar ,;=
option tilde on
option history on
option backquote 4000
option +keep_bottom_line
# option +standalone
if $standalone = (set) then
foreach i ( dir mkdir rmdir )
alias $i $COMSPEC /c $i
end
endif
bindkey CTRL_P vzlike-previous-history
bindkey CTRL_N vzlike-next-history
if %nyatype% == NYACUS then
# NYACUS でのみ実行する部分をここに記述.
# option start "start """""
endif
option prompt $e[31;40;1m[$w]$_$$ $e[37;1m
# 関数 which の定義.
which{
foreach dir . ${PATH.split}
foreach ext .com .exe .bat .cmd
if exist $dir\$1$ext then
print found $dir\$1$ext
endif
end
end
}
### Vzライクなキーバインドにする関数
### 利用時には「vzbind」とだけの行を入れてください。
vzbind{
bindkey CTRL_R xscript:start xscript:pageup
bindkey CTRL_S backward xscript:backward
bindkey CTRL_D forward xscript:forward
bindkey CTRL_E vzlike-previous-history xscript:previous
bindkey CTRL_X vzlike-next-history xscript:next
bindkey CTRL_F forward-word
bindkey CTRL_A backward-word
}
# vzbind
# タグジャンプ参照コマンド設定.
set TAGJUMP=tagjump.vbs
print done