helpline 0.1.7 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Makefile +9 -0
- data/exe/helpline +20 -9
- data/lib/helpline/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf6546d695b0f5183a37b1bd3f03b92badd158baf1b41de47710cd5620d1fe25
|
4
|
+
data.tar.gz: 8c66e7379d9cb8e2d02925fb80a33e44d9772fb6d40bcb41e0ec681e6c92092c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 289c5a0bc28dd19cbfe0f25bcfc3d32776c7b4e9dcba21b763d6cd72dfa0425f09efc2de9758dd57025338e90e6115f336562700d4117adae27d44d27d109fa8
|
7
|
+
data.tar.gz: e9455987872ac5e3765703bf7f13cc204a22b1d5c237970943ff99c3d2bffe53a7e3b815cbf7df222bee1fad1e1fee45c21dfcb6276a917439ba672b4c5e842c
|
data/Makefile
CHANGED
data/exe/helpline
CHANGED
@@ -130,22 +130,20 @@ class HelpLine
|
|
130
130
|
#
|
131
131
|
# HelpLineエントリ
|
132
132
|
#
|
133
|
-
|
133
|
+
entries = []
|
134
134
|
data['defs'].each { |line|
|
135
135
|
if line =~ /^\s*\$\s*(.*)$/ # $....
|
136
|
-
|
136
|
+
entries << $1
|
137
137
|
elsif line =~ /^\s*\%\s*(.*)$/ # %....
|
138
138
|
cmd = $1
|
139
|
-
|
139
|
+
entries.each { |l|
|
140
140
|
desc = eval('"' + l + '"')
|
141
141
|
g.add desc.force_encoding('utf-8'), cmd.force_encoding('utf-8')
|
142
142
|
}
|
143
|
-
|
143
|
+
entries = []
|
144
144
|
end
|
145
145
|
}
|
146
146
|
|
147
|
-
# puts "GENERATE #{params.split('|').join(' ')} "
|
148
|
-
|
149
147
|
res = g.generate " #{ARGV.join(' ').sub(/\[/,'').sub(/\]/,'')} "
|
150
148
|
|
151
149
|
if res[0].length == 0
|
@@ -156,13 +154,18 @@ class HelpLine
|
|
156
154
|
exit
|
157
155
|
end
|
158
156
|
|
157
|
+
git_repository = File.exist?(".git")
|
159
158
|
listed = {}
|
160
159
|
list = res[0].find_all { |a| # 0 ambig
|
161
160
|
# a = ["現在の状況を表示する {56}", "git status {56}"], etc.
|
162
|
-
if
|
161
|
+
if a[0] =~ /^git:/ && !git_repository
|
163
162
|
false
|
164
163
|
else
|
165
|
-
listed[a[1]]
|
164
|
+
if listed[a[1]]
|
165
|
+
false
|
166
|
+
else
|
167
|
+
listed[a[1]] = true
|
168
|
+
end
|
166
169
|
end
|
167
170
|
}
|
168
171
|
|
@@ -180,6 +183,9 @@ class HelpLine
|
|
180
183
|
sel = 0
|
181
184
|
disp(list,sel)
|
182
185
|
|
186
|
+
lines = list.length
|
187
|
+
lines = LINES if lines > LINES
|
188
|
+
|
183
189
|
inputchars = ''
|
184
190
|
while true
|
185
191
|
c = STDIN.getch
|
@@ -197,7 +203,7 @@ class HelpLine
|
|
197
203
|
inputchars = ''
|
198
204
|
elsif inputchars == "\x0e" || inputchars == "\e[B" || inputchars == "\eOB"
|
199
205
|
Curses.down
|
200
|
-
sel = (sel + 1) if sel <
|
206
|
+
sel = (sel + 1) if sel < lines-1
|
201
207
|
inputchars = ''
|
202
208
|
elsif inputchars == "\x10" || inputchars == "\e[A" || inputchars == "\eOA"
|
203
209
|
Curses.up
|
@@ -219,6 +225,11 @@ class HelpLine
|
|
219
225
|
desc = list[sel.to_i][0]
|
220
226
|
cmd = list[sel][1]
|
221
227
|
|
228
|
+
Curses.move(lines,0)
|
229
|
+
Curses.tol
|
230
|
+
|
231
|
+
#Curses.move(0,0)
|
232
|
+
##Curses.down
|
222
233
|
Curses.print_inverse("「#{desc}」を実行")
|
223
234
|
puts " (ソース: http://scrapbox.io/HelpLine/#{data['pages'][help_number[desc]]})"
|
224
235
|
File.open("/tmp/helpline.cmd","w"){ |f|
|
data/lib/helpline/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: helpline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Toshiyuki Masui
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-07-
|
11
|
+
date: 2020-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|