ruboty-vimhelp 0.1.0 → 0.2.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.
- checksums.yaml +5 -5
- data/.rspec +0 -0
- data/Gemfile +0 -0
- data/README.md +22 -1
- data/lib/ruboty/handlers/vimhelp.rb +1 -1
- data/lib/ruboty/vimhelp/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: '090d5fdf6f2b3abde8542ea944804322d303a2fe78f8fa04add88b4d1aba9a8e'
|
|
4
|
+
data.tar.gz: 68ed77918da4c67eb84215bf71cf23233eef3554db15343d2ba1153b2ad625df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4625adc97267d241187db7c05f0188f564cc38879c33ec5c445fee2cfc5503e35a8232b2201a054a9b719e43588cd168370e07e1eb58b54d3bcc44861ba10ee6
|
|
7
|
+
data.tar.gz: be285d20e8e0f15d0f3f69063d2539d172ab8db7c66f23b953579e2b9f923d40da33da11b4a3b1744e60b2419e58e7f5b324c46016e507dde5a4a009759ec4d7
|
data/.rspec
CHANGED
|
File without changes
|
data/Gemfile
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
@@ -6,9 +6,30 @@ Show vim help.
|
|
|
6
6
|
|
|
7
7
|
```ruby
|
|
8
8
|
# Gemfile
|
|
9
|
-
gem 'ruboty-
|
|
9
|
+
gem 'ruboty-vimhelp'
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
# Say ":help <keyword>"
|
|
14
|
+
> ruboty :help i
|
|
15
|
+
<insert> or *i* *insert* *<Insert>*
|
|
16
|
+
i カーソルの前にテキストを[count]回挿入する。
|
|
17
|
+
挿入モード中のCTRL-O |i_CTRL-O| で使うときはカウントは
|
|
18
|
+
サポートされていない。
|
|
19
|
+
e
|
|
10
20
|
```
|
|
11
21
|
|
|
12
22
|
## Contributing
|
|
13
23
|
|
|
14
24
|
Bug reports and pull requests are welcome on GitHub at https://github.com/osyo-manga/gem-ruboty-vimhelp.
|
|
25
|
+
|
|
26
|
+
## Release note
|
|
27
|
+
|
|
28
|
+
#### 0.2.0
|
|
29
|
+
|
|
30
|
+
* Add match `:h {keyword}`
|
|
31
|
+
|
|
32
|
+
#### 0.1.0
|
|
33
|
+
|
|
34
|
+
* Release!
|
|
35
|
+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruboty-vimhelp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- manga_osyo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -105,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
105
105
|
version: '0'
|
|
106
106
|
requirements: []
|
|
107
107
|
rubyforge_project:
|
|
108
|
-
rubygems_version: 2.
|
|
108
|
+
rubygems_version: 2.7.3
|
|
109
109
|
signing_key:
|
|
110
110
|
specification_version: 4
|
|
111
111
|
summary: Search Vim help.
|