utils 0.6.4 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/bin/blameline +2 -2
- data/bin/classify +48 -12
- data/bin/dialog-pick +11 -0
- data/bin/discover +2 -5
- data/bin/edit +1 -1
- data/bin/probe +1 -1
- data/bin/rssr +37 -0
- data/bin/search +3 -2
- data/bin/serve +24 -0
- data/bin/ssh-tunnel +1 -1
- data/bin/strip_spaces +1 -1
- data/bin/utils-utilsrc +1 -1
- data/lib/utils.rb +1 -2
- data/lib/utils/{config/config_file.rb → config_file.rb} +19 -4
- data/lib/utils/editor.rb +1 -1
- data/lib/utils/finder.rb +18 -19
- data/lib/utils/grepper.rb +20 -3
- data/lib/utils/line_blamer.rb +1 -1
- data/lib/utils/patterns.rb +3 -1
- data/lib/utils/version.rb +1 -1
- data/utils.gemspec +9 -9
- metadata +12 -18
- data/bin/utils-install-config +0 -10
- data/lib/utils/config.rb +0 -23
- data/lib/utils/config/gdb/asm +0 -179
- data/lib/utils/config/gdb/ruby +0 -514
- data/lib/utils/config/gdbinit +0 -8
- data/lib/utils/config/irbrc +0 -3
- data/lib/utils/config/rdebugrc +0 -2
- data/lib/utils/config/rvmrc +0 -5
- data/lib/utils/config/screenrc +0 -143
- data/lib/utils/config/utilsrc +0 -14
data/lib/utils/config/gdbinit
DELETED
data/lib/utils/config/irbrc
DELETED
data/lib/utils/config/rdebugrc
DELETED
data/lib/utils/config/rvmrc
DELETED
data/lib/utils/config/screenrc
DELETED
@@ -1,143 +0,0 @@
|
|
1
|
-
#
|
2
|
-
# Example of a user's .screenrc file
|
3
|
-
#
|
4
|
-
|
5
|
-
# This is how one can set a reattach password:
|
6
|
-
# password ODSJQf.4IJN7E # "1234"
|
7
|
-
|
8
|
-
# no annoying audible bell, please
|
9
|
-
vbell on
|
10
|
-
|
11
|
-
# detach on hangup
|
12
|
-
autodetach on
|
13
|
-
|
14
|
-
# don't display the copyright page
|
15
|
-
startup_message off
|
16
|
-
|
17
|
-
# emulate .logout message
|
18
|
-
pow_detach_msg "Screen session of \$LOGNAME \$:cr:\$:nl:ended."
|
19
|
-
|
20
|
-
# advertise hardstatus support to $TERMCAP
|
21
|
-
# termcapinfo * '' 'hs:ts=\E_:fs=\E\\:ds=\E_\E\\'
|
22
|
-
|
23
|
-
# make the shell in every window a login shell
|
24
|
-
#shell -$SHELL
|
25
|
-
shell -$SHELL
|
26
|
-
|
27
|
-
# autoaka testing
|
28
|
-
# shellaka '> |tcsh'
|
29
|
-
# shellaka '$ |sh'
|
30
|
-
|
31
|
-
# set every new windows hardstatus line to somenthing descriptive
|
32
|
-
# defhstatus "screen: ^En (^Et)"
|
33
|
-
|
34
|
-
defscrollback 1000
|
35
|
-
|
36
|
-
# don't kill window after the process died
|
37
|
-
# zombie "^["
|
38
|
-
|
39
|
-
################
|
40
|
-
#
|
41
|
-
# xterm tweaks
|
42
|
-
#
|
43
|
-
|
44
|
-
#xterm understands both im/ic and doesn't have a status line.
|
45
|
-
#Note: Do not specify im and ic in the real termcap/info file as
|
46
|
-
#some programs (e.g. vi) will not work anymore.
|
47
|
-
termcap xterm hs@:cs=\E[%i%d;%dr:im=\E[4h:ei=\E[4l
|
48
|
-
terminfo xterm hs@:cs=\E[%i%p1%d;%p2%dr:im=\E[4h:ei=\E[4l
|
49
|
-
|
50
|
-
#80/132 column switching must be enabled for ^AW to work
|
51
|
-
#change init sequence to not switch width
|
52
|
-
termcapinfo xterm Z0=\E[?3h:Z1=\E[?3l:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l
|
53
|
-
|
54
|
-
# Make the output buffer large for (fast) xterms.
|
55
|
-
termcapinfo xterm* OL=10000
|
56
|
-
|
57
|
-
# tell screen that xterm can switch to dark background and has function
|
58
|
-
# keys.
|
59
|
-
termcapinfo xterm 'VR=\E[?5h:VN=\E[?5l'
|
60
|
-
termcapinfo xterm 'k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~'
|
61
|
-
termcapinfo xterm 'kh=\E[1~:kI=\E[2~:kD=\E[3~:kH=\E[4~:kP=\E[H:kN=\E[6~'
|
62
|
-
|
63
|
-
# special xterm hardstatus: use the window title.
|
64
|
-
termcapinfo xterm 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007'
|
65
|
-
|
66
|
-
#terminfo xterm 'vb=\E[?5h$<200/>\E[?5l'
|
67
|
-
termcapinfo xterm 'vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l'
|
68
|
-
|
69
|
-
# emulate part of the 'K' charset
|
70
|
-
termcapinfo xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334,{\344,|\366,}\374,~\337'
|
71
|
-
|
72
|
-
# xterm-52 tweaks:
|
73
|
-
# - uses background color for delete operations
|
74
|
-
termcapinfo xterm ut
|
75
|
-
|
76
|
-
################
|
77
|
-
#
|
78
|
-
# wyse terminals
|
79
|
-
#
|
80
|
-
|
81
|
-
#wyse-75-42 must have flow control (xo = "terminal uses xon/xoff")
|
82
|
-
#essential to have it here, as this is a slow terminal.
|
83
|
-
termcapinfo wy75-42 xo:hs@
|
84
|
-
|
85
|
-
# New termcap sequences for cursor application mode.
|
86
|
-
termcapinfo wy* CS=\E[?1h:CE=\E[?1l:vi=\E[?25l:ve=\E[?25h:VR=\E[?5h:VN=\E[?5l:cb=\E[1K:CD=\E[1J
|
87
|
-
|
88
|
-
################
|
89
|
-
#
|
90
|
-
# other terminals
|
91
|
-
#
|
92
|
-
|
93
|
-
#make hp700 termcap/info better
|
94
|
-
termcapinfo hp700 'Z0=\E[?3h:Z1=\E[?3l:hs:ts=\E[62"p\E[0$~\E[2$~\E[1$}:fs=\E[0}\E[61"p:ds=\E[62"p\E[1$~\E[61"p:ic@'
|
95
|
-
|
96
|
-
# Extend the vt100 desciption by some sequences.
|
97
|
-
termcap vt100* ms:AL=\E[%dL:DL=\E[%dM:UP=\E[%dA:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC
|
98
|
-
terminfo vt100* ms:AL=\E[%p1%dL:DL=\E[%p1%dM:UP=\E[%p1%dA:DO=\E[%p1%dB:LE=\E[%p1%dD:RI=\E[%p1%dC
|
99
|
-
|
100
|
-
|
101
|
-
################
|
102
|
-
#
|
103
|
-
# keybindings
|
104
|
-
#
|
105
|
-
|
106
|
-
#remove some stupid / dangerous key bindings
|
107
|
-
bind k
|
108
|
-
bind ^k
|
109
|
-
bind .
|
110
|
-
bind ^\
|
111
|
-
bind \\
|
112
|
-
bind ^h
|
113
|
-
bind h
|
114
|
-
#make them better
|
115
|
-
bind 'K' kill
|
116
|
-
bind 'I' login on
|
117
|
-
bind 'O' login off
|
118
|
-
bind '}' history
|
119
|
-
|
120
|
-
# Yet another hack:
|
121
|
-
# Prepend/append register [/] to the paste if ^a^] is pressed.
|
122
|
-
# This lets me have autoindent mode in vi.
|
123
|
-
register [ "\033:se noai\015a"
|
124
|
-
register ] "\033:se ai\015a"
|
125
|
-
bind ^] paste [.]
|
126
|
-
|
127
|
-
################
|
128
|
-
#
|
129
|
-
# default windows
|
130
|
-
#
|
131
|
-
|
132
|
-
# screen -t local 0
|
133
|
-
# screen -t mail 1 elm
|
134
|
-
# screen -t 40 2 rlogin faui40
|
135
|
-
|
136
|
-
# caption always "%3n %t%? @%u%?%? [%h]%?"
|
137
|
-
# hardstatus alwaysignore
|
138
|
-
# hardstatus alwayslastline "%w"
|
139
|
-
|
140
|
-
hardstatus on
|
141
|
-
hardstatus alwayslastline
|
142
|
-
hardstatus string "%{.bw}%-w%{.wr}%n %t%{-}%+w %=%{..g} %H %{..y}%l"
|
143
|
-
|
data/lib/utils/config/utilsrc
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
# vim: set ft=ruby:
|
2
|
-
|
3
|
-
search do
|
4
|
-
prune_dirs /\A(\.svn|\.git|CVS|tmp)\Z/
|
5
|
-
skip_files /(\A\.|\.sw[pon]\Z|~\Z)/, /\.log\Z/
|
6
|
-
end
|
7
|
-
|
8
|
-
discover do
|
9
|
-
# skip_files /(\A\.|\.sw[pon]\Z|~\Z)/, /\.log\Z/
|
10
|
-
end
|
11
|
-
|
12
|
-
strip_spaces do
|
13
|
-
prune_dirs /\A(\..*|CVS)\Z/
|
14
|
-
end
|