ruby_learner 1.0.0

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.
Files changed (188) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +5 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +6 -0
  7. data/Gemfile.lock +58 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +65 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +14 -0
  12. data/bin/new_terminal +25 -0
  13. data/bin/setup +8 -0
  14. data/docs/happy_ruby/RussOlsen_EloquentRuby_c1.pdf +0 -0
  15. data/docs/happy_ruby/RussOlsen_EloquentRuby_c5.pdf +0 -0
  16. data/docs/happy_ruby/TanoshiiRuby_v3_c23.pdf +0 -0
  17. data/docs/happy_ruby/TanoshiiRuby_v5_c1.pdf +0 -0
  18. data/docs/happy_ruby/TanoshiiRuby_v5_c2-3.pdf +0 -0
  19. data/docs/happy_ruby/c2.ipynb +479 -0
  20. data/docs/happy_ruby/c3_4.ipynb +237 -0
  21. data/docs/seminar/8-1.org +18 -0
  22. data/exe/ruby_learner +5 -0
  23. data/lib/ruby_learner/h.rb +14 -0
  24. data/lib/ruby_learner/methods.rb +131 -0
  25. data/lib/ruby_learner/random_h.rb +16 -0
  26. data/lib/ruby_learner/ruby_learner.rb +43 -0
  27. data/lib/ruby_learner/sequential_h.rb +15 -0
  28. data/lib/ruby_learner/typing_practice.rb +21 -0
  29. data/lib/ruby_learner/version.rb +3 -0
  30. data/questions/random_check/.rspec +1 -0
  31. data/questions/random_check/random_h.rb +16 -0
  32. data/questions/random_check/section_1/.rspec +1 -0
  33. data/questions/random_check/section_1/lib/answer.rb +15 -0
  34. data/questions/random_check/section_1/lib/sentence.org +9 -0
  35. data/questions/random_check/section_1/lib/workplace.rb +5 -0
  36. data/questions/random_check/section_1/spec/spec_helper.rb +100 -0
  37. data/questions/random_check/section_1/spec/workplace_spec.rb +10 -0
  38. data/questions/random_check/section_2/.rspec +1 -0
  39. data/questions/random_check/section_2/lib/answer.rb +17 -0
  40. data/questions/random_check/section_2/lib/sentence.org +12 -0
  41. data/questions/random_check/section_2/lib/workplace.rb +5 -0
  42. data/questions/random_check/section_2/spec/.rspec +1 -0
  43. data/questions/random_check/section_2/spec/spec_helper.rb +100 -0
  44. data/questions/random_check/section_2/spec/workplace_spec.rb +11 -0
  45. data/questions/sequential_check/section_1/part_1/lib/answer.rb +9 -0
  46. data/questions/sequential_check/section_1/part_1/lib/sentence.org +9 -0
  47. data/questions/sequential_check/section_1/part_1/lib/workplace.rb +5 -0
  48. data/questions/sequential_check/section_1/part_1/spec/spec_helper.rb +100 -0
  49. data/questions/sequential_check/section_1/part_1/spec/workplace_spec.rb +10 -0
  50. data/questions/sequential_check/section_1/part_2/lib/answer.rb +16 -0
  51. data/questions/sequential_check/section_1/part_2/lib/sentence.org +12 -0
  52. data/questions/sequential_check/section_1/part_2/lib/workplace.rb +5 -0
  53. data/questions/sequential_check/section_1/part_2/spec/.rspec +1 -0
  54. data/questions/sequential_check/section_1/part_2/spec/spec_helper.rb +100 -0
  55. data/questions/sequential_check/section_1/part_2/spec/workplace_spec.rb +11 -0
  56. data/ruby_learner.gemspec +41 -0
  57. data/takahashi/docs/README.org +139 -0
  58. data/takahashi/docs/drill.html +875 -0
  59. data/takahashi/docs/drill.html~ +877 -0
  60. data/takahashi/docs/drill.org +446 -0
  61. data/takahashi/docs/ruby_for_beginner.html +2642 -0
  62. data/takahashi/docs/ruby_for_beginner.org +1430 -0
  63. data/takahashi/sample_prog/answer/10_1.rb +5 -0
  64. data/takahashi/sample_prog/answer/11_1.rb +5 -0
  65. data/takahashi/sample_prog/answer/11_2.rb +4 -0
  66. data/takahashi/sample_prog/answer/1_1.rb +1 -0
  67. data/takahashi/sample_prog/answer/1_2.rb +1 -0
  68. data/takahashi/sample_prog/answer/1_3.rb +1 -0
  69. data/takahashi/sample_prog/answer/2_1.rb +5 -0
  70. data/takahashi/sample_prog/answer/2_2.rb +12 -0
  71. data/takahashi/sample_prog/answer/3_1.rb +10 -0
  72. data/takahashi/sample_prog/answer/4_1.rb +7 -0
  73. data/takahashi/sample_prog/answer/5_1.rb +6 -0
  74. data/takahashi/sample_prog/answer/5_2.rb +3 -0
  75. data/takahashi/sample_prog/answer/6_1.rb +3 -0
  76. data/takahashi/sample_prog/answer/6_2.rb +5 -0
  77. data/takahashi/sample_prog/answer/6_3.rb +5 -0
  78. data/takahashi/sample_prog/answer/6_4.rb +7 -0
  79. data/takahashi/sample_prog/answer/7_1.rb +3 -0
  80. data/takahashi/sample_prog/answer/7_2.rb +8 -0
  81. data/takahashi/sample_prog/answer/9_1.rb +3 -0
  82. data/takahashi/sample_prog/answer/9_2.rb +5 -0
  83. data/takahashi/sample_prog/answer/9_3.rb +10 -0
  84. data/takahashi/sample_prog/answer/hello.rb +3 -0
  85. data/workshop/.rspec +1 -0
  86. data/workshop/emacs.d/ac-comphist.dat +50 -0
  87. data/workshop/emacs.d/cp5022x.el +156 -0
  88. data/workshop/emacs.d/elpa/archives/gnu/archive-contents +1240 -0
  89. data/workshop/emacs.d/elpa/archives/melpa/archive-contents +2 -0
  90. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-autoloads.el +65 -0
  91. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.el +551 -0
  92. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.elc +0 -0
  93. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-pkg.el +6 -0
  94. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.el +2164 -0
  95. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.elc +0 -0
  96. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ada-mode +72 -0
  97. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c++-mode +99 -0
  98. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c-mode +55 -0
  99. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/caml-mode +231 -0
  100. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojure-mode +580 -0
  101. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojurescript-mode +475 -0
  102. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/coq-mode +278 -0
  103. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/css-mode +874 -0
  104. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/erlang-mode +216 -0
  105. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ess-julia-mode +37 -0
  106. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/go-mode +25 -0
  107. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/haskell-mode +679 -0
  108. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/java-mode +53 -0
  109. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/js-mode +148 -0
  110. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/julia-mode +37 -0
  111. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/lua-mode +21 -0
  112. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/nim-mode +70 -0
  113. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/objc-mode +161 -0
  114. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/octave-mode +46 -0
  115. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/php-mode +6144 -0
  116. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/python-mode +379 -0
  117. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/qml-mode +183 -0
  118. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ruby-mode +181 -0
  119. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scala-mode +1347 -0
  120. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scheme-mode +216 -0
  121. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sclang-mode +1481 -0
  122. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sh-mode +182 -0
  123. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/swift-mode +87 -0
  124. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tcl-mode +172 -0
  125. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ts-mode +797 -0
  126. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tuareg-mode +231 -0
  127. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/verilog-mode +313 -0
  128. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-autoloads.el +16 -0
  129. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-pkg.el +2 -0
  130. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.el +90 -0
  131. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.elc +0 -0
  132. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-autoloads.el +26 -0
  133. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-pkg.el +2 -0
  134. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.el +877 -0
  135. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.elc +0 -0
  136. data/workshop/emacs.d/elpa/haml-mode-readme.txt +8 -0
  137. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.el +918 -0
  138. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.elc +0 -0
  139. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-autoloads.el +32 -0
  140. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-pkg.el +8 -0
  141. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.el +912 -0
  142. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.elc +0 -0
  143. data/workshop/emacs.d/elpa/ox-bibtex-chinese-readme.txt +21 -0
  144. data/workshop/emacs.d/elpa/popup-20160709.729/popup-autoloads.el +15 -0
  145. data/workshop/emacs.d/elpa/popup-20160709.729/popup-pkg.el +2 -0
  146. data/workshop/emacs.d/elpa/popup-20160709.729/popup.el +1432 -0
  147. data/workshop/emacs.d/elpa/popup-20160709.729/popup.elc +0 -0
  148. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-autoloads.el +33 -0
  149. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-pkg.el +2 -0
  150. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.el +470 -0
  151. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.elc +0 -0
  152. data/workshop/emacs.d/elpa/yaml-mode-readme.txt +25 -0
  153. data/workshop/emacs.d/haml-mode-master/.gitignore +1 -0
  154. data/workshop/emacs.d/haml-mode-master/.mailmap +2 -0
  155. data/workshop/emacs.d/haml-mode-master/MIT-LICENSE +20 -0
  156. data/workshop/emacs.d/haml-mode-master/README.md +47 -0
  157. data/workshop/emacs.d/haml-mode-master/haml-mode.el +887 -0
  158. data/workshop/emacs.d/iceberg_theme.el +202 -0
  159. data/workshop/emacs.d/init-open-recentf.el +133 -0
  160. data/workshop/emacs.d/init.el +229 -0
  161. data/workshop/emacs.d/inits/line-num.el +264 -0
  162. data/workshop/emacs.d/install-elisp.el +366 -0
  163. data/workshop/emacs.d/markdown-mode/markdown-mode.el +5978 -0
  164. data/workshop/emacs.d/notes +12 -0
  165. data/workshop/emacs.d/processing-mode/processing-mode.el +275 -0
  166. data/workshop/emacs.d/recentf +31 -0
  167. data/workshop/emacs.d/ruby-mode/inf-ruby.el +416 -0
  168. data/workshop/emacs.d/ruby-mode/rdoc-mode.el +130 -0
  169. data/workshop/emacs.d/ruby-mode/ruby-electric.el +205 -0
  170. data/workshop/emacs.d/ruby-mode/ruby-mode.el +1496 -0
  171. data/workshop/emacs.d/ruby-mode/ruby-style.el +78 -0
  172. data/workshop/emacs.d/ruby-mode/rubydb2x.el +104 -0
  173. data/workshop/emacs.d/ruby-mode/rubydb3x.el +115 -0
  174. data/workshop/emacs.d/ruby_learner_init.el +244 -0
  175. data/workshop/emacs.d/themes/dracula-theme.el +431 -0
  176. data/workshop/emacs.d/themes/iceberg-theme.el +205 -0
  177. data/workshop/emacs.d/themes/my-misterioso-theme.el +109 -0
  178. data/workshop/emacs.d/themes/my-wombat-theme.el +121 -0
  179. data/workshop/emacs.d/wiki-mode/wiki.el +976 -0
  180. data/workshop/emacs_help.org +34 -0
  181. data/workshop/lib/answer.rb +1 -0
  182. data/workshop/lib/sentence.org +1 -0
  183. data/workshop/lib/workplace.rb +1 -0
  184. data/workshop/restore/empty.rb +0 -0
  185. data/workshop/spec/spec_helper.rb +100 -0
  186. data/workshop/spec/workplace_spec.rb +1 -0
  187. data/workshop/training_data.txt +3 -0
  188. metadata +343 -0
@@ -0,0 +1,1240 @@
1
+ (1
2
+ (ace-window .
3
+ [(0 9 0)
4
+ ((avy
5
+ (0 2 0)))
6
+ "Quickly switch windows." single
7
+ ((:url . "https://github.com/abo-abo/ace-window")
8
+ (:keywords "window" "location"))])
9
+ (ack .
10
+ [(1 5)
11
+ nil "interface to ack-like tools" tar
12
+ ((:keywords "tools" "processes" "convenience")
13
+ (:url . "https://github.com/leoliu/ack-el"))])
14
+ (ada-mode .
15
+ [(5 3 1)
16
+ ((wisi
17
+ (1 1 6))
18
+ (cl-lib
19
+ (0 4))
20
+ (emacs
21
+ (24 3)))
22
+ "major-mode for editing Ada sources" tar
23
+ ((:keywords "languages" "ada")
24
+ (:url . "http://www.nongnu.org/ada-mode/"))])
25
+ (ada-ref-man .
26
+ [(2012 3)
27
+ nil "Ada Reference Manual 2012" tar
28
+ ((:keywords "languages" "ada")
29
+ (:url . "http://stephe-leake.org/ada/arm.html"))])
30
+ (adaptive-wrap .
31
+ [(0 5 2)
32
+ nil "Smart line-wrapping with wrap-prefix" single
33
+ ((:url . "http://elpa.gnu.org/packages/adaptive-wrap.html")
34
+ (:keywords))])
35
+ (adjust-parens .
36
+ [(3 0)
37
+ nil "Indent and dedent Lisp code, automatically adjust close parens" tar
38
+ ((:url . "http://elpa.gnu.org/packages/adjust-parens.html"))])
39
+ (aggressive-indent .
40
+ [(1 8 3)
41
+ ((emacs
42
+ (24 1))
43
+ (cl-lib
44
+ (0 5)))
45
+ "Minor mode to aggressively keep your code always indented" single
46
+ ((:url . "https://github.com/Malabarba/aggressive-indent-mode")
47
+ (:keywords "indent" "lisp" "maint" "tools"))])
48
+ (ahungry-theme .
49
+ [(1 10 0)
50
+ ((emacs
51
+ (24)))
52
+ "Ahungry color theme for Emacs. Make sure to (load-theme 'ahungry)." tar
53
+ ((:keywords "ahungry" "palette" "color" "theme" "emacs" "color-theme" "deftheme")
54
+ (:url . "https://github.com/ahungry/color-theme-ahungry"))])
55
+ (all .
56
+ [(1 0)
57
+ nil "Edit all lines matching a given regexp" single
58
+ ((:url . "http://elpa.gnu.org/packages/all.html")
59
+ (:keywords "matching"))])
60
+ (ampc .
61
+ [(0 2)
62
+ nil "Asynchronous Music Player Controller" single
63
+ ((:url . "http://elpa.gnu.org/packages/ampc.html")
64
+ (:keywords "ampc" "mpc" "mpd"))])
65
+ (arbitools .
66
+ [(0 94)
67
+ ((cl-lib
68
+ (0 5)))
69
+ "Package for chess tournaments administration" single
70
+ ((:url . "http://elpa.gnu.org/packages/arbitools.html")
71
+ (:keywords))])
72
+ (ascii-art-to-unicode .
73
+ [(1 11)
74
+ nil "a small artist adjunct" single
75
+ ((:url . "http://www.gnuvola.org/software/aa2u/")
76
+ (:keywords "ascii" "unicode" "box-drawing"))])
77
+ (async .
78
+ [(1 9 2)
79
+ nil "Asynchronous processing in Emacs" tar
80
+ ((:keywords "async")
81
+ (:url . "http://elpa.gnu.org/packages/async.html"))])
82
+ (auctex .
83
+ [(12 1 1)
84
+ nil "Integrated environment for *TeX*" tar
85
+ ((:url . "http://www.gnu.org/software/auctex/"))])
86
+ (aumix-mode .
87
+ [(7)
88
+ nil "run the aumix program in a buffer" single
89
+ ((:url . "http://user42.tuxfamily.org/aumix-mode/index.html")
90
+ (:keywords "multimedia" "mixer" "aumix"))])
91
+ (auto-correct .
92
+ [(1 1 3)
93
+ nil "Remembers and automatically fixes past corrections" single
94
+ ((:url . "http://elpa.gnu.org/packages/auto-correct.html")
95
+ (:keywords "editing"))])
96
+ (auto-overlays .
97
+ [(0 10 9)
98
+ nil "Automatic regexp-delimited overlays" tar
99
+ ((:keywords "extensions")
100
+ (:url . "http://www.dr-qubit.org/emacs.php"))])
101
+ (avy .
102
+ [(0 4 0)
103
+ ((emacs
104
+ (24 1))
105
+ (cl-lib
106
+ (0 5)))
107
+ "tree-based completion" tar
108
+ ((:keywords "point" "location")
109
+ (:url . "https://github.com/abo-abo/avy"))])
110
+ (bbdb .
111
+ [(3 2)
112
+ ((emacs
113
+ (24)))
114
+ "core of BBDB" tar
115
+ ((:url . "http://elpa.gnu.org/packages/bbdb.html"))])
116
+ (beacon .
117
+ [(1 3 3)
118
+ ((seq
119
+ (2 14)))
120
+ "Highlight the cursor whenever the window scrolls" single
121
+ ((:url . "https://github.com/Malabarba/beacon")
122
+ (:keywords "convenience"))])
123
+ (bug-hunter .
124
+ [(1 3 1)
125
+ ((seq
126
+ (1 3))
127
+ (cl-lib
128
+ (0 5)))
129
+ "Hunt down errors by bisecting elisp files" single
130
+ ((:url . "https://github.com/Malabarba/elisp-bug-hunter")
131
+ (:keywords "lisp"))])
132
+ (caps-lock .
133
+ [(1 0)
134
+ nil "Caps-lock as a minor mode" single
135
+ ((:url . "http://elpa.gnu.org/packages/caps-lock.html")
136
+ (:keywords))])
137
+ (captain .
138
+ [(1 0 3)
139
+ nil "CAPiTalization is Automatic IN emacs" single
140
+ ((:url . "http://elpa.gnu.org/packages/captain.html")
141
+ (:keywords "editing"))])
142
+ (chess .
143
+ [(2 0 4)
144
+ ((cl-lib
145
+ (0 5)))
146
+ "Play chess in GNU Emacs" tar
147
+ ((:keywords "games")
148
+ (:url . "http://elpa.gnu.org/packages/chess.html"))])
149
+ (cl-generic .
150
+ [(0 3)
151
+ nil "Forward cl-generic compatibility for Emacs<25" single
152
+ ((:url . "http://elpa.gnu.org/packages/cl-generic.html")
153
+ (:keywords))])
154
+ (cl-lib .
155
+ [(0 6 1)
156
+ nil "Properly prefixed CL functions and macros" single
157
+ ((:url . "http://elpa.gnu.org/packages/cl-lib.html")
158
+ (:keywords))])
159
+ (cl-print .
160
+ [(1 0)
161
+ ((emacs
162
+ (25)))
163
+ "CL-style generic printing" single
164
+ ((:url . "http://elpa.gnu.org/packages/cl-print.html")
165
+ (:keywords))])
166
+ (cobol-mode .
167
+ [(1 0 0)
168
+ ((cl-lib
169
+ (0 5)))
170
+ "Mode for editing COBOL code" single
171
+ ((:url . "http://elpa.gnu.org/packages/cobol-mode.html")
172
+ (:keywords "languages"))])
173
+ (coffee-mode .
174
+ [(0 4 1 1)
175
+ nil "Major mode for CoffeeScript files" single
176
+ ((:url . "http://github.com/defunkt/coffee-mode")
177
+ (:keywords "coffeescript" "major" "mode"))])
178
+ (compact-docstrings .
179
+ [(0 1)
180
+ nil "Shrink blank lines in docstrings and doc comments" single
181
+ ((:url . "https://github.com/cpitclaudel/compact-docstrings")
182
+ (:keywords "convenience" "faces" "lisp" "maint" "c"))])
183
+ (company .
184
+ [(0 9 6)
185
+ ((emacs
186
+ (24 3)))
187
+ "Modular text completion framework" tar
188
+ ((:keywords "abbrev" "convenience" "matching")
189
+ (:url . "http://company-mode.github.io/"))])
190
+ (company-ebdb .
191
+ [(1)
192
+ ((company
193
+ (0 9 4))
194
+ (ebdb
195
+ (0 2)))
196
+ "company-mode completion backend for EBDB in message-mode" single
197
+ ((:url . "http://elpa.gnu.org/packages/company-ebdb.html")
198
+ (:keywords))])
199
+ (company-math .
200
+ [(1 1)
201
+ ((company
202
+ (0 8 0))
203
+ (math-symbol-lists
204
+ (1 0)))
205
+ "Completion backends for unicode math symbols and latex tags" tar
206
+ ((:keywords "unicode" "symbols" "completion")
207
+ (:url . "https://github.com/vspinu/company-math"))])
208
+ (company-statistics .
209
+ [(0 2 3)
210
+ ((emacs
211
+ (24 3))
212
+ (company
213
+ (0 8 5)))
214
+ "Sort candidates using completion history" tar
215
+ ((:keywords "abbrev" "convenience" "matching")
216
+ (:url . "https://github.com/company-mode/company-statistics"))])
217
+ (context-coloring .
218
+ [(8 1 0)
219
+ ((emacs
220
+ (24 3)))
221
+ "Highlight by scope" tar
222
+ ((:keywords "convenience" "faces" "tools")
223
+ (:url . "https://github.com/jacksonrayhamilton/context-coloring"))])
224
+ (counsel-ebdb .
225
+ [(1)
226
+ ((ivy
227
+ (0 8 0))
228
+ (ebdb
229
+ (0 2)))
230
+ "Counsel integration for EBDB" single
231
+ ((:url . "http://elpa.gnu.org/packages/counsel-ebdb.html")
232
+ (:keywords))])
233
+ (crisp .
234
+ [(1 3 4)
235
+ nil "CRiSP/Brief Emacs emulator" single
236
+ ((:url . "http://elpa.gnu.org/packages/crisp.html")
237
+ (:keywords "emulations" "brief" "crisp"))])
238
+ (csv-mode .
239
+ [(1 7)
240
+ nil "Major mode for editing comma/char separated values" single
241
+ ((:url . "http://elpa.gnu.org/packages/csv-mode.html")
242
+ (:keywords "convenience"))])
243
+ (cycle-quotes .
244
+ [(0 1)
245
+ nil "Cycle between quote styles" tar
246
+ ((:keywords "convenience")
247
+ (:url . "http://elpa.gnu.org/packages/cycle-quotes.html"))])
248
+ (darkroom .
249
+ [(0 1)
250
+ ((cl-lib
251
+ (0 5)))
252
+ "Remove visual distractions and focus on writing" single
253
+ ((:url . "http://elpa.gnu.org/packages/darkroom.html")
254
+ (:keywords "convenience" "emulations"))])
255
+ (dash .
256
+ [(2 12 0)
257
+ nil "A modern list library for Emacs" tar
258
+ ((:keywords "lists")
259
+ (:url . "http://elpa.gnu.org/packages/dash.html"))])
260
+ (dbus-codegen .
261
+ [(0 1)
262
+ ((cl-lib
263
+ (0 5)))
264
+ "Lisp code generation for D-Bus." single
265
+ ((:url . "http://elpa.gnu.org/packages/dbus-codegen.html")
266
+ (:keywords "comm" "dbus" "convenience"))])
267
+ (debbugs .
268
+ [(0 15)
269
+ ((soap-client
270
+ (3 1 1))
271
+ (cl-lib
272
+ (0 5)))
273
+ "SOAP library to access debbugs servers" tar
274
+ ((:keywords "comm" "hypermedia")
275
+ (:url . "http://elpa.gnu.org/packages/debbugs.html"))])
276
+ (delight .
277
+ [(1 5)
278
+ nil "A dimmer switch for your lighter text." single
279
+ ((:url . "https://savannah.nongnu.org/projects/delight")
280
+ (:keywords "convenience"))])
281
+ (dict-tree .
282
+ [(0 14)
283
+ ((trie
284
+ (0 3))
285
+ (tNFA
286
+ (0 1 1))
287
+ (heap
288
+ (0 3)))
289
+ "Dictionary data structure" single
290
+ ((:url . "http://www.dr-qubit.org/emacs.php")
291
+ (:keywords "extensions" "matching" "data structures trie" "tree" "dictionary" "completion" "regexp"))])
292
+ (diff-hl .
293
+ [(1 8 4)
294
+ ((cl-lib
295
+ (0 2)))
296
+ "Highlight uncommitted changes using VC" tar
297
+ ((:keywords "vc" "diff")
298
+ (:url . "https://github.com/dgutov/diff-hl"))])
299
+ (diffview .
300
+ [(1 0)
301
+ nil "View diffs in side-by-side format" single
302
+ ((:url . "https://github.com/mgalgs/diffview-mode")
303
+ (:keywords "convenience" "diff"))])
304
+ (dired-du .
305
+ [(0 5)
306
+ ((emacs
307
+ (24 4))
308
+ (cl-lib
309
+ (0 5)))
310
+ "Dired with recursive directory sizes" tar
311
+ ((:keywords "files" "unix" "convenience")
312
+ (:url . "http://elpa.gnu.org/packages/dired-du.html"))])
313
+ (dismal .
314
+ [(1 5)
315
+ ((cl-lib
316
+ (0)))
317
+ "Dis Mode Ain't Lotus: Spreadsheet program Emacs" tar
318
+ ((:url . "http://elpa.gnu.org/packages/dismal.html"))])
319
+ (djvu .
320
+ [(0 5)
321
+ nil "Edit and view Djvu files via djvused" single
322
+ ((:url . "http://elpa.gnu.org/packages/djvu.html")
323
+ (:keywords "files" "wp"))])
324
+ (docbook .
325
+ [(0 1)
326
+ nil "Info-like viewer for DocBook" single
327
+ ((:url . "http://elpa.gnu.org/packages/docbook.html")
328
+ (:keywords "docs" "help"))])
329
+ (dts-mode .
330
+ [(0 1 0)
331
+ nil "Major mode for Device Tree source files" single
332
+ ((:url . "http://elpa.gnu.org/packages/dts-mode.html")
333
+ (:keywords "languages"))])
334
+ (easy-kill .
335
+ [(0 9 3)
336
+ ((emacs
337
+ (24))
338
+ (cl-lib
339
+ (0 5)))
340
+ "kill & mark things easily" tar
341
+ ((:keywords "killing" "convenience")
342
+ (:url . "https://github.com/leoliu/easy-kill"))])
343
+ (ebdb .
344
+ [(0 4 3)
345
+ ((emacs
346
+ (25 1))
347
+ (cl-lib
348
+ (0 5))
349
+ (seq
350
+ (2 15)))
351
+ "Contact management package" tar
352
+ ((:keywords "convenience" "mail")
353
+ (:url . "https://github.com/girzel/ebdb"))])
354
+ (ebdb-gnorb .
355
+ [(1 0 2)
356
+ ((gnorb
357
+ (1 1 0))
358
+ (ebdb
359
+ (0 2)))
360
+ "Utilities for connecting EBDB to Gnorb" single
361
+ ((:url . "http://elpa.gnu.org/packages/ebdb-gnorb.html")
362
+ (:keywords))])
363
+ (ebdb-i18n-chn .
364
+ [(1 2)
365
+ ((pyim
366
+ (1 6 0))
367
+ (ebdb
368
+ (0 2)))
369
+ "China-specific internationalization support for EBDB" single
370
+ ((:url . "http://elpa.gnu.org/packages/ebdb-i18n-chn.html")
371
+ (:keywords))])
372
+ (ediprolog .
373
+ [(1 2)
374
+ nil "Emacs Does Interactive Prolog" single
375
+ ((:url . "http://elpa.gnu.org/packages/ediprolog.html")
376
+ (:keywords "languages" "processes"))])
377
+ (el-search .
378
+ [(1 6 3)
379
+ ((emacs
380
+ (25))
381
+ (stream
382
+ (2 2 4))
383
+ (cl-print
384
+ (1 0)))
385
+ "Expression based interactive search for Emacs Lisp" tar
386
+ ((:keywords "lisp")
387
+ (:url . "http://elpa.gnu.org/packages/el-search.html"))])
388
+ (eldoc-eval .
389
+ [(0 1)
390
+ nil "Enable eldoc support when minibuffer is in use." single
391
+ ((:url . "http://elpa.gnu.org/packages/eldoc-eval.html")
392
+ (:keywords))])
393
+ (electric-spacing .
394
+ [(5 0)
395
+ nil "Insert operators with surrounding spaces smartly" single
396
+ ((:url . "http://elpa.gnu.org/packages/electric-spacing.html")
397
+ (:keywords))])
398
+ (enwc .
399
+ [(2 0)
400
+ ((emacs
401
+ (25 1)))
402
+ "The Emacs Network Client" tar
403
+ ((:keywords "external" "network" "wicd" "manager" "nm")
404
+ (:url . "http://elpa.gnu.org/packages/enwc.html"))])
405
+ (epoch-view .
406
+ [(0 0 1)
407
+ nil "Minor mode to visualize epoch timestamps" single
408
+ ((:url . "http://elpa.gnu.org/packages/epoch-view.html")
409
+ (:keywords "data" "timestamp" "epoch" "unix"))])
410
+ (ergoemacs-mode .
411
+ [(5 14 7 3)
412
+ ((emacs
413
+ (24 1))
414
+ (undo-tree
415
+ (0 6 5)))
416
+ "Emacs mode based on common modern interface and ergonomics." tar
417
+ ((:keywords "convenience")
418
+ (:url . "https://github.com/ergoemacs/ergoemacs-mode"))])
419
+ (excorporate .
420
+ [(0 7 6)
421
+ ((emacs
422
+ (24 1))
423
+ (fsm
424
+ (0 2))
425
+ (soap-client
426
+ (3 1 1))
427
+ (url-http-ntlm
428
+ (2 0 3)))
429
+ "Exchange integration" tar
430
+ ((:keywords "calendar")
431
+ (:url . "http://elpa.gnu.org/packages/excorporate.html"))])
432
+ (exwm .
433
+ [(0 18)
434
+ ((xelb
435
+ (0 14)))
436
+ "Emacs X Window Manager" tar
437
+ ((:keywords "unix")
438
+ (:url . "https://github.com/ch11ng/exwm"))])
439
+ (f90-interface-browser .
440
+ [(1 1)
441
+ nil "Parse and browse f90 interfaces" single
442
+ ((:url . "http://github.com/wence-/f90-iface/")
443
+ (:keywords))])
444
+ (flylisp .
445
+ [(0 2)
446
+ ((emacs
447
+ (24 1))
448
+ (cl-lib
449
+ (0 4)))
450
+ "Color unbalanced parentheses and parentheses inconsistent with indentation" single
451
+ ((:url . "http://elpa.gnu.org/packages/flylisp.html")
452
+ (:keywords))])
453
+ (fsm .
454
+ [(0 2 1)
455
+ ((emacs
456
+ (24 1))
457
+ (cl-lib
458
+ (0 5)))
459
+ "state machine library" single
460
+ ((:url . "http://elpa.gnu.org/packages/fsm.html")
461
+ (:keywords "extensions"))])
462
+ (ggtags .
463
+ [(0 8 12)
464
+ ((emacs
465
+ (24))
466
+ (cl-lib
467
+ (0 5)))
468
+ "emacs frontend to GNU Global source code tagging system" single
469
+ ((:url . "https://github.com/leoliu/ggtags")
470
+ (:keywords "tools" "convenience"))])
471
+ (gited .
472
+ [(0 4 1)
473
+ ((emacs
474
+ (24 4))
475
+ (cl-lib
476
+ (0 5)))
477
+ "Operate on Git branches like dired" tar
478
+ ((:keywords "git" "vc" "convenience")
479
+ (:url . "http://elpa.gnu.org/packages/gited.html"))])
480
+ (gle-mode .
481
+ [(1 1)
482
+ ((cl-lib
483
+ (0 5)))
484
+ "Major mode to edit Graphics Layout Engine files" single
485
+ ((:url . "http://elpa.gnu.org/packages/gle-mode.html")
486
+ (:keywords))])
487
+ (gnome-c-style .
488
+ [(0 1)
489
+ nil "minor mode for editing GNOME-style C source code" tar
490
+ ((:keywords "gnome" "c" "coding style")
491
+ (:url . "http://elpa.gnu.org/packages/gnome-c-style.html"))])
492
+ (gnorb .
493
+ [(1 4 2)
494
+ ((cl-lib
495
+ (0 5)))
496
+ "Glue code between Gnus, Org, and BBDB" tar
497
+ ((:keywords "mail" "org" "gnus" "bbdb" "todo" "task")
498
+ (:url . "http://elpa.gnu.org/packages/gnorb.html"))])
499
+ (gnugo .
500
+ [(3 1 0)
501
+ ((ascii-art-to-unicode
502
+ (1 5))
503
+ (xpm
504
+ (1 0 1))
505
+ (cl-lib
506
+ (0 5)))
507
+ "play GNU Go in a buffer" tar
508
+ ((:keywords "games" "processes")
509
+ (:url . "http://www.gnuvola.org/software/gnugo/"))])
510
+ (heap .
511
+ [(0 5)
512
+ nil "Heap (a.k.a. priority queue) data structure" single
513
+ ((:url . "http://www.dr-qubit.org/emacs.php")
514
+ (:keywords "extensions" "data structures" "heap" "priority queue"))])
515
+ (helm-ebdb .
516
+ [(1)
517
+ ((helm
518
+ (1 0))
519
+ (ebdb
520
+ (0 2)))
521
+ "Helm integration for EBDB" single
522
+ ((:url . "http://elpa.gnu.org/packages/helm-ebdb.html")
523
+ (:keywords "mail" "convenience"))])
524
+ (highlight-escape-sequences .
525
+ [(0 3)
526
+ nil "Highlight escape sequences" single
527
+ ((:url . "https://github.com/dgutov/highlight-escape-sequences")
528
+ (:keywords "convenience"))])
529
+ (hook-helpers .
530
+ [(1 1 1)
531
+ ((emacs
532
+ (25 1)))
533
+ "Anonymous, modifiable hook functions" tar
534
+ ((:keywords "development" "hooks")
535
+ (:url . "https://savannah.nongnu.org/projects/hook-helpers-el/"))])
536
+ (html5-schema .
537
+ [(0 1)
538
+ nil "Add HTML5 schemas for use by nXML" tar
539
+ ((:keywords "html" "xml")
540
+ (:url . "https://github.com/validator/validator"))])
541
+ (hydra .
542
+ [(0 14 0)
543
+ ((cl-lib
544
+ (0 5)))
545
+ "Make bindings that stick around." tar
546
+ ((:keywords "bindings")
547
+ (:url . "https://github.com/abo-abo/hydra"))])
548
+ (hyperbole .
549
+ [(7 0 2)
550
+ ((emacs
551
+ (24 4)))
552
+ "GNU Hyperbole: The Everyday Hypertextual Information Manager" tar
553
+ ((:keywords "comm" "convenience" "files" "frames" "hypermedia" "languages" "mail" "matching" "mouse" "multimedia" "outlines" "tools" "wp")
554
+ (:url . "http://www.gnu.org/software/hyperbole"))])
555
+ (ioccur .
556
+ [(2 4)
557
+ nil "Incremental occur" single
558
+ ((:url . "http://elpa.gnu.org/packages/ioccur.html")
559
+ (:keywords))])
560
+ (iterators .
561
+ [(0 1 1)
562
+ ((emacs
563
+ (25)))
564
+ "Functions for working with iterators" single
565
+ ((:url . "http://elpa.gnu.org/packages/iterators.html")
566
+ (:keywords "extensions" "elisp"))])
567
+ (ivy .
568
+ [(0 10 0)
569
+ ((emacs
570
+ (24 1)))
571
+ "Incremental Vertical completYon" tar
572
+ ((:keywords "matching")
573
+ (:url . "https://github.com/abo-abo/swiper"))])
574
+ (javaimp .
575
+ [(0 6)
576
+ nil "Add and reorder Java import statements in Maven projects" tar
577
+ ((:keywords "java" "maven" "programming")
578
+ (:url . "http://elpa.gnu.org/packages/javaimp.html"))])
579
+ (jgraph-mode .
580
+ [(1 1)
581
+ ((cl-lib
582
+ (0 5)))
583
+ "Major mode for Jgraph files" single
584
+ ((:url . "http://elpa.gnu.org/packages/jgraph-mode.html")
585
+ (:keywords "tex" "wp"))])
586
+ (js2-mode .
587
+ [(20180301)
588
+ ((emacs
589
+ (24 1))
590
+ (cl-lib
591
+ (0 5)))
592
+ "Improved JavaScript editing mode" tar
593
+ ((:keywords "languages" "javascript")
594
+ (:url . "https://github.com/mooz/js2-mode/"))])
595
+ (json-mode .
596
+ [(0 1)
597
+ ((emacs
598
+ (25 1)))
599
+ "Major mode for editing JSON files" single
600
+ ((:url . "http://elpa.gnu.org/packages/json-mode.html")
601
+ (:keywords "data"))])
602
+ (jumpc .
603
+ [(3 0)
604
+ nil "jump to previous insertion points" single
605
+ ((:url . "http://elpa.gnu.org/packages/jumpc.html")
606
+ (:keywords))])
607
+ (kmb .
608
+ [(0 1)
609
+ ((emacs
610
+ (24 1)))
611
+ "Kill buffers matching a regexp w/o confirmation" single
612
+ ((:url . "http://elpa.gnu.org/packages/kmb.html")
613
+ (:keywords "lisp" "convenience"))])
614
+ (landmark .
615
+ [(1 0)
616
+ nil "Neural-network robot that learns landmarks" single
617
+ ((:url . "http://elpa.gnu.org/packages/landmark.html")
618
+ (:keywords "games" "neural network" "adaptive search" "chemotaxis"))])
619
+ (let-alist .
620
+ [(1 0 5)
621
+ ((emacs
622
+ (24 1)))
623
+ "Easily let-bind values of an assoc-list by their names" single
624
+ ((:url . "http://elpa.gnu.org/packages/let-alist.html")
625
+ (:keywords "extensions" "lisp"))])
626
+ (lex .
627
+ [(1 1)
628
+ nil "Lexical analyser construction" tar
629
+ ((:url . "http://elpa.gnu.org/packages/lex.html"))])
630
+ (lmc .
631
+ [(1 4)
632
+ ((emacs
633
+ (24))
634
+ (cl-lib
635
+ (0 5)))
636
+ "Little Man Computer in Elisp" single
637
+ ((:url . "http://elpa.gnu.org/packages/lmc.html")
638
+ (:keywords))])
639
+ (load-dir .
640
+ [(0 0 5)
641
+ ((cl-lib
642
+ (0 5)))
643
+ "Load all Emacs Lisp files in a given directory" single
644
+ ((:url . "http://elpa.gnu.org/packages/load-dir.html")
645
+ (:keywords "lisp" "files" "convenience"))])
646
+ (load-relative .
647
+ [(1 3)
648
+ nil "relative file load (within a multi-file Emacs package)" single
649
+ ((:url . "http://github.com/rocky/emacs-load-relative")
650
+ (:keywords "internal"))])
651
+ (loc-changes .
652
+ [(1 2)
653
+ nil "keep track of positions even after buffer changes" single
654
+ ((:url . "http://github.com/rocky/emacs-loc-changes")
655
+ (:keywords))])
656
+ (loccur .
657
+ [(1 2 3)
658
+ ((cl-lib
659
+ (0)))
660
+ "Perform an occur-like folding in current buffer" single
661
+ ((:url . "https://github.com/fourier/loccur")
662
+ (:keywords "matching"))])
663
+ (markchars .
664
+ [(0 2 0)
665
+ nil "Mark chars fitting certain characteristics" single
666
+ ((:url . "http://elpa.gnu.org/packages/markchars.html")
667
+ (:keywords))])
668
+ (math-symbol-lists .
669
+ [(1 1)
670
+ nil "Lists of Unicode math symbols and latex commands" tar
671
+ ((:keywords "unicode" "symbols" "mathematics")
672
+ (:url . "https://github.com/vspinu/math-symbol-lists"))])
673
+ (memory-usage .
674
+ [(0 2)
675
+ nil "Analyze the memory usage of Emacs in various ways" single
676
+ ((:url . "http://elpa.gnu.org/packages/memory-usage.html")
677
+ (:keywords "maint"))])
678
+ (metar .
679
+ [(0 3)
680
+ ((cl-lib
681
+ (0 5)))
682
+ "Retrieve and decode METAR weather information" single
683
+ ((:url . "http://elpa.gnu.org/packages/metar.html")
684
+ (:keywords "comm"))])
685
+ (midi-kbd .
686
+ [(0 2)
687
+ ((emacs
688
+ (25)))
689
+ "Create keyboard events from Midi input" single
690
+ ((:url . "http://elpa.gnu.org/packages/midi-kbd.html")
691
+ (:keywords "convenience" "hardware" "multimedia"))])
692
+ (mines .
693
+ [(1 6)
694
+ ((emacs
695
+ (24 4))
696
+ (cl-lib
697
+ (0 5)))
698
+ "Minesweeper game" tar
699
+ ((:keywords "games")
700
+ (:url . "https://github.com/calancha/Minesweeper"))])
701
+ (minibuffer-line .
702
+ [(0 1)
703
+ nil "Display status info in the minibuffer window" single
704
+ ((:url . "http://elpa.gnu.org/packages/minibuffer-line.html")
705
+ (:keywords))])
706
+ (minimap .
707
+ [(1 2)
708
+ nil "Sidebar showing a \"mini-map\" of a buffer" single
709
+ ((:url . "http://elpa.gnu.org/packages/minimap.html")
710
+ (:keywords))])
711
+ (mmm-mode .
712
+ [(0 5 6)
713
+ ((cl-lib
714
+ (0 2)))
715
+ "Allow Multiple Major Modes in a buffer" tar
716
+ ((:keywords "convenience" "faces" "languages" "tools")
717
+ (:url . "https://github.com/purcell/mmm-mode"))])
718
+ (multishell .
719
+ [(1 1 5)
720
+ ((cl-lib
721
+ (0 5)))
722
+ "Easily use multiple shell buffers, local and remote" tar
723
+ ((:keywords "processes")
724
+ (:url . "https://github.com/kenmanheimer/EmacsMultishell"))])
725
+ (muse .
726
+ [(3 20 2)
727
+ nil "Authoring and publishing tool for Emacs" tar
728
+ ((:keywords "hypermedia")
729
+ (:url . "http://mwolson.org/projects/EmacsMuse.html"))])
730
+ (myers .
731
+ [(0 1)
732
+ ((emacs
733
+ (25)))
734
+ "Random-access singly-linked lists" single
735
+ ((:url . "http://elpa.gnu.org/packages/myers.html")
736
+ (:keywords "list" "containers"))])
737
+ (nameless .
738
+ [(1 0 2)
739
+ ((emacs
740
+ (24 4)))
741
+ "Hide package namespace in your emacs-lisp code" single
742
+ ((:url . "https://github.com/Malabarba/nameless")
743
+ (:keywords "convenience" "lisp"))])
744
+ (names .
745
+ [(20151201 0)
746
+ ((emacs
747
+ (24 1))
748
+ (cl-lib
749
+ (0 5)))
750
+ "Namespaces for emacs-lisp. Avoid name clobbering without hiding symbols." tar
751
+ ((:keywords "extensions" "lisp")
752
+ (:url . "https://github.com/Malabarba/names"))])
753
+ (nhexl-mode .
754
+ [(0 2)
755
+ ((emacs
756
+ (24))
757
+ (cl-lib
758
+ (0 5)))
759
+ "Minor mode to edit files via hex-dump format" single
760
+ ((:url . "http://elpa.gnu.org/packages/nhexl-mode.html")
761
+ (:keywords "data"))])
762
+ (nlinum .
763
+ [(1 8 1)
764
+ nil "Show line numbers in the margin" single
765
+ ((:url . "http://elpa.gnu.org/packages/nlinum.html")
766
+ (:keywords "convenience"))])
767
+ (notes-mode .
768
+ [(1 30)
769
+ nil "Indexing system for on-line note-taking" tar
770
+ ((:url . "http://elpa.gnu.org/packages/notes-mode.html"))])
771
+ (ntlm .
772
+ [(2 1 0)
773
+ nil "NTLM (NT LanManager) authentication support" single
774
+ ((:url . "http://elpa.gnu.org/packages/ntlm.html")
775
+ (:keywords "ntlm" "sasl" "comm"))])
776
+ (num3-mode .
777
+ [(1 2)
778
+ nil "highlight groups of digits in long numbers" single
779
+ ((:url . "http://elpa.gnu.org/packages/num3-mode.html")
780
+ (:keywords "faces" "minor-mode"))])
781
+ (oauth2 .
782
+ [(0 11)
783
+ nil "OAuth 2.0 Authorization Protocol" single
784
+ ((:url . "http://elpa.gnu.org/packages/oauth2.html")
785
+ (:keywords "comm"))])
786
+ (omn-mode .
787
+ [(1 2)
788
+ nil "Support for OWL Manchester Notation" single
789
+ ((:url . "http://elpa.gnu.org/packages/omn-mode.html")
790
+ (:keywords))])
791
+ (on-screen .
792
+ [(1 3 2)
793
+ ((cl-lib
794
+ (0)))
795
+ "guide your eyes while scrolling" single
796
+ ((:url . "https://github.com/michael-heerdegen/on-screen.el")
797
+ (:keywords "convenience"))])
798
+ (org .
799
+ [(9 1 9)
800
+ nil "Outline-based notes management and organizer" tar
801
+ ((:keywords "outlines" "hypermedia" "calendar" "wp")
802
+ (:url . "http://elpa.gnu.org/packages/org.html"))])
803
+ (org-edna .
804
+ [(1 0 -2 6)
805
+ ((emacs
806
+ (25 1))
807
+ (seq
808
+ (2 19))
809
+ (org
810
+ (9 0 5)))
811
+ "Extensible Dependencies 'N' Actions" tar
812
+ ((:keywords "convenience" "text" "org")
813
+ (:url . "https://savannah.nongnu.org/projects/org-edna-el/"))])
814
+ (osc .
815
+ [(0 1)
816
+ nil "Open Sound Control protocol library" single
817
+ ((:url . "http://elpa.gnu.org/packages/osc.html")
818
+ (:keywords "comm" "processes" "multimedia"))])
819
+ (other-frame-window .
820
+ [(1 0 4)
821
+ ((emacs
822
+ (24 4)))
823
+ "Minor mode to enable global prefix keys for other frame/window buffer placement" single
824
+ ((:url . "http://elpa.gnu.org/packages/other-frame-window.html")
825
+ (:keywords "frame" "window"))])
826
+ (pabbrev .
827
+ [(4 2 1)
828
+ nil "Predictive abbreviation expansion" single
829
+ ((:url . "http://elpa.gnu.org/packages/pabbrev.html")
830
+ (:keywords))])
831
+ (paced .
832
+ [(1 1 3)
833
+ ((emacs
834
+ (25 1))
835
+ (async
836
+ (1 9 1)))
837
+ "Predictive Abbreviation Completion and Expansion using Dictionaries" tar
838
+ ((:keywords "convenience" "completion")
839
+ (:url . "https://savannah.nongnu.org/projects/paced-el/"))])
840
+ (parsec .
841
+ [(0 1 3)
842
+ ((emacs
843
+ (24))
844
+ (cl-lib
845
+ (0 5)))
846
+ "Parser combinator library" tar
847
+ ((:keywords "extensions")
848
+ (:url . "https://github.com/cute-jumper/parsec.el"))])
849
+ (pinentry .
850
+ [(0 1)
851
+ nil "GnuPG Pinentry server implementation" single
852
+ ((:url . "http://elpa.gnu.org/packages/pinentry.html")
853
+ (:keywords "gnupg"))])
854
+ (poker .
855
+ [(0 2)
856
+ nil "Texas hold 'em poker" single
857
+ ((:url . "http://elpa.gnu.org/packages/poker.html")
858
+ (:keywords "games"))])
859
+ (posframe .
860
+ [(0 3 0)
861
+ ((emacs
862
+ (26)))
863
+ "Pop a posframe (just a frame) at point" single
864
+ ((:url . "https://github.com/tumashu/posframe")
865
+ (:keywords "tooltip"))])
866
+ (psgml .
867
+ [(1 3 4)
868
+ nil "SGML-editing mode with parsing support" tar
869
+ ((:keywords "languages")
870
+ (:url . "http://elpa.gnu.org/packages/psgml.html"))])
871
+ (python .
872
+ [(0 26 1)
873
+ ((emacs
874
+ (24 1))
875
+ (cl-lib
876
+ (1 0)))
877
+ "Python's flying circus support for Emacs" single
878
+ ((:url . "https://github.com/fgallina/python.el")
879
+ (:keywords "languages"))])
880
+ (quarter-plane .
881
+ [(0 1)
882
+ nil "Minor mode for quarter-plane style editing" single
883
+ ((:url . "http://elpa.gnu.org/packages/quarter-plane.html")
884
+ (:keywords "convenience" "wp"))])
885
+ (queue .
886
+ [(0 2)
887
+ nil "Queue data structure" single
888
+ ((:url . "http://www.dr-qubit.org/emacs.php")
889
+ (:keywords "extensions" "data structures" "queue"))])
890
+ (rainbow-mode .
891
+ [(1 0)
892
+ nil "Colorize color names in buffers" single
893
+ ((:url . "http://elpa.gnu.org/packages/rainbow-mode.html")
894
+ (:keywords "faces"))])
895
+ (rbit .
896
+ [(0 1)
897
+ nil "Red-black persistent interval trees" single
898
+ ((:url . "http://elpa.gnu.org/packages/rbit.html")
899
+ (:keywords "data structures" "binary tree" "intervals"))])
900
+ (rcirc-color .
901
+ [(0 3)
902
+ nil "color nicks" single
903
+ ((:url . "http://elpa.gnu.org/packages/rcirc-color.html")
904
+ (:keywords "comm"))])
905
+ (rcirc-menu .
906
+ [(1 1)
907
+ nil "A menu of all your rcirc connections" single
908
+ ((:url . "http://elpa.gnu.org/packages/rcirc-menu.html")
909
+ (:keywords "comm"))])
910
+ (realgud .
911
+ [(1 4 5)
912
+ ((load-relative
913
+ (1 2))
914
+ (loc-changes
915
+ (1 2))
916
+ (test-simple
917
+ (1 2 0))
918
+ (cl-lib
919
+ (0 5))
920
+ (emacs
921
+ (24)))
922
+ "A modular front-end for interacting with external debuggers" tar
923
+ ((:keywords "gdb" "python" "perl" "go" "bash" "nodejs" "zsh" "bashdb" "zshdb" "remake" "make" "trepan" "perldb" "pdb")
924
+ (:url . "http://github.com/realgud/realgud/"))])
925
+ (register-list .
926
+ [(0 1)
927
+ nil "Interactively list/edit registers" single
928
+ ((:url . "http://elpa.gnu.org/packages/register-list.html")
929
+ (:keywords "register"))])
930
+ (rich-minority .
931
+ [(1 0 1)
932
+ ((cl-lib
933
+ (0 5)))
934
+ "Clean-up and Beautify the list of minor-modes." single
935
+ ((:url . "https://github.com/Malabarba/rich-minority")
936
+ (:keywords "mode-line" "faces"))])
937
+ (rnc-mode .
938
+ [(0 2)
939
+ nil "Emacs mode to edit Relax-NG Compact files" single
940
+ ((:url . "http://elpa.gnu.org/packages/rnc-mode.html")
941
+ (:keywords "xml" "relaxng"))])
942
+ (rudel .
943
+ [(0 3 1)
944
+ ((emacs
945
+ (24))
946
+ (cl-lib
947
+ (0 5))
948
+ (cl-generic
949
+ (0 3)))
950
+ "A collaborative editing framework for Emacs" tar
951
+ ((:keywords "rudel" "collaboration")
952
+ (:url . "http://rudel.sourceforge.net/"))])
953
+ (scroll-restore .
954
+ [(1 0)
955
+ nil "restore original position after scrolling" single
956
+ ((:url . "http://elpa.gnu.org/packages/scroll-restore.html")
957
+ (:keywords "scrolling"))])
958
+ (sed-mode .
959
+ [(1 0)
960
+ nil "Major mode to edit sed scripts" single
961
+ ((:url . "http://elpa.gnu.org/packages/sed-mode.html")
962
+ (:keywords))])
963
+ (seq .
964
+ [(2 20)
965
+ nil "Sequence manipulation functions" tar
966
+ ((:keywords "sequences")
967
+ (:url . "http://elpa.gnu.org/packages/seq.html"))])
968
+ (shen-mode .
969
+ [(0 1)
970
+ nil "A major mode for editing shen source code" tar
971
+ ((:keywords "languages" "shen")
972
+ (:url . "http://elpa.gnu.org/packages/shen-mode.html"))])
973
+ (sisu-mode .
974
+ [(7 1 8)
975
+ nil "Major mode for SiSU markup text" single
976
+ ((:url . "http://www.sisudoc.org/")
977
+ (:keywords "text" "syntax" "processes" "tools"))])
978
+ (smart-yank .
979
+ [(0 1 1)
980
+ ((emacs
981
+ (24)))
982
+ "A different approach of yank pointer handling" single
983
+ ((:url . "http://elpa.gnu.org/packages/smart-yank.html")
984
+ (:keywords "convenience"))])
985
+ (sml-mode .
986
+ [(6 8)
987
+ ((emacs
988
+ (24))
989
+ (cl-lib
990
+ (0 5)))
991
+ "Major mode for editing (Standard) ML" single
992
+ ((:url . "http://elpa.gnu.org/packages/sml-mode.html")
993
+ (:keywords "sml"))])
994
+ (soap-client .
995
+ [(3 1 3)
996
+ ((cl-lib
997
+ (0 6 1)))
998
+ "Access SOAP web services" tar
999
+ ((:keywords "soap" "web-services" "comm" "hypermedia")
1000
+ (:url . "http://elpa.gnu.org/packages/soap-client.html"))])
1001
+ (sokoban .
1002
+ [(1 4 6)
1003
+ ((emacs
1004
+ (23 1)))
1005
+ "Implementation of Sokoban for Emacs." tar
1006
+ ((:keywords "games")
1007
+ (:url . "http://elpa.gnu.org/packages/sokoban.html"))])
1008
+ (sotlisp .
1009
+ [(1 6 2)
1010
+ ((emacs
1011
+ (24 1)))
1012
+ "Write lisp at the speed of thought." single
1013
+ ((:url . "https://github.com/Malabarba/speed-of-thought-lisp")
1014
+ (:keywords "convenience" "lisp"))])
1015
+ (spinner .
1016
+ [(1 7 3)
1017
+ nil "Add spinners and progress-bars to the mode-line for ongoing operations" single
1018
+ ((:url . "https://github.com/Malabarba/spinner.el")
1019
+ (:keywords "processes" "mode-line"))])
1020
+ (sql-indent .
1021
+ [(1 1)
1022
+ nil "Support for indenting code in SQL files." tar
1023
+ ((:keywords "languages" "sql")
1024
+ (:url . "http://elpa.gnu.org/packages/sql-indent.html"))])
1025
+ (stream .
1026
+ [(2 2 4)
1027
+ ((emacs
1028
+ (25)))
1029
+ "Implementation of streams" tar
1030
+ ((:keywords "stream" "laziness" "sequences")
1031
+ (:url . "http://elpa.gnu.org/packages/stream.html"))])
1032
+ (svg .
1033
+ [(0 1)
1034
+ ((emacs
1035
+ (25)))
1036
+ "svg image creation functions" single
1037
+ ((:url . "http://elpa.gnu.org/packages/svg.html")
1038
+ (:keywords "image"))])
1039
+ (svg-clock .
1040
+ [(1 0)
1041
+ ((svg
1042
+ (0 1))
1043
+ (emacs
1044
+ (25 0)))
1045
+ "Analog clock using Scalable Vector Graphics" single
1046
+ ((:url . "http://elpa.gnu.org/packages/svg-clock.html")
1047
+ (:keywords "demo" "svg" "clock"))])
1048
+ (tNFA .
1049
+ [(0 1 1)
1050
+ ((queue
1051
+ (0 1)))
1052
+ "Tagged non-deterministic finite-state automata" single
1053
+ ((:url . "http://www.dr-qubit.org/emacs.php")
1054
+ (:keywords "extensions" "matching" "data structures tnfa" "nfa" "dfa" "finite state automata" "automata" "regexp"))])
1055
+ (temp-buffer-browse .
1056
+ [(1 5)
1057
+ ((emacs
1058
+ (24)))
1059
+ "temp buffer browse mode" single
1060
+ ((:url . "http://elpa.gnu.org/packages/temp-buffer-browse.html")
1061
+ (:keywords "convenience"))])
1062
+ (test-simple .
1063
+ [(1 3 0)
1064
+ ((cl-lib
1065
+ (0)))
1066
+ "Simple Unit Test Framework for Emacs Lisp" single
1067
+ ((:url . "http://github.com/rocky/emacs-test-simple")
1068
+ (:keywords "unit-test"))])
1069
+ (timerfunctions .
1070
+ [(1 4 2)
1071
+ ((cl-lib
1072
+ (0 5)))
1073
+ "Enhanced versions of some timer.el functions" single
1074
+ ((:url . "http://elpa.gnu.org/packages/timerfunctions.html")
1075
+ (:keywords))])
1076
+ (tiny .
1077
+ [(0 2 1)
1078
+ nil "Quickly generate linear ranges in Emacs" tar
1079
+ ((:keywords "convenience")
1080
+ (:url . "https://github.com/abo-abo/tiny"))])
1081
+ (tramp-theme .
1082
+ [(0 2)
1083
+ ((emacs
1084
+ (24 1)))
1085
+ "Custom theme for remote buffers" single
1086
+ ((:url . "http://elpa.gnu.org/packages/tramp-theme.html")
1087
+ (:keywords "convenience" "faces"))])
1088
+ (transcribe .
1089
+ [(1 5 2)
1090
+ nil "Package for audio transcriptions" single
1091
+ ((:url . "http://elpa.gnu.org/packages/transcribe.html")
1092
+ (:keywords))])
1093
+ (trie .
1094
+ [(0 4)
1095
+ ((tNFA
1096
+ (0 1 1))
1097
+ (heap
1098
+ (0 3)))
1099
+ "Trie data structure" single
1100
+ ((:url . "http://www.dr-qubit.org/emacs.php")
1101
+ (:keywords "extensions" "matching" "data structures trie" "ternary search tree" "tree" "completion" "regexp"))])
1102
+ (undo-tree .
1103
+ [(0 6 5)
1104
+ nil "Treat undo history as a tree" single
1105
+ ((:url . "http://www.dr-qubit.org/emacs.php")
1106
+ (:keywords "convenience" "files" "undo" "redo" "history" "tree"))])
1107
+ (uni-confusables .
1108
+ [(0 1)
1109
+ nil "Unicode confusables table" tar
1110
+ ((:url . "http://elpa.gnu.org/packages/uni-confusables.html"))])
1111
+ (url-http-ntlm .
1112
+ [(2 0 4)
1113
+ ((cl-lib
1114
+ (0 5))
1115
+ (ntlm
1116
+ (2 1 0)))
1117
+ "NTLM authentication for the url library" single
1118
+ ((:url . "http://elpa.gnu.org/packages/url-http-ntlm.html")
1119
+ (:keywords "comm" "data" "processes" "hypermedia"))])
1120
+ (validate .
1121
+ [(1 0 4)
1122
+ ((emacs
1123
+ (24 1))
1124
+ (cl-lib
1125
+ (0 5))
1126
+ (seq
1127
+ (2 16)))
1128
+ "Schema validation for Emacs-lisp" single
1129
+ ((:url . "http://elpa.gnu.org/packages/validate.html")
1130
+ (:keywords "lisp"))])
1131
+ (vdiff .
1132
+ [(0 2 3)
1133
+ ((emacs
1134
+ (24 4))
1135
+ (hydra
1136
+ (0 13 0)))
1137
+ "A diff tool similar to vimdiff" single
1138
+ ((:url . "https://github.com/justbur/emacs-vdiff")
1139
+ (:keywords "diff"))])
1140
+ (vigenere .
1141
+ [(1 0)
1142
+ ((emacs
1143
+ (25 1)))
1144
+ "Run a vigenere cipher on a block of text ;" single
1145
+ ((:url . "https://elpa.gnu.org/packages/vigenere.html")
1146
+ (:keywords "data" "vigenere" "cipher"))])
1147
+ (vlf .
1148
+ [(1 7 1)
1149
+ nil "View Large Files" tar
1150
+ ((:keywords "large files" "utilities")
1151
+ (:url . "https://github.com/m00natic/vlfi"))])
1152
+ (w3 .
1153
+ [(4 0 49)
1154
+ nil "Fully customizable, largely undocumented web browser for Emacs" tar
1155
+ ((:keywords "faces" "help" "comm" "news" "mail" "processes" "mouse" "hypermedia")
1156
+ (:url . "http://elpa.gnu.org/packages/w3.html"))])
1157
+ (wcheck-mode .
1158
+ [(2016 1 30)
1159
+ nil "General interface for text checkers" single
1160
+ ((:url . "https://github.com/tlikonen/wcheck-mode")
1161
+ (:keywords "text" "spell" "check" "languages" "ispell"))])
1162
+ (wconf .
1163
+ [(0 2 1)
1164
+ ((emacs
1165
+ (24 4)))
1166
+ "Minimal window layout manager" single
1167
+ ((:url . "https://github.com/ilohmar/wconf")
1168
+ (:keywords "windows" "frames" "layout"))])
1169
+ (web-server .
1170
+ [(0 1 1)
1171
+ ((emacs
1172
+ (24 3)))
1173
+ "Emacs Web Server" tar
1174
+ ((:keywords "http" "server" "network")
1175
+ (:url . "https://github.com/eschulte/emacs-web-server"))])
1176
+ (websocket .
1177
+ [(1 8)
1178
+ ((cl-lib
1179
+ (0 5)))
1180
+ "Emacs WebSocket client and server" tar
1181
+ ((:keywords "communication" "websocket" "server")
1182
+ (:url . "http://elpa.gnu.org/packages/websocket.html"))])
1183
+ (which-key .
1184
+ [(3 1 0)
1185
+ ((emacs
1186
+ (24 4)))
1187
+ "Display available keybindings in popup" tar
1188
+ ((:url . "https://github.com/justbur/emacs-which-key"))])
1189
+ (windresize .
1190
+ [(0 1)
1191
+ nil "Resize windows interactively" single
1192
+ ((:url . "http://elpa.gnu.org/packages/windresize.html")
1193
+ (:keywords "window"))])
1194
+ (wisi .
1195
+ [(1 1 6)
1196
+ ((cl-lib
1197
+ (0 4))
1198
+ (emacs
1199
+ (24 3)))
1200
+ "Utilities for implementing an indentation/navigation engine using a generalized LALR parser" tar
1201
+ ((:keywords "parser" "indentation" "navigation")
1202
+ (:url . "http://www.nongnu.org/ada-mode/wisi/wisi.html"))])
1203
+ (wpuzzle .
1204
+ [(1 1)
1205
+ nil "find as many word in a given time" single
1206
+ ((:url . "http://elpa.gnu.org/packages/wpuzzle.html")
1207
+ (:keywords))])
1208
+ (xclip .
1209
+ [(1 4)
1210
+ nil "use xclip to copy&paste" single
1211
+ ((:url . "http://elpa.gnu.org/packages/xclip.html")
1212
+ (:keywords "convenience" "tools"))])
1213
+ (xelb .
1214
+ [(0 14)
1215
+ ((emacs
1216
+ (24 4))
1217
+ (cl-generic
1218
+ (0 2)))
1219
+ "X protocol Emacs Lisp Binding" tar
1220
+ ((:keywords "unix")
1221
+ (:url . "https://github.com/ch11ng/xelb"))])
1222
+ (xpm .
1223
+ [(1 0 4)
1224
+ nil "edit XPM images" tar
1225
+ ((:keywords "multimedia" "xpm")
1226
+ (:url . "http://www.gnuvola.org/software/xpm/"))])
1227
+ (yasnippet .
1228
+ [(0 12 2)
1229
+ ((cl-lib
1230
+ (0 5)))
1231
+ "Yet another snippet extension for Emacs." tar
1232
+ ((:keywords "convenience" "emulation")
1233
+ (:url . "http://github.com/joaotavora/yasnippet"))])
1234
+ (ztree .
1235
+ [(1 0 5)
1236
+ ((cl-lib
1237
+ (0)))
1238
+ "Text mode directory tree" tar
1239
+ ((:keywords "files" "tools")
1240
+ (:url . "https://github.com/fourier/ztree"))]))