vimmate 0.8.1
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/.autotest +10 -0
- data/CHANGELOG +108 -0
- data/COPYING +20 -0
- data/README +221 -0
- data/Rakefile +31 -0
- data/TODO +21 -0
- data/bin/vimmate +105 -0
- data/config/environment.rb +35 -0
- data/controllers/file_filter_controller.rb +101 -0
- data/controllers/file_popup_menu_controller.rb +40 -0
- data/controllers/vim_controller.rb +28 -0
- data/controllers/vim_mate_controller.rb +76 -0
- data/images/file.png +0 -0
- data/images/file_green.png +0 -0
- data/images/file_orange.png +0 -0
- data/images/file_red.png +0 -0
- data/images/folder.png +0 -0
- data/images/folder_green.png +0 -0
- data/images/folder_orange.png +0 -0
- data/images/folder_red.png +0 -0
- data/images/processing.png +0 -0
- data/images/svn_added.png +0 -0
- data/images/svn_conflict.png +0 -0
- data/images/svn_deleted.png +0 -0
- data/images/svn_locked.png +0 -0
- data/images/svn_modified.png +0 -0
- data/images/svn_normal.png +0 -0
- data/images/svn_readonly.png +0 -0
- data/images/vimmate16.png +0 -0
- data/images/vimmate32.png +0 -0
- data/images/vimmate48.png +0 -0
- data/lib/active_window/active_column.rb +218 -0
- data/lib/active_window/active_tree_store/columns.rb +88 -0
- data/lib/active_window/active_tree_store/extentions.rb +81 -0
- data/lib/active_window/active_tree_store/index.rb +53 -0
- data/lib/active_window/active_tree_store.rb +26 -0
- data/lib/active_window/application.rb +137 -0
- data/lib/active_window/controller.rb +58 -0
- data/lib/active_window/dot_file.rb +29 -0
- data/lib/active_window/filtered_active_tree_store.rb +113 -0
- data/lib/active_window/listed_item.rb +127 -0
- data/lib/active_window/signal.rb +46 -0
- data/lib/active_window.rb +8 -0
- data/lib/config_window.rb +90 -0
- data/lib/file_tree_store.rb +74 -0
- data/lib/filtered_file_tree_store.rb +34 -0
- data/lib/gtk_thread_helper.rb +73 -0
- data/lib/listed_directory.rb +45 -0
- data/lib/listed_file.rb +67 -0
- data/lib/try.rb +9 -0
- data/lib/vim/buffers.rb +18 -0
- data/lib/vim/integration.rb +38 -0
- data/lib/vim/netbeans.rb +154 -0
- data/lib/vim/source.vim +18 -0
- data/lib/vim_mate/config.rb +132 -0
- data/lib/vim_mate/dummy_window.rb +14 -0
- data/lib/vim_mate/files_menu.rb +110 -0
- data/lib/vim_mate/icons.rb +156 -0
- data/lib/vim_mate/nice_singleton.rb +53 -0
- data/lib/vim_mate/plugins/inotify/init.rb +4 -0
- data/lib/vim_mate/plugins/inotify/lib/INotify.rb +208 -0
- data/lib/vim_mate/plugins/inotify/lib/directory.rb +58 -0
- data/lib/vim_mate/plugins/subversion/init.rb +7 -0
- data/lib/vim_mate/plugins/subversion/lib/file.rb +59 -0
- data/lib/vim_mate/plugins/subversion/lib/menu.rb +96 -0
- data/lib/vim_mate/plugins/subversion/lib/subversion.rb +157 -0
- data/lib/vim_mate/plugins.rb +6 -0
- data/lib/vim_mate/requirer.rb +68 -0
- data/lib/vim_mate/search_window.rb +227 -0
- data/lib/vim_mate/tags_window.rb +167 -0
- data/lib/vim_mate/terminals_window.rb +163 -0
- data/lib/vim_mate/version.rb +29 -0
- data/lib/vim_mate/vim_widget.rb +143 -0
- data/spec/active_window/active_column_spec.rb +41 -0
- data/spec/active_window/active_tree_store_spec.rb +312 -0
- data/spec/active_window/controller_spec.rb +6 -0
- data/spec/lib/file_tree_store_spec.rb +40 -0
- data/spec/lib/listed_directory_spec.rb +26 -0
- data/spec/lib/listed_file_spec.rb +53 -0
- data/spec/nice_singleton_spec.rb +23 -0
- data/spec/spec.opts +6 -0
- data/spec/spec_helper.rb +10 -0
- data/views/vim_mate.glade +500 -0
- data/vimmate.gemspec +138 -0
- metadata +146 -0
@@ -0,0 +1,500 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<glade-interface>
|
3
|
+
<!-- interface-requires gtk+ 2.16 -->
|
4
|
+
<!-- interface-naming-policy project-wide -->
|
5
|
+
<widget class="GtkWindow" id="VimMate">
|
6
|
+
<signal name="key_press_event" handler="vim_mate.pressed_key"/>
|
7
|
+
<child>
|
8
|
+
<widget class="GtkHPaned" id="MainPane">
|
9
|
+
<property name="visible">True</property>
|
10
|
+
<property name="can_focus">True</property>
|
11
|
+
<child>
|
12
|
+
<widget class="GtkVBox" id="vbox1">
|
13
|
+
<property name="visible">True</property>
|
14
|
+
<property name="orientation">vertical</property>
|
15
|
+
<child>
|
16
|
+
<widget class="GtkNotebook" id="SideTabs">
|
17
|
+
<property name="visible">True</property>
|
18
|
+
<property name="can_focus">True</property>
|
19
|
+
<property name="tab_pos">left</property>
|
20
|
+
<child>
|
21
|
+
<widget class="GtkVBox" id="FilesBox">
|
22
|
+
<property name="visible">True</property>
|
23
|
+
<property name="orientation">vertical</property>
|
24
|
+
<child>
|
25
|
+
<placeholder/>
|
26
|
+
</child>
|
27
|
+
<child>
|
28
|
+
<widget class="GtkVPaned" id="FilesPane">
|
29
|
+
<property name="visible">True</property>
|
30
|
+
<property name="can_focus">True</property>
|
31
|
+
<property name="orientation">vertical</property>
|
32
|
+
<child>
|
33
|
+
<widget class="GtkVBox" id="TreeVBox">
|
34
|
+
<property name="visible">True</property>
|
35
|
+
<property name="orientation">vertical</property>
|
36
|
+
<child>
|
37
|
+
<widget class="GtkHBox" id="FilesFilterBox">
|
38
|
+
<property name="visible">True</property>
|
39
|
+
<child>
|
40
|
+
<widget class="GtkEntry" id="FilesFilterTerm">
|
41
|
+
<property name="visible">True</property>
|
42
|
+
<property name="can_focus">True</property>
|
43
|
+
<property name="invisible_char">●</property>
|
44
|
+
<signal name="changed" handler="file_filter.changed"/>
|
45
|
+
</widget>
|
46
|
+
<packing>
|
47
|
+
<property name="padding">5</property>
|
48
|
+
<property name="position">0</property>
|
49
|
+
</packing>
|
50
|
+
</child>
|
51
|
+
<child>
|
52
|
+
<widget class="GtkToggleButton" id="FilesFilterButton">
|
53
|
+
<property name="label" translatable="yes">Filter</property>
|
54
|
+
<property name="visible">True</property>
|
55
|
+
<property name="can_focus">True</property>
|
56
|
+
<property name="receives_default">True</property>
|
57
|
+
<property name="focus_on_click">False</property>
|
58
|
+
<property name="active">True</property>
|
59
|
+
<property name="draw_indicator">True</property>
|
60
|
+
<signal name="toggled" handler="file_filter.toggle"/>
|
61
|
+
</widget>
|
62
|
+
<packing>
|
63
|
+
<property name="expand">False</property>
|
64
|
+
<property name="padding">5</property>
|
65
|
+
<property name="position">1</property>
|
66
|
+
</packing>
|
67
|
+
</child>
|
68
|
+
</widget>
|
69
|
+
<packing>
|
70
|
+
<property name="expand">False</property>
|
71
|
+
<property name="padding">7</property>
|
72
|
+
<property name="position">0</property>
|
73
|
+
</packing>
|
74
|
+
</child>
|
75
|
+
<child>
|
76
|
+
<widget class="GtkScrolledWindow" id="TreeScroller">
|
77
|
+
<property name="visible">True</property>
|
78
|
+
<property name="can_focus">True</property>
|
79
|
+
<property name="hscrollbar_policy">automatic</property>
|
80
|
+
<property name="vscrollbar_policy">automatic</property>
|
81
|
+
<child>
|
82
|
+
<widget class="GtkTreeView" id="FileTreeView">
|
83
|
+
<property name="visible">True</property>
|
84
|
+
<property name="can_focus">True</property>
|
85
|
+
<signal name="button_press_event" handler="file_filter.button_pressed"/>
|
86
|
+
<signal name="row_activated" handler="vim.open_selected_file"/>
|
87
|
+
</widget>
|
88
|
+
</child>
|
89
|
+
</widget>
|
90
|
+
<packing>
|
91
|
+
<property name="position">1</property>
|
92
|
+
</packing>
|
93
|
+
</child>
|
94
|
+
<child>
|
95
|
+
<widget class="GtkLabel" id="SelectedPathLabel">
|
96
|
+
<property name="visible">True</property>
|
97
|
+
<property name="label" translatable="yes">---</property>
|
98
|
+
<property name="ellipsize">start</property>
|
99
|
+
</widget>
|
100
|
+
<packing>
|
101
|
+
<property name="expand">False</property>
|
102
|
+
<property name="padding">3</property>
|
103
|
+
<property name="position">2</property>
|
104
|
+
</packing>
|
105
|
+
</child>
|
106
|
+
</widget>
|
107
|
+
<packing>
|
108
|
+
<property name="resize">False</property>
|
109
|
+
<property name="shrink">True</property>
|
110
|
+
</packing>
|
111
|
+
</child>
|
112
|
+
<child>
|
113
|
+
<widget class="GtkScrolledWindow" id="ListScroller">
|
114
|
+
<property name="visible">True</property>
|
115
|
+
<property name="can_focus">True</property>
|
116
|
+
<property name="hscrollbar_policy">automatic</property>
|
117
|
+
<property name="vscrollbar_policy">automatic</property>
|
118
|
+
<child>
|
119
|
+
<placeholder/>
|
120
|
+
</child>
|
121
|
+
</widget>
|
122
|
+
<packing>
|
123
|
+
<property name="resize">True</property>
|
124
|
+
<property name="shrink">True</property>
|
125
|
+
</packing>
|
126
|
+
</child>
|
127
|
+
</widget>
|
128
|
+
<packing>
|
129
|
+
<property name="position">1</property>
|
130
|
+
</packing>
|
131
|
+
</child>
|
132
|
+
</widget>
|
133
|
+
</child>
|
134
|
+
<child>
|
135
|
+
<widget class="GtkLabel" id="FilesTabs">
|
136
|
+
<property name="visible">True</property>
|
137
|
+
<property name="label" translatable="yes">Files</property>
|
138
|
+
<property name="angle">90</property>
|
139
|
+
</widget>
|
140
|
+
<packing>
|
141
|
+
<property name="tab_fill">False</property>
|
142
|
+
<property name="type">tab</property>
|
143
|
+
</packing>
|
144
|
+
</child>
|
145
|
+
<child>
|
146
|
+
<widget class="GtkVBox" id="TagsBox">
|
147
|
+
<property name="visible">True</property>
|
148
|
+
<property name="orientation">vertical</property>
|
149
|
+
<child>
|
150
|
+
<widget class="GtkHBox" id="TagsFilterBox">
|
151
|
+
<property name="visible">True</property>
|
152
|
+
<child>
|
153
|
+
<widget class="GtkEntry" id="TagsFilterTerm">
|
154
|
+
<property name="visible">True</property>
|
155
|
+
<property name="can_focus">True</property>
|
156
|
+
<property name="invisible_char">●</property>
|
157
|
+
</widget>
|
158
|
+
<packing>
|
159
|
+
<property name="padding">5</property>
|
160
|
+
<property name="position">0</property>
|
161
|
+
</packing>
|
162
|
+
</child>
|
163
|
+
<child>
|
164
|
+
<widget class="GtkToggleButton" id="TagsFilterButton">
|
165
|
+
<property name="label" translatable="yes">Filter</property>
|
166
|
+
<property name="visible">True</property>
|
167
|
+
<property name="can_focus">True</property>
|
168
|
+
<property name="receives_default">True</property>
|
169
|
+
<property name="focus_on_click">False</property>
|
170
|
+
<property name="active">True</property>
|
171
|
+
<property name="draw_indicator">True</property>
|
172
|
+
</widget>
|
173
|
+
<packing>
|
174
|
+
<property name="expand">False</property>
|
175
|
+
<property name="padding">5</property>
|
176
|
+
<property name="position">1</property>
|
177
|
+
</packing>
|
178
|
+
</child>
|
179
|
+
</widget>
|
180
|
+
<packing>
|
181
|
+
<property name="padding">7</property>
|
182
|
+
<property name="position">0</property>
|
183
|
+
</packing>
|
184
|
+
</child>
|
185
|
+
<child>
|
186
|
+
<widget class="GtkScrolledWindow" id="TagsScroller">
|
187
|
+
<property name="visible">True</property>
|
188
|
+
<property name="can_focus">True</property>
|
189
|
+
<property name="hscrollbar_policy">automatic</property>
|
190
|
+
<property name="vscrollbar_policy">automatic</property>
|
191
|
+
<child>
|
192
|
+
<placeholder/>
|
193
|
+
</child>
|
194
|
+
</widget>
|
195
|
+
<packing>
|
196
|
+
<property name="position">1</property>
|
197
|
+
</packing>
|
198
|
+
</child>
|
199
|
+
</widget>
|
200
|
+
<packing>
|
201
|
+
<property name="position">1</property>
|
202
|
+
</packing>
|
203
|
+
</child>
|
204
|
+
<child>
|
205
|
+
<widget class="GtkLabel" id="TagsTabs">
|
206
|
+
<property name="visible">True</property>
|
207
|
+
<property name="label" translatable="yes">Tags</property>
|
208
|
+
<property name="angle">90</property>
|
209
|
+
</widget>
|
210
|
+
<packing>
|
211
|
+
<property name="position">1</property>
|
212
|
+
<property name="tab_fill">False</property>
|
213
|
+
<property name="type">tab</property>
|
214
|
+
</packing>
|
215
|
+
</child>
|
216
|
+
<child>
|
217
|
+
<placeholder/>
|
218
|
+
</child>
|
219
|
+
<child>
|
220
|
+
<placeholder/>
|
221
|
+
<packing>
|
222
|
+
<property name="type">tab</property>
|
223
|
+
</packing>
|
224
|
+
</child>
|
225
|
+
</widget>
|
226
|
+
<packing>
|
227
|
+
<property name="position">0</property>
|
228
|
+
</packing>
|
229
|
+
</child>
|
230
|
+
<child>
|
231
|
+
<widget class="GtkHButtonBox" id="hbuttonbox1">
|
232
|
+
<property name="visible">True</property>
|
233
|
+
<child>
|
234
|
+
<widget class="GtkButton" id="ConfigButton">
|
235
|
+
<property name="label" translatable="yes">gtk-preferences</property>
|
236
|
+
<property name="visible">True</property>
|
237
|
+
<property name="can_focus">True</property>
|
238
|
+
<property name="receives_default">True</property>
|
239
|
+
<property name="use_stock">True</property>
|
240
|
+
<signal name="clicked" handler="config.open_window"/>
|
241
|
+
</widget>
|
242
|
+
<packing>
|
243
|
+
<property name="expand">False</property>
|
244
|
+
<property name="fill">False</property>
|
245
|
+
<property name="position">0</property>
|
246
|
+
</packing>
|
247
|
+
</child>
|
248
|
+
<child>
|
249
|
+
<placeholder/>
|
250
|
+
</child>
|
251
|
+
</widget>
|
252
|
+
<packing>
|
253
|
+
<property name="expand">False</property>
|
254
|
+
<property name="position">1</property>
|
255
|
+
</packing>
|
256
|
+
</child>
|
257
|
+
</widget>
|
258
|
+
<packing>
|
259
|
+
<property name="resize">False</property>
|
260
|
+
<property name="shrink">True</property>
|
261
|
+
</packing>
|
262
|
+
</child>
|
263
|
+
<child>
|
264
|
+
<placeholder/>
|
265
|
+
</child>
|
266
|
+
</widget>
|
267
|
+
</child>
|
268
|
+
</widget>
|
269
|
+
<widget class="GtkMenu" id="FilePopup">
|
270
|
+
<property name="visible">True</property>
|
271
|
+
<child>
|
272
|
+
<widget class="GtkImageMenuItem" id="OpenFile">
|
273
|
+
<property name="label">gtk-open</property>
|
274
|
+
<property name="visible">True</property>
|
275
|
+
<property name="use_underline">True</property>
|
276
|
+
<property name="use_stock">True</property>
|
277
|
+
<property name="always_show_image">True</property>
|
278
|
+
<signal name="activate" handler="vim.open_selected_file"/>
|
279
|
+
</widget>
|
280
|
+
</child>
|
281
|
+
<child>
|
282
|
+
<widget class="GtkMenuItem" id="SplitOpenFile">
|
283
|
+
<property name="visible">True</property>
|
284
|
+
<property name="label" translatable="yes">Split Open</property>
|
285
|
+
<property name="use_underline">True</property>
|
286
|
+
<signal name="activate" handler="vim.open_selected_file_split"/>
|
287
|
+
</widget>
|
288
|
+
</child>
|
289
|
+
<child>
|
290
|
+
<widget class="GtkMenuItem" id="TabOpenFile">
|
291
|
+
<property name="visible">True</property>
|
292
|
+
<property name="label" translatable="yes">Tab Open</property>
|
293
|
+
<property name="use_underline">True</property>
|
294
|
+
<signal name="activate" handler="vim.open_selected_file_tab"/>
|
295
|
+
</widget>
|
296
|
+
</child>
|
297
|
+
<child>
|
298
|
+
<widget class="GtkSeparatorMenuItem" id="sep1">
|
299
|
+
<property name="visible">True</property>
|
300
|
+
</widget>
|
301
|
+
</child>
|
302
|
+
<child>
|
303
|
+
<widget class="GtkImageMenuItem" id="NewFile">
|
304
|
+
<property name="label">gtk-new</property>
|
305
|
+
<property name="visible">True</property>
|
306
|
+
<property name="use_underline">True</property>
|
307
|
+
<property name="use_stock">True</property>
|
308
|
+
<signal name="activate" handler="file_popup_menu.new_file"/>
|
309
|
+
</widget>
|
310
|
+
</child>
|
311
|
+
<child>
|
312
|
+
<widget class="GtkImageMenuItem" id="NewDirectory">
|
313
|
+
<property name="label">gtk-add</property>
|
314
|
+
<property name="visible">True</property>
|
315
|
+
<property name="use_underline">True</property>
|
316
|
+
<property name="use_stock">True</property>
|
317
|
+
<signal name="activate" handler="on_new_directory_clicked"/>
|
318
|
+
</widget>
|
319
|
+
</child>
|
320
|
+
<child>
|
321
|
+
<widget class="GtkSeparatorMenuItem" id="sep2">
|
322
|
+
<property name="visible">True</property>
|
323
|
+
</widget>
|
324
|
+
</child>
|
325
|
+
<child>
|
326
|
+
<widget class="GtkMenuItem" id="RenameItem">
|
327
|
+
<property name="visible">True</property>
|
328
|
+
<property name="label" translatable="yes">Rename</property>
|
329
|
+
<property name="use_underline">True</property>
|
330
|
+
</widget>
|
331
|
+
</child>
|
332
|
+
<child>
|
333
|
+
<widget class="GtkImageMenuItem" id="DeleteItem">
|
334
|
+
<property name="label">gtk-delete</property>
|
335
|
+
<property name="visible">True</property>
|
336
|
+
<property name="use_underline">True</property>
|
337
|
+
<property name="use_stock">True</property>
|
338
|
+
<signal name="activate" handler="on_delete_item_clicked"/>
|
339
|
+
</widget>
|
340
|
+
</child>
|
341
|
+
<child>
|
342
|
+
<widget class="GtkSeparatorMenuItem" id="sep3">
|
343
|
+
<property name="visible">True</property>
|
344
|
+
</widget>
|
345
|
+
</child>
|
346
|
+
<child>
|
347
|
+
<widget class="GtkImageMenuItem" id="RefreshItem">
|
348
|
+
<property name="label">gtk-refresh</property>
|
349
|
+
<property name="visible">True</property>
|
350
|
+
<property name="use_underline">True</property>
|
351
|
+
<property name="use_stock">True</property>
|
352
|
+
<signal name="activate" handler="on_refresh_item_clicked"/>
|
353
|
+
</widget>
|
354
|
+
</child>
|
355
|
+
</widget>
|
356
|
+
<widget class="GtkDialog" id="ConfigWindow">
|
357
|
+
<property name="border_width">5</property>
|
358
|
+
<property name="default_width">400</property>
|
359
|
+
<property name="default_height">400</property>
|
360
|
+
<property name="type_hint">normal</property>
|
361
|
+
<property name="has_separator">False</property>
|
362
|
+
<child internal-child="vbox">
|
363
|
+
<widget class="GtkVBox" id="dialog-vbox1">
|
364
|
+
<property name="visible">True</property>
|
365
|
+
<property name="orientation">vertical</property>
|
366
|
+
<property name="spacing">2</property>
|
367
|
+
<child>
|
368
|
+
<widget class="GtkNotebook" id="notebook1">
|
369
|
+
<property name="visible">True</property>
|
370
|
+
<property name="can_focus">True</property>
|
371
|
+
<child>
|
372
|
+
<widget class="GtkVBox" id="GeneralConfig">
|
373
|
+
<property name="visible">True</property>
|
374
|
+
<property name="orientation">vertical</property>
|
375
|
+
<child>
|
376
|
+
<placeholder/>
|
377
|
+
</child>
|
378
|
+
</widget>
|
379
|
+
</child>
|
380
|
+
<child>
|
381
|
+
<widget class="GtkLabel" id="label1">
|
382
|
+
<property name="visible">True</property>
|
383
|
+
<property name="label" translatable="yes">General</property>
|
384
|
+
</widget>
|
385
|
+
<packing>
|
386
|
+
<property name="tab_fill">False</property>
|
387
|
+
<property name="type">tab</property>
|
388
|
+
</packing>
|
389
|
+
</child>
|
390
|
+
<child>
|
391
|
+
<widget class="GtkVBox" id="MoreConfig">
|
392
|
+
<property name="visible">True</property>
|
393
|
+
<property name="orientation">vertical</property>
|
394
|
+
<child>
|
395
|
+
<placeholder/>
|
396
|
+
</child>
|
397
|
+
</widget>
|
398
|
+
<packing>
|
399
|
+
<property name="position">1</property>
|
400
|
+
</packing>
|
401
|
+
</child>
|
402
|
+
<child>
|
403
|
+
<widget class="GtkLabel" id="label2">
|
404
|
+
<property name="visible">True</property>
|
405
|
+
<property name="label" translatable="yes">More</property>
|
406
|
+
</widget>
|
407
|
+
<packing>
|
408
|
+
<property name="position">1</property>
|
409
|
+
<property name="tab_fill">False</property>
|
410
|
+
<property name="type">tab</property>
|
411
|
+
</packing>
|
412
|
+
</child>
|
413
|
+
<child>
|
414
|
+
<widget class="GtkVBox" id="AdvancedConfig">
|
415
|
+
<property name="visible">True</property>
|
416
|
+
<property name="orientation">vertical</property>
|
417
|
+
<child>
|
418
|
+
<placeholder/>
|
419
|
+
</child>
|
420
|
+
</widget>
|
421
|
+
<packing>
|
422
|
+
<property name="position">2</property>
|
423
|
+
</packing>
|
424
|
+
</child>
|
425
|
+
<child>
|
426
|
+
<widget class="GtkLabel" id="label3">
|
427
|
+
<property name="visible">True</property>
|
428
|
+
<property name="label" translatable="yes">Advanced</property>
|
429
|
+
</widget>
|
430
|
+
<packing>
|
431
|
+
<property name="position">2</property>
|
432
|
+
<property name="tab_fill">False</property>
|
433
|
+
<property name="type">tab</property>
|
434
|
+
</packing>
|
435
|
+
</child>
|
436
|
+
</widget>
|
437
|
+
<packing>
|
438
|
+
<property name="position">1</property>
|
439
|
+
</packing>
|
440
|
+
</child>
|
441
|
+
<child internal-child="action_area">
|
442
|
+
<widget class="GtkHButtonBox" id="dialog-action_area1">
|
443
|
+
<property name="visible">True</property>
|
444
|
+
<property name="layout_style">end</property>
|
445
|
+
<child>
|
446
|
+
<widget class="GtkButton" id="RevertConfigButton">
|
447
|
+
<property name="label" translatable="yes">gtk-revert-to-saved</property>
|
448
|
+
<property name="visible">True</property>
|
449
|
+
<property name="can_focus">True</property>
|
450
|
+
<property name="receives_default">True</property>
|
451
|
+
<property name="use_stock">True</property>
|
452
|
+
<signal name="clicked" handler="config.reset_settings"/>
|
453
|
+
</widget>
|
454
|
+
<packing>
|
455
|
+
<property name="expand">False</property>
|
456
|
+
<property name="fill">False</property>
|
457
|
+
<property name="position">0</property>
|
458
|
+
</packing>
|
459
|
+
</child>
|
460
|
+
<child>
|
461
|
+
<widget class="GtkButton" id="CancelConfigButton">
|
462
|
+
<property name="label" translatable="yes">gtk-cancel</property>
|
463
|
+
<property name="visible">True</property>
|
464
|
+
<property name="can_focus">True</property>
|
465
|
+
<property name="receives_default">True</property>
|
466
|
+
<property name="use_stock">True</property>
|
467
|
+
<signal name="clicked" handler="config.close_window"/>
|
468
|
+
</widget>
|
469
|
+
<packing>
|
470
|
+
<property name="expand">False</property>
|
471
|
+
<property name="fill">False</property>
|
472
|
+
<property name="position">1</property>
|
473
|
+
</packing>
|
474
|
+
</child>
|
475
|
+
<child>
|
476
|
+
<widget class="GtkButton" id="SaveConfigButton">
|
477
|
+
<property name="label" translatable="yes">gtk-ok</property>
|
478
|
+
<property name="visible">True</property>
|
479
|
+
<property name="can_focus">True</property>
|
480
|
+
<property name="receives_default">True</property>
|
481
|
+
<property name="use_stock">True</property>
|
482
|
+
<signal name="clicked" handler="config.save_settings"/>
|
483
|
+
</widget>
|
484
|
+
<packing>
|
485
|
+
<property name="expand">False</property>
|
486
|
+
<property name="fill">False</property>
|
487
|
+
<property name="position">2</property>
|
488
|
+
</packing>
|
489
|
+
</child>
|
490
|
+
</widget>
|
491
|
+
<packing>
|
492
|
+
<property name="expand">False</property>
|
493
|
+
<property name="pack_type">end</property>
|
494
|
+
<property name="position">0</property>
|
495
|
+
</packing>
|
496
|
+
</child>
|
497
|
+
</widget>
|
498
|
+
</child>
|
499
|
+
</widget>
|
500
|
+
</glade-interface>
|
data/vimmate.gemspec
ADDED
@@ -0,0 +1,138 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{vimmate}
|
8
|
+
s.version = "0.8.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Niklas Hofer", "Stefan Bethge"]
|
12
|
+
s.date = %q{2009-11-14}
|
13
|
+
s.default_executable = %q{vimmate}
|
14
|
+
s.description = %q{
|
15
|
+
VimMate is a graphical add-on to Vim with IDE-like features: it does more
|
16
|
+
than the plain Vim while still being lightweight. Even with the additional
|
17
|
+
features, it stays out of the way for it's main task: editing files with Vim.
|
18
|
+
VimMate adds functionality to Vim by embedding Vim GTK GUI (gVim) within
|
19
|
+
VimMate.
|
20
|
+
}
|
21
|
+
s.email = %q{niklas+vimmate@lanpartei.de}
|
22
|
+
s.executables = ["vimmate"]
|
23
|
+
s.extra_rdoc_files = [
|
24
|
+
"README"
|
25
|
+
]
|
26
|
+
s.files = [
|
27
|
+
".autotest",
|
28
|
+
"CHANGELOG",
|
29
|
+
"COPYING",
|
30
|
+
"README",
|
31
|
+
"Rakefile",
|
32
|
+
"TODO",
|
33
|
+
"bin/vimmate",
|
34
|
+
"config/environment.rb",
|
35
|
+
"controllers/file_filter_controller.rb",
|
36
|
+
"controllers/file_popup_menu_controller.rb",
|
37
|
+
"controllers/vim_controller.rb",
|
38
|
+
"controllers/vim_mate_controller.rb",
|
39
|
+
"images/file.png",
|
40
|
+
"images/file_green.png",
|
41
|
+
"images/file_orange.png",
|
42
|
+
"images/file_red.png",
|
43
|
+
"images/folder.png",
|
44
|
+
"images/folder_green.png",
|
45
|
+
"images/folder_orange.png",
|
46
|
+
"images/folder_red.png",
|
47
|
+
"images/processing.png",
|
48
|
+
"images/svn_added.png",
|
49
|
+
"images/svn_conflict.png",
|
50
|
+
"images/svn_deleted.png",
|
51
|
+
"images/svn_locked.png",
|
52
|
+
"images/svn_modified.png",
|
53
|
+
"images/svn_normal.png",
|
54
|
+
"images/svn_readonly.png",
|
55
|
+
"images/vimmate16.png",
|
56
|
+
"images/vimmate32.png",
|
57
|
+
"images/vimmate48.png",
|
58
|
+
"lib/active_window.rb",
|
59
|
+
"lib/active_window/active_column.rb",
|
60
|
+
"lib/active_window/active_tree_store.rb",
|
61
|
+
"lib/active_window/active_tree_store/columns.rb",
|
62
|
+
"lib/active_window/active_tree_store/extentions.rb",
|
63
|
+
"lib/active_window/active_tree_store/index.rb",
|
64
|
+
"lib/active_window/application.rb",
|
65
|
+
"lib/active_window/controller.rb",
|
66
|
+
"lib/active_window/dot_file.rb",
|
67
|
+
"lib/active_window/filtered_active_tree_store.rb",
|
68
|
+
"lib/active_window/listed_item.rb",
|
69
|
+
"lib/active_window/signal.rb",
|
70
|
+
"lib/config_window.rb",
|
71
|
+
"lib/file_tree_store.rb",
|
72
|
+
"lib/filtered_file_tree_store.rb",
|
73
|
+
"lib/gtk_thread_helper.rb",
|
74
|
+
"lib/listed_directory.rb",
|
75
|
+
"lib/listed_file.rb",
|
76
|
+
"lib/try.rb",
|
77
|
+
"lib/vim/buffers.rb",
|
78
|
+
"lib/vim/integration.rb",
|
79
|
+
"lib/vim/netbeans.rb",
|
80
|
+
"lib/vim/source.vim",
|
81
|
+
"lib/vim_mate/config.rb",
|
82
|
+
"lib/vim_mate/dummy_window.rb",
|
83
|
+
"lib/vim_mate/files_menu.rb",
|
84
|
+
"lib/vim_mate/icons.rb",
|
85
|
+
"lib/vim_mate/nice_singleton.rb",
|
86
|
+
"lib/vim_mate/plugins.rb",
|
87
|
+
"lib/vim_mate/plugins/inotify/init.rb",
|
88
|
+
"lib/vim_mate/plugins/inotify/lib/INotify.rb",
|
89
|
+
"lib/vim_mate/plugins/inotify/lib/directory.rb",
|
90
|
+
"lib/vim_mate/plugins/subversion/init.rb",
|
91
|
+
"lib/vim_mate/plugins/subversion/lib/file.rb",
|
92
|
+
"lib/vim_mate/plugins/subversion/lib/menu.rb",
|
93
|
+
"lib/vim_mate/plugins/subversion/lib/subversion.rb",
|
94
|
+
"lib/vim_mate/requirer.rb",
|
95
|
+
"lib/vim_mate/search_window.rb",
|
96
|
+
"lib/vim_mate/tags_window.rb",
|
97
|
+
"lib/vim_mate/terminals_window.rb",
|
98
|
+
"lib/vim_mate/version.rb",
|
99
|
+
"lib/vim_mate/vim_widget.rb",
|
100
|
+
"spec/active_window/active_column_spec.rb",
|
101
|
+
"spec/active_window/active_tree_store_spec.rb",
|
102
|
+
"spec/active_window/controller_spec.rb",
|
103
|
+
"spec/lib/file_tree_store_spec.rb",
|
104
|
+
"spec/lib/listed_directory_spec.rb",
|
105
|
+
"spec/lib/listed_file_spec.rb",
|
106
|
+
"spec/nice_singleton_spec.rb",
|
107
|
+
"spec/spec.opts",
|
108
|
+
"spec/spec_helper.rb",
|
109
|
+
"views/vim_mate.glade",
|
110
|
+
"vimmate.gemspec"
|
111
|
+
]
|
112
|
+
s.homepage = %q{http://github.com/niklas/vimmate/}
|
113
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
114
|
+
s.require_paths = ["lib"]
|
115
|
+
s.rubygems_version = %q{1.3.5}
|
116
|
+
s.summary = %q{VimMate is a graphical add-on to Vim with IDE-like features.}
|
117
|
+
s.test_files = [
|
118
|
+
"spec/spec_helper.rb",
|
119
|
+
"spec/nice_singleton_spec.rb",
|
120
|
+
"spec/active_window/controller_spec.rb",
|
121
|
+
"spec/active_window/active_column_spec.rb",
|
122
|
+
"spec/active_window/active_tree_store_spec.rb",
|
123
|
+
"spec/lib/listed_directory_spec.rb",
|
124
|
+
"spec/lib/listed_file_spec.rb",
|
125
|
+
"spec/lib/file_tree_store_spec.rb"
|
126
|
+
]
|
127
|
+
|
128
|
+
if s.respond_to? :specification_version then
|
129
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
130
|
+
s.specification_version = 3
|
131
|
+
|
132
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
133
|
+
else
|
134
|
+
end
|
135
|
+
else
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|