vimamsa 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/custom_example.rb +47 -0
- data/demo.txt +25 -0
- data/lang/hyperplaintext.lang +9 -25
- data/lib/vimamsa/ack.rb +90 -7
- data/lib/vimamsa/actions.rb +21 -2
- data/lib/vimamsa/buffer.rb +53 -49
- data/lib/vimamsa/debug.rb +1 -1
- data/lib/vimamsa/easy_jump.rb +13 -18
- data/lib/vimamsa/editor.rb +57 -54
- data/lib/vimamsa/encrypt.rb +1 -1
- data/lib/vimamsa/file_finder.rb +1 -3
- data/lib/vimamsa/gui.rb +76 -73
- data/lib/vimamsa/gui_image.rb +43 -0
- data/lib/vimamsa/gui_menu.rb +0 -1
- data/lib/vimamsa/gui_select_window.rb +3 -0
- data/lib/vimamsa/gui_sourceview.rb +41 -14
- data/lib/vimamsa/hyper_plain_text.rb +31 -10
- data/lib/vimamsa/key_actions.rb +37 -16
- data/lib/vimamsa/key_binding_tree.rb +37 -113
- data/lib/vimamsa/key_bindings_vimlike.rb +25 -23
- data/lib/vimamsa/rbvma.rb +12 -9
- data/lib/vimamsa/search_replace.rb +8 -4
- data/lib/vimamsa/text_transforms.rb +2 -0
- data/lib/vimamsa/util.rb +34 -0
- data/lib/vimamsa/version.rb +1 -1
- data/lib/vimamsa.rb +5 -0
- data/sheep.jpg +0 -0
- data/styles/dark.xml +1 -0
- data/styles/molokai_edit.xml +1 -1
- metadata +9 -5
data/styles/dark.xml
CHANGED
@@ -136,6 +136,7 @@
|
|
136
136
|
<style name="def:heading5" scale="1.1" bold="true" foreground="heading" />
|
137
137
|
<style name="def:heading6" scale="1.0" bold="true" foreground="heading" />
|
138
138
|
|
139
|
+
<style name="def:bold" scale="1.5" bold="true" foreground="heading" />
|
139
140
|
|
140
141
|
<!-- Language specific -->
|
141
142
|
<style name="diff:added-line" foreground="butter2"/>
|
data/styles/molokai_edit.xml
CHANGED
@@ -44,6 +44,6 @@
|
|
44
44
|
<style name="def:heading4" scale="1.175" bold="true" foreground="heading" />
|
45
45
|
<style name="def:heading5" scale="1.1" bold="true" foreground="heading" />
|
46
46
|
<style name="def:heading6" scale="1.0" bold="true" foreground="heading" />
|
47
|
-
|
47
|
+
<style name="def:bold" bold="true" />
|
48
48
|
</style-scheme>
|
49
49
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vimamsa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sami Sieranoja
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -181,6 +181,8 @@ files:
|
|
181
181
|
- Rakefile
|
182
182
|
- bin/console
|
183
183
|
- bin/setup
|
184
|
+
- custom_example.rb
|
185
|
+
- demo.txt
|
184
186
|
- exe/vimamsa
|
185
187
|
- ext/vmaext/extconf.rb
|
186
188
|
- ext/vmaext/vmaext.c
|
@@ -201,6 +203,7 @@ files:
|
|
201
203
|
- lib/vimamsa/file_history.rb
|
202
204
|
- lib/vimamsa/file_manager.rb
|
203
205
|
- lib/vimamsa/gui.rb
|
206
|
+
- lib/vimamsa/gui_image.rb
|
204
207
|
- lib/vimamsa/gui_menu.rb
|
205
208
|
- lib/vimamsa/gui_select_window.rb
|
206
209
|
- lib/vimamsa/gui_sourceview.rb
|
@@ -217,6 +220,7 @@ files:
|
|
217
220
|
- lib/vimamsa/text_transforms.rb
|
218
221
|
- lib/vimamsa/util.rb
|
219
222
|
- lib/vimamsa/version.rb
|
223
|
+
- sheep.jpg
|
220
224
|
- styles/134272-molokai.xml
|
221
225
|
- styles/dark.xml
|
222
226
|
- styles/molokai_edit.xml
|
@@ -225,7 +229,7 @@ homepage: https://github.com/SamiSieranoja/vimamsa
|
|
225
229
|
licenses:
|
226
230
|
- GPL-3.0+
|
227
231
|
metadata: {}
|
228
|
-
post_install_message:
|
232
|
+
post_install_message:
|
229
233
|
rdoc_options: []
|
230
234
|
require_paths:
|
231
235
|
- lib
|
@@ -242,7 +246,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
242
246
|
version: '0'
|
243
247
|
requirements: []
|
244
248
|
rubygems_version: 3.1.2
|
245
|
-
signing_key:
|
249
|
+
signing_key:
|
246
250
|
specification_version: 4
|
247
251
|
summary: Vimamsa
|
248
252
|
test_files: []
|