gonzui-emacs 0.3
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.
- data/baz-display.jpg +0 -0
- data/baz.jpg +0 -0
- data/bin/gonzui-db-emacs.rb +21 -0
- data/bin/gonzui-search-emacs.rb +121 -0
- data/files +17 -0
- data/gonzui-emacs.en.html +106 -0
- data/gonzui-emacs.en.rd +93 -0
- data/gonzui-emacs.ja.html +119 -0
- data/gonzui-emacs.ja.rd +105 -0
- data/lib/el4r/emacsruby/autoload/55gonzui-emacs.rb +2 -0
- data/lib/el4r/emacsruby/gonzui-emacs.rb +154 -0
- data/setup.rb +1585 -0
- data/test/gonzui-emacs-sub.rb +1001 -0
- data/test/gonzui-emacs.e +64 -0
- data/test/input +35 -0
- data/test/output.compressed +26 -0
- data/test/test.rb +25 -0
- metadata +59 -0
data/baz-display.jpg
ADDED
Binary file
|
data/baz.jpg
ADDED
Binary file
|
@@ -0,0 +1,21 @@
|
|
1
|
+
#! /usr/local/bin/ruby
|
2
|
+
#
|
3
|
+
# Copyright (C) 2005 rubikitch <rubikitch@ruby-lang.org>
|
4
|
+
# Version: $Id: gonzui-db-emacs.rb 1077 2005-12-22 14:54:51Z rubikitch $
|
5
|
+
|
6
|
+
# This program is free software; you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
8
|
+
# the Free Software Foundation; either version 2 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU General Public License for more details.
|
14
|
+
# You should have received a copy of the GNU General Public License
|
15
|
+
# along with this program; if not, write to the Free Software
|
16
|
+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
17
|
+
|
18
|
+
require 'kconv'
|
19
|
+
|
20
|
+
GONZUI_DB = "gonzui-db"
|
21
|
+
puts `#{GONZUI_DB} -r #{ARGV.join ' '}`.toeuc
|
@@ -0,0 +1,121 @@
|
|
1
|
+
#! /usr/local/bin/ruby
|
2
|
+
#
|
3
|
+
# Copyright (C) 2005 rubikitch <rubikitch@ruby-lang.org>
|
4
|
+
# Version: $Id: gonzui-search-emacs.rb 1181 2006-02-05 03:14:03Z rubikitch $
|
5
|
+
|
6
|
+
# This program is free software; you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
8
|
+
# the Free Software Foundation; either version 2 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
# GNU General Public License for more details.
|
14
|
+
# You should have received a copy of the GNU General Public License
|
15
|
+
# along with this program; if not, write to the Free Software
|
16
|
+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
17
|
+
|
18
|
+
require 'kconv'
|
19
|
+
$KCODE='e'
|
20
|
+
|
21
|
+
class GonzuiSearchEmacs
|
22
|
+
|
23
|
+
GONZUI_SEARCH = ENV['GONZUI_EMACS_SEARCH'] || 'gonzui-search -C3 -n --color'
|
24
|
+
TAB = "\t"
|
25
|
+
|
26
|
+
private
|
27
|
+
def link(path, line)
|
28
|
+
%Q!(lh-gonzui #{line} #{path.inspect})\n!
|
29
|
+
end
|
30
|
+
|
31
|
+
def pkglink(pkg)
|
32
|
+
%Q!(lh-gonzui-pkg #{pkg.inspect})\n!
|
33
|
+
end
|
34
|
+
|
35
|
+
def pathlink(path)
|
36
|
+
%Q!(lh-to #{path.inspect})\n!
|
37
|
+
end
|
38
|
+
|
39
|
+
attr :pathes
|
40
|
+
attr :pkgs
|
41
|
+
|
42
|
+
def output_lines(output, path, lines, at_the_end=false)
|
43
|
+
return unless path
|
44
|
+
|
45
|
+
prev_lineno = nil
|
46
|
+
lines.keys.sort.each do |lineno|
|
47
|
+
line = lines[lineno]
|
48
|
+
output.puts if prev_lineno and prev_lineno != lineno-1
|
49
|
+
output.puts line
|
50
|
+
prev_lineno = lineno
|
51
|
+
end
|
52
|
+
lines.clear
|
53
|
+
output.puts unless at_the_end
|
54
|
+
end
|
55
|
+
|
56
|
+
public
|
57
|
+
|
58
|
+
def output_body(input, output)
|
59
|
+
path = nil
|
60
|
+
@pathes = []
|
61
|
+
@pkgs = []
|
62
|
+
lines = {}
|
63
|
+
|
64
|
+
while line=input.gets
|
65
|
+
line.chomp!
|
66
|
+
line.replace line.toeuc
|
67
|
+
case line
|
68
|
+
when /^== (.+)$/
|
69
|
+
|
70
|
+
if $1 != path
|
71
|
+
# output for previous file
|
72
|
+
output_lines(output, path, lines)
|
73
|
+
|
74
|
+
# update info for new file
|
75
|
+
path = $1
|
76
|
+
@pathes << path
|
77
|
+
@pkgs << path.scan(%r!^[^/]+!).to_s
|
78
|
+
|
79
|
+
output.puts line + " ==" + TAB + link(path, "nil")
|
80
|
+
end
|
81
|
+
|
82
|
+
when /^(\d+)(.)/
|
83
|
+
lineno, flag = $1, $2 # flag: ':' => matched / '-' => context
|
84
|
+
lineno = lineno.to_i
|
85
|
+
|
86
|
+
if flag == ':' or !lines[lineno]
|
87
|
+
lines[lineno] = line + TAB + link(path, lineno)
|
88
|
+
end
|
89
|
+
else
|
90
|
+
# output.puts line
|
91
|
+
end
|
92
|
+
end
|
93
|
+
output_lines(output, path, lines, :at_the_end)
|
94
|
+
end
|
95
|
+
|
96
|
+
def run(argv)
|
97
|
+
pipe = IO.popen("#{GONZUI_SEARCH} #{ARGV.join ' '}")
|
98
|
+
output = $>
|
99
|
+
|
100
|
+
output_body(pipe, output)
|
101
|
+
|
102
|
+
pkg_index = pkgs.uniq.map {|pkg|
|
103
|
+
pkg + TAB + pkglink(pkg)
|
104
|
+
}
|
105
|
+
|
106
|
+
path_index = pathes.map {|path|
|
107
|
+
path + TAB + pathlink(path)
|
108
|
+
}
|
109
|
+
|
110
|
+
puts "== Package Index =="
|
111
|
+
puts pkg_index
|
112
|
+
puts
|
113
|
+
puts "== Path Index =="
|
114
|
+
puts path_index
|
115
|
+
end
|
116
|
+
|
117
|
+
end
|
118
|
+
|
119
|
+
if __FILE__==$0
|
120
|
+
GonzuiSearchEmacs.new.run ARGV
|
121
|
+
end
|
data/files
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
baz-display.jpg
|
2
|
+
baz.jpg
|
3
|
+
bin/gonzui-db-emacs.rb
|
4
|
+
bin/gonzui-search-emacs.rb
|
5
|
+
files
|
6
|
+
gonzui-emacs.en.html
|
7
|
+
gonzui-emacs.en.rd
|
8
|
+
gonzui-emacs.ja.html
|
9
|
+
gonzui-emacs.ja.rd
|
10
|
+
lib/el4r/emacsruby/autoload/55gonzui-emacs.rb
|
11
|
+
lib/el4r/emacsruby/gonzui-emacs.rb
|
12
|
+
setup.rb
|
13
|
+
test/gonzui-emacs-sub.rb
|
14
|
+
test/gonzui-emacs.e
|
15
|
+
test/input
|
16
|
+
test/output.compressed
|
17
|
+
test/test.rb
|
@@ -0,0 +1,106 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-2022-jp" ?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
|
6
|
+
<head>
|
7
|
+
<title>Gonzui for Emacs</title>
|
8
|
+
<meta http-equiv="Content-type" content="text/html; charset=iso-2022-jp" />
|
9
|
+
<!-- head-element:nil -->
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
<h2>Index</h2>
|
13
|
+
|
14
|
+
<ul>
|
15
|
+
<li><p><a href="#label:1">What's new</a></p>
|
16
|
+
<ul>
|
17
|
+
<li><a href="#label:2">[2006/02/05] 0.3 released</a></li>
|
18
|
+
<li><a href="#label:3">[2005/12/25] 0.2 released</a></li>
|
19
|
+
<li><a href="#label:4">[2005/12/23] 0.1 released</a></li>
|
20
|
+
</ul></li>
|
21
|
+
<li><a href="#label:5">Abstract</a></li>
|
22
|
+
<li><a href="#label:6">Screenshots</a></li>
|
23
|
+
<li><a href="#label:7">Environment</a></li>
|
24
|
+
<li><a href="#label:8">Install</a></li>
|
25
|
+
<li><a href="#label:9">Usage</a></li>
|
26
|
+
<li><a href="#label:10">License</a></li>
|
27
|
+
</ul>
|
28
|
+
<hr />
|
29
|
+
|
30
|
+
<h1><a name="Title:" href="#Title:">Title:</a> <a name="label:0">Gonzui for Emacs</a></h1><!-- RDLabel: "Gonzui for Emacs" -->
|
31
|
+
|
32
|
+
<h2><a name="1" href="#1">1</a> <a name="label:1">What's new</a></h2><!-- RDLabel: "What's new" -->
|
33
|
+
|
34
|
+
<h3><a name="1.1" href="#1.1">1.1</a> <a name="label:2">[2006/02/05] 0.3 released</a></h3><!-- RDLabel: "[2006/02/05] 0.3 released" -->
|
35
|
+
|
36
|
+
<ul>
|
37
|
+
<li>Compact output.</li>
|
38
|
+
</ul>
|
39
|
+
<h3><a name="1.2" href="#1.2">1.2</a> <a name="label:3">[2005/12/25] 0.2 released</a></h3><!-- RDLabel: "[2005/12/25] 0.2 released" -->
|
40
|
+
|
41
|
+
<ul>
|
42
|
+
<li>Asynchronous. You do not have to wait until search process exits.</li>
|
43
|
+
<li>Use color.</li>
|
44
|
+
</ul>
|
45
|
+
<h3><a name="1.3" href="#1.3">1.3</a> <a name="label:4">[2005/12/23] 0.1 released</a></h3><!-- RDLabel: "[2005/12/23] 0.1 released" -->
|
46
|
+
|
47
|
+
<p>Initial release</p>
|
48
|
+
<h2><a name="2" href="#2">2</a> <a name="label:5">Abstract</a></h2><!-- RDLabel: "Abstract" -->
|
49
|
+
|
50
|
+
<p>gonzui-emacs is an Emacs interface of <a href="http://gonzui.sourceforge.net/">gonzui</a>, a source code search engine.
|
51
|
+
It is written in EmacsRuby.
|
52
|
+
It uses <a href="http://www.rubyist.net/~rubikitch/computer/langhelp/">langhelp</a> interface, so you can jump to a source code and bookmark a position.</p>
|
53
|
+
<h2><a name="3" href="#3">3</a> <a name="label:6">Screenshots</a></h2><!-- RDLabel: "Screenshots" -->
|
54
|
+
|
55
|
+
<ul>
|
56
|
+
<li><a href="baz.jpg">M-x gonzui baz</a></li>
|
57
|
+
<li><a href="baz-display.jpg">Displaying a source code</a></li>
|
58
|
+
</ul>
|
59
|
+
<h2><a name="4" href="#4">4</a> <a name="label:7">Environment</a></h2><!-- RDLabel: "Environment" -->
|
60
|
+
|
61
|
+
<ul>
|
62
|
+
<li>Ruby 1.8.2 or upper</li>
|
63
|
+
<li>emacs21 / xemacs21</li>
|
64
|
+
<li>langhelp 0.9.4 or upper</li>
|
65
|
+
<li>gonzui</li>
|
66
|
+
<li><a href="http://savannah.nongnu.org/cgi-bin/viewcvs/*checkout*/bm/bm/bm.el?rev=HEAD&content-type=text/plain">bm.el</a> (if you want to use bookmark feature)</li>
|
67
|
+
</ul>
|
68
|
+
<h2><a name="5" href="#5">5</a> <a name="label:8">Install</a></h2><!-- RDLabel: "Install" -->
|
69
|
+
|
70
|
+
<p>Before installing gonzui-emacs, install <a href="http://www.rubyist.net/~rubikitch/computer/langhelp/">langhelp (>=0.9.4)</a>.
|
71
|
+
If you want only to use gonzui, you do not have to edit `~/.langhelp/config'.</p>
|
72
|
+
<p>Please execute the following commands.</p>
|
73
|
+
<pre>ruby -ropen-uri -e 'URI("http://www.rubyist.net/~rubikitch/archive/gonzui-emacs-0.3.tar.gz").read.display' > gonzui-emacs-0.3.tar.gz
|
74
|
+
tar xzvf gonzui-emacs-0.3.tar.gz</pre>
|
75
|
+
<p>When you failed, please download it from the next link.</p>
|
76
|
+
<ul>
|
77
|
+
<li><a href="http://www.rubyist.net/~rubikitch/archive/gonzui-emacs-0.3.tar.gz">gonzui-emacs-0.3.tar.gz</a></li>
|
78
|
+
</ul>
|
79
|
+
<p>Then, install it.</p>
|
80
|
+
<pre>ruby setup.rb</pre>
|
81
|
+
<p>Victor Borja created <a href="http://darcs.thehatcher.com/vic/erebor-ebuilds/app-emacs/">Gentoo ebuild</a>. Thanks.</p>
|
82
|
+
<h2><a name="6" href="#6">6</a> <a name="label:9">Usage</a></h2><!-- RDLabel: "Usage" -->
|
83
|
+
|
84
|
+
<p>If you use gonzui-emacs for the first time, reboot el4r.</p>
|
85
|
+
<pre>M-x el4r-boot</pre>
|
86
|
+
<p>To use gonzui, type</p>
|
87
|
+
<pre>M-x gonzui</pre>
|
88
|
+
<p>and input a query.
|
89
|
+
A few seconds later, the gonzui-result buffer appears.
|
90
|
+
The usage of gonzui-result buffer is the same as langhelp.</p>
|
91
|
+
<ul>
|
92
|
+
<li>k, j: Move up/down</li>
|
93
|
+
<li>m, u: Bookmark</li>
|
94
|
+
<li>p, n: Move previous/next bookmark</li>
|
95
|
+
<li>l, RET: Follow the link</li>
|
96
|
+
<li>SPC, b: Scroll the gonzui-result buffer</li>
|
97
|
+
<li>c, v: Scroll the source code buffer</li>
|
98
|
+
</ul>
|
99
|
+
<p>To back to Index, type</p>
|
100
|
+
<pre>M-x winconf-pop</pre>
|
101
|
+
<h2><a name="7" href="#7">7</a> <a name="label:10">License</a></h2><!-- RDLabel: "License" -->
|
102
|
+
|
103
|
+
<p>GPL</p>
|
104
|
+
|
105
|
+
</body>
|
106
|
+
</html>
|
data/gonzui-emacs.en.rd
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
=begin
|
2
|
+
|
3
|
+
= Gonzui for Emacs
|
4
|
+
|
5
|
+
##### [whats new]
|
6
|
+
== What's new
|
7
|
+
|
8
|
+
=== [2006/02/05] 0.3 released
|
9
|
+
* Compact output.
|
10
|
+
|
11
|
+
=== [2005/12/25] 0.2 released
|
12
|
+
|
13
|
+
* Asynchronous. You do not have to wait until search process exits.
|
14
|
+
* Use color.
|
15
|
+
|
16
|
+
=== [2005/12/23] 0.1 released
|
17
|
+
Initial release
|
18
|
+
|
19
|
+
##### [/whats new]
|
20
|
+
|
21
|
+
##### [abstract]
|
22
|
+
== Abstract
|
23
|
+
|
24
|
+
gonzui-emacs is an Emacs interface of ((<gonzui|URL:http://gonzui.sourceforge.net/>)), a source code search engine.
|
25
|
+
It is written in EmacsRuby.
|
26
|
+
It uses ((<langhelp|URL:http://www.rubyist.net/~rubikitch/computer/langhelp/>)) interface, so you can jump to a source code and bookmark a position.
|
27
|
+
|
28
|
+
##### [/abstract]
|
29
|
+
|
30
|
+
== Screenshots
|
31
|
+
|
32
|
+
* ((<M-x gonzui baz|URL:baz.jpg>))
|
33
|
+
* ((<Displaying a source code|URL:baz-display.jpg>))
|
34
|
+
|
35
|
+
== Environment
|
36
|
+
|
37
|
+
* Ruby 1.8.2 or upper
|
38
|
+
* emacs21 / xemacs21
|
39
|
+
* langhelp 0.9.4 or upper
|
40
|
+
* gonzui
|
41
|
+
* ((<bm.el|URL:http://savannah.nongnu.org/cgi-bin/viewcvs/*checkout*/bm/bm/bm.el?rev=HEAD&content-type=text/plain>)) (if you want to use bookmark feature)
|
42
|
+
|
43
|
+
##### [install]
|
44
|
+
== Install
|
45
|
+
|
46
|
+
Before installing gonzui-emacs, install ((<langhelp (>=0.9.4)|URL:http://www.rubyist.net/~rubikitch/computer/langhelp/>)).
|
47
|
+
If you want only to use gonzui, you do not have to edit `~/.langhelp/config'.
|
48
|
+
|
49
|
+
Please execute the following commands.
|
50
|
+
|
51
|
+
ruby -ropen-uri -e 'URI("http://www.rubyist.net/~rubikitch/archive/gonzui-emacs-0.3.tar.gz").read.display' > gonzui-emacs-0.3.tar.gz
|
52
|
+
tar xzvf gonzui-emacs-0.3.tar.gz
|
53
|
+
|
54
|
+
|
55
|
+
When you failed, please download it from the next link.
|
56
|
+
|
57
|
+
* ((<gonzui-emacs-0.3.tar.gz|URL:http://www.rubyist.net/~rubikitch/archive/gonzui-emacs-0.3.tar.gz>))
|
58
|
+
|
59
|
+
Then, install it.
|
60
|
+
|
61
|
+
ruby setup.rb
|
62
|
+
|
63
|
+
Victor Borja created ((<Gentoo ebuild|URL:http://darcs.thehatcher.com/vic/erebor-ebuilds/app-emacs/>)). Thanks.
|
64
|
+
|
65
|
+
|
66
|
+
##### [/install]
|
67
|
+
|
68
|
+
== Usage
|
69
|
+
|
70
|
+
If you use gonzui-emacs for the first time, reboot el4r.
|
71
|
+
M-x el4r-boot
|
72
|
+
|
73
|
+
To use gonzui, type
|
74
|
+
M-x gonzui
|
75
|
+
and input a query.
|
76
|
+
A few seconds later, the gonzui-result buffer appears.
|
77
|
+
The usage of gonzui-result buffer is the same as langhelp.
|
78
|
+
|
79
|
+
* k, j: Move up/down
|
80
|
+
* m, u: Bookmark
|
81
|
+
* p, n: Move previous/next bookmark
|
82
|
+
* l, RET: Follow the link
|
83
|
+
* SPC, b: Scroll the gonzui-result buffer
|
84
|
+
* c, v: Scroll the source code buffer
|
85
|
+
|
86
|
+
To back to Index, type
|
87
|
+
M-x winconf-pop
|
88
|
+
|
89
|
+
|
90
|
+
== License
|
91
|
+
GPL
|
92
|
+
|
93
|
+
=end
|
@@ -0,0 +1,119 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-2022-jp" ?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
|
6
|
+
<head>
|
7
|
+
<title>Gonzui for Emacs</title>
|
8
|
+
<meta http-equiv="Content-type" content="text/html; charset=iso-2022-jp" />
|
9
|
+
<!-- head-element:nil -->
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
<h2>Index</h2>
|
13
|
+
|
14
|
+
<ul>
|
15
|
+
<li><p><a href="#label:1">What's new</a></p>
|
16
|
+
<ul>
|
17
|
+
<li><a href="#label:2">[2006/02/05] 0.3 released</a></li>
|
18
|
+
<li><a href="#label:3">[2005/12/25] 0.2 released</a></li>
|
19
|
+
<li><a href="#label:4">[2005/12/23] 0.1 released</a></li>
|
20
|
+
</ul></li>
|
21
|
+
<li><a href="#label:5">$B35MW(B</a></li>
|
22
|
+
<li><a href="#label:6">$B%9%/%j!<%s%7%g%C%H(B</a></li>
|
23
|
+
<li><a href="#label:7">$BF0:n4D6-(B</a></li>
|
24
|
+
<li><a href="#label:8">$B%$%s%9%H!<%k(B</a></li>
|
25
|
+
<li><a href="#label:9">$B;H$$J}(B</a></li>
|
26
|
+
<li><a href="#label:10">TODO</a></li>
|
27
|
+
<li><a href="#label:11">$B%i%$%;%s%9(B</a></li>
|
28
|
+
</ul>
|
29
|
+
<hr />
|
30
|
+
|
31
|
+
<h1><a name="Title:" href="#Title:">Title:</a> <a name="label:0">Gonzui for Emacs</a></h1><!-- RDLabel: "Gonzui for Emacs" -->
|
32
|
+
|
33
|
+
<h2><a name="1" href="#1">1</a> <a name="label:1">What's new</a></h2><!-- RDLabel: "What's new" -->
|
34
|
+
|
35
|
+
<h3><a name="1.1" href="#1.1">1.1</a> <a name="label:2">[2006/02/05] 0.3 released</a></h3><!-- RDLabel: "[2006/02/05] 0.3 released" -->
|
36
|
+
|
37
|
+
<ul>
|
38
|
+
<li>$B=PNO$,%3%s%Q%/%H$K$J$j$^$7$?!#(B</li>
|
39
|
+
</ul>
|
40
|
+
<h3><a name="1.2" href="#1.2">1.2</a> <a name="label:3">[2005/12/25] 0.2 released</a></h3><!-- RDLabel: "[2005/12/25] 0.2 released" -->
|
41
|
+
|
42
|
+
<ul>
|
43
|
+
<li>$BHsF14|$KF0:n$9$k$h$&$K$J$j$^$7$?!#A48!:w$,40N;$7$J$/$F$b8!:w7k2L$N3NG'$,$G$-$^$9!#(B</li>
|
44
|
+
<li>$B%^%C%A$7$?ItJ,$K?'$,$D$/$h$&$K$J$j$^$7$?!#(B</li>
|
45
|
+
</ul>
|
46
|
+
<h3><a name="1.3" href="#1.3">1.3</a> <a name="label:4">[2005/12/23] 0.1 released</a></h3><!-- RDLabel: "[2005/12/23] 0.1 released" -->
|
47
|
+
|
48
|
+
<p>Initial release</p>
|
49
|
+
<h2><a name="2" href="#2">2</a> <a name="label:5">$B35MW(B</a></h2><!-- RDLabel: "$B35MW(B" -->
|
50
|
+
|
51
|
+
<p>$B%=!<%9%3!<%I8!:w%(%s%8%s(B<a href="http://gonzui.sourceforge.net/">gonzui</a>$B$N(BEmacs$B%$%s%?!<%U%'!<%9$G$9!#(B
|
52
|
+
EmacsRuby$B$G=q$+$l$F$$$^$9!#(B
|
53
|
+
<a href="http://www.rubyist.net/~rubikitch/computer/langhelp/">langhelp</a>$B$N%$%s%?!<%U%'!<%9$r$=$N$^$^;H$C$F$$$k$?$a!"(B
|
54
|
+
$B%=!<%9%3!<%I$KHt$s$@$j%V%C%/%^!<%/$r$D$1$?$j$G$-$^$9!#(B</p>
|
55
|
+
<h2><a name="3" href="#3">3</a> <a name="label:6">$B%9%/%j!<%s%7%g%C%H(B</a></h2><!-- RDLabel: "$B%9%/%j!<%s%7%g%C%H(B" -->
|
56
|
+
|
57
|
+
<ul>
|
58
|
+
<li><a href="baz.jpg">M-x gonzui$B$G(Bbaz$B$r8!:w$7$?$H$3$m(B</a></li>
|
59
|
+
<li><a href="baz-display.jpg">$B%j%s%/$r$?$I$j!"%=!<%9%3!<%I$rI=<($7$F$$$k$H$3$m(B</a></li>
|
60
|
+
</ul>
|
61
|
+
<h2><a name="4" href="#4">4</a> <a name="label:7">$BF0:n4D6-(B</a></h2><!-- RDLabel: "$BF0:n4D6-(B" -->
|
62
|
+
|
63
|
+
<ul>
|
64
|
+
<li>Ruby 1.8.2$B0J>e(B</li>
|
65
|
+
<li>emacs21 / xemacs21</li>
|
66
|
+
<li>langhelp 0.9.4$B0J>e(B</li>
|
67
|
+
<li>gonzui</li>
|
68
|
+
<li><a href="http://savannah.nongnu.org/cgi-bin/viewcvs/*checkout*/bm/bm/bm.el?rev=HEAD&content-type=text/plain">bm.el</a> ($B%V%C%/%^!<%/5!G=$r;H$$$?$$$J$i(B)</li>
|
69
|
+
</ul>
|
70
|
+
<h2><a name="5" href="#5">5</a> <a name="label:8">$B%$%s%9%H!<%k(B</a></h2><!-- RDLabel: "$B%$%s%9%H!<%k(B" -->
|
71
|
+
|
72
|
+
<p>$B$^$:!"(B<a href="http://www.rubyist.net/~rubikitch/computer/langhelp/">langhelp (>=0.9.4)</a>$B$r%$%s%9%H!<%k$7$F$/$@$5$$!#(B
|
73
|
+
gonzui$B$N$_$,L\E*$N?M$O(Blanghelp$B$N(Bconfig$B%U%!%$%k$rJT=8$9$kI,MW$O$"$j$^$;$s!#(B</p>
|
74
|
+
<p>langhelp$B$N%$%s%9%H!<%k$,=*$o$C$?$i0J2<$N%3%^%s%I$r<B9T$7$F$/$@$5$$!#(B</p>
|
75
|
+
<pre>ruby -ropen-uri -e 'URI("http://www.rubyist.net/~rubikitch/archive/gonzui-emacs-0.3.tar.gz").read.display' > gonzui-emacs-0.3.tar.gz
|
76
|
+
tar xzvf gonzui-emacs-0.3.tar.gz</pre>
|
77
|
+
<p>$B<:GT$9$k>l9g$O<!$N%j%s%/$+$i%@%&%s%m!<%I$7$F$/$@$5$$!#(B</p>
|
78
|
+
<ul>
|
79
|
+
<li><a href="http://www.rubyist.net/~rubikitch/archive/gonzui-emacs-0.3.tar.gz">gonzui-emacs-0.3.tar.gz</a></li>
|
80
|
+
</ul>
|
81
|
+
<p>$B$=$l$+$i<!$N%3%^%s%I$G%$%s%9%H!<%k!#(B</p>
|
82
|
+
<pre>ruby setup.rb</pre>
|
83
|
+
<p>Victor Borja$B$5$s$,(B<a href="http://darcs.thehatcher.com/vic/erebor-ebuilds/app-emacs/">Gentoo ebuild</a>$B$r:n@.$7$F$/$l$^$7$?!#(B
|
84
|
+
$B$"$j$,$H$&$4$6$$$^$9!#(B</p>
|
85
|
+
<h2><a name="6" href="#6">6</a> <a name="label:9">$B;H$$J}(B</a></h2><!-- RDLabel: "$B;H$$J}(B" -->
|
86
|
+
|
87
|
+
<p>$B=i$a$F;H$&$H$-$O(B</p>
|
88
|
+
<pre>M-x el4r-boot</pre>
|
89
|
+
<p>$B$G(Bel4r$B$r:F5/F0$7$F$/$@$5$$!#(B</p>
|
90
|
+
<p>gonzui$B8!:w$r$9$k$K$O(B</p>
|
91
|
+
<pre>M-x gonzui</pre>
|
92
|
+
<p>$B$G5/F0$7!"%/%(%j$rF~NO$7$^$9!#(B
|
93
|
+
$B?tICBT$D$H8!:w7k2L$,I=<($5$l$^$9!#(B
|
94
|
+
$B;H$$J}$O(Blanghelp$B$HF1$8$G$9!#(B</p>
|
95
|
+
<ul>
|
96
|
+
<li>k, j: $B>e2<0\F0(B</li>
|
97
|
+
<li>m, u: $B%V%C%/%^!<%/(B</li>
|
98
|
+
<li>p, n: $B%V%C%/%^!<%/>e2<0\F0(B</li>
|
99
|
+
<li>l, RET: $B%j%s%/$rC)$k(B</li>
|
100
|
+
<li>SPC, b: $B8!:w7k2L$N%9%/%m!<%k(B</li>
|
101
|
+
<li>c, v: $B%=!<%9%3!<%I$N%9%/%m!<%k(B</li>
|
102
|
+
</ul>
|
103
|
+
<p>Index$B$+$i%8%c%s%W$7$?$i(B</p>
|
104
|
+
<pre>M-x winconf-pop</pre>
|
105
|
+
<p>$B$GLa$l$^$9!#(B
|
106
|
+
$B$3$N%3%^%s%I$O(Bel4r$B$GDj5A$5$l$F$$$^$9$,JXMx$J$N$G(Bglobal-map$B$NE,Ev$J%-!<$K3d$jEv$F$F$/$@$5$$!#(B</p>
|
107
|
+
<h2><a name="7" href="#7">7</a> <a name="label:10">TODO</a></h2><!-- RDLabel: "TODO" -->
|
108
|
+
|
109
|
+
<p>$B$^$@$G$-$?$F$[$d$[$d$J$N$G2~NI$NM>CO$O$?$/$5$s$"$j$^$9!#(B</p>
|
110
|
+
<ul>
|
111
|
+
<li>$B%+%9%?%^%$%:@-$r9b$a$k(B</li>
|
112
|
+
<li>gonzui-db -r$B$G$O$J$/$FK\J*$N%=!<%9%3!<%I$rI=<($7$?$$(B</li>
|
113
|
+
</ul>
|
114
|
+
<h2><a name="8" href="#8">8</a> <a name="label:11">$B%i%$%;%s%9(B</a></h2><!-- RDLabel: "$B%i%$%;%s%9(B" -->
|
115
|
+
|
116
|
+
<p>GPL$B$H$7$^$9!#(B</p>
|
117
|
+
|
118
|
+
</body>
|
119
|
+
</html>
|