soywiki 0.6.5 → 0.6.6

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/README.markdown CHANGED
@@ -198,8 +198,8 @@ commands:
198
198
  while the cursor is on the top line to close the new window
199
199
  * `CTRL-h` does the same, but in a regular split window
200
200
  * `q` closes a split window
201
- * `,H` takes you to the `HomePage` of the current namespace
202
- * `,h` takes you to `main.HomePage`
201
+ * `,h` takes you to the `HomePage` of the current namespace
202
+ * `,H` takes you to `main.HomePage`
203
203
 
204
204
  These key mappings may not be very mnemonic, but they are easy to
205
205
  memorize through muscle memory and were chosen to keep the hands
@@ -427,8 +427,8 @@ anything, and it erases the WikiWord that got expanded.
427
427
 
428
428
  * `,x` expands a wiki page seamfully and opens on a vertical split
429
429
  * `,X` expands a wiki page seamlessly and opens on a vertical split
430
- * `,hx` expands a wiki page seamfully and opens on normal split
431
- * `,hX` expands a wiki page seamlessly and opens on a normal split
430
+ * `,xx` expands a wiki page seamfully and opens on normal split
431
+ * `,XX` expands a wiki page seamlessly and opens on a normal split
432
432
  * `q` closes the expanded view window
433
433
 
434
434
  Both modes of expansion are useful when you want to assemble a long
data/lib/soywiki.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'string_ext'
2
2
 
3
3
  module Soywiki
4
- VERSION = '0.6.5'
4
+ VERSION = '0.6.6'
5
5
  WIKI_WORD = /\b([a-z][\w_]+\.)?[A-Z][a-z]+[A-Z]\w*\b/
6
6
  HYPERLINK = %r|\bhttps?://[^ >)\n\]]+|
7
7
 
data/lib/soywiki.vim CHANGED
@@ -642,11 +642,11 @@ func! s:prep_buffer()
642
642
 
643
643
  noremap <buffer> <leader>x :call <SID>expand(0,1)<CR>
644
644
  noremap <buffer> <leader>X :call <SID>expand(1,1)<CR>
645
- noremap <buffer> <leader>hx :call <SID>expand(0,0)<CR>
646
- noremap <buffer> <leader>hX :call <SID>expand(1,0)<CR>
645
+ noremap <buffer> <leader>xx :call <SID>expand(0,0)<CR>
646
+ noremap <buffer> <leader>XX :call <SID>expand(1,0)<CR>
647
647
 
648
- noremap <buffer> <leader>H :call <SID>goto_homepage(0)<CR>
649
- noremap <buffer> <leader>h :call <SID>goto_homepage(1)<CR>
648
+ noremap <buffer> <leader>h :call <SID>goto_homepage(0)<CR>
649
+ noremap <buffer> <leader>H :call <SID>goto_homepage(1)<CR>
650
650
 
651
651
  noremap <silent> <leader>? :call <SID>show_help()<cr>
652
652
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 5
9
- version: 0.6.5
8
+ - 6
9
+ version: 0.6.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi