Skip to content

Commit 7f35708

Browse files
committed
update to 1.2.99
1 parent 2ed2c90 commit 7f35708

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# cVim Changelog
22
# [Like cVim? Consider donating! https://www.paypal.me/1995eaton](https://www.paypal.me/1995eaton)
33

4+
## 1.2.99 (2017-12-17)
5+
* Updated list of `chrome://` completion URLs when `:chrome` is used
6+
* Fixed issue with `openPasteTab` [#573](https://github.com/1995eaton/chromium-vim/issues/573)
7+
* Allow global site matches in cVimrc. For example, the following will unmap `j` on all sites:
8+
```
9+
site '*://*' {
10+
unmap j
11+
}
12+
```
13+
* Fix issue with certain hints not showing up (like the GitHub profile icon in the top-right corner of the page).
14+
415
## 1.2.98 (2017-10-13)
516
* Fix [#569](https://github.com/1995eaton/chromium-vim/issues/569) (mappings like `map <C-A-M-i> nextTab` would work, but `map <C-M-A-i> nextTab` wouldn't)
617
* Let `@"` represent the paste buffer in command bar commands (e.g. `tabnew wikipedia "@` would search Wikipedia for whatever is in the paste buffer)

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "cVim",
4-
"version": "1.2.98",
4+
"version": "1.2.99",
55
"description": "An extension adding Vim-like bindings to Google Chrome",
66
"update_url": "https://clients2.google.com/service/update2/crx",
77
"icons": {

pages/changelog.html

+13
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@
1919
<script src="../content_scripts/frames.js"></script>
2020
<script src="../content_scripts/messenger.js"></script></head><h1>cVim Changelog</h1>
2121
<h1><a href="https://www.paypal.me/1995eaton">Like cVim? Consider donating! https://www.paypal.me/1995eaton</a></h1>
22+
<h2>1.2.99 (2017-12-17)</h2>
23+
<ul>
24+
<li>Updated list of <code>chrome://</code> completion URLs when <code>:chrome</code> is used</li>
25+
<li>Fixed issue with <code>openPasteTab</code> <a href="https://github.com/1995eaton/chromium-vim/issues/573">#573</a></li>
26+
<li>Allow global site matches in cVimrc. For example, the following will unmap <code>j</code> on all sites:</li>
27+
</ul>
28+
<pre class="hljs"><code>site '*://*' {
29+
unmap j
30+
}
31+
</code></pre>
32+
<ul>
33+
<li>Fix issue with certain hints not showing up (like the GitHub profile icon in the top-right corner of the page).</li>
34+
</ul>
2235
<h2>1.2.98 (2017-10-13)</h2>
2336
<ul>
2437
<li>Fix <a href="https://github.com/1995eaton/chromium-vim/issues/569">#569</a> (mappings like <code>map &lt;C-A-M-i&gt; nextTab</code> would work, but <code>map &lt;C-M-A-i&gt; nextTab</code> wouldn’t)</li>

pages/mappings.html

-5
Original file line numberDiff line numberDiff line change
@@ -815,11 +815,6 @@ <h1>Keybindings</h1>
815815
<td style="text-align:left">passKeys</td>
816816
</tr>
817817
<tr>
818-
<td><code>zr</code></td>
819-
<td style="text-align:left">restart Google Chrome</td>
820-
<td style="text-align:left">:chrome://restart&lt;CR&gt;</td>
821-
</tr>
822-
<tr>
823818
<td><code>i</code></td>
824819
<td style="text-align:left">enter insert mode (escape to exit)</td>
825820
<td style="text-align:left">insertMode</td>

0 commit comments

Comments
 (0)