soywiki 0.6.4 → 0.6.5
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 +2 -2
- data/Rakefile +0 -1
- data/lib/soywiki.rb +1 -1
- data/lib/soywiki.vim +2 -2
- metadata +2 -2
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
|
-
* `,
|
202
|
-
* `,
|
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
|
data/Rakefile
CHANGED
data/lib/soywiki.rb
CHANGED
data/lib/soywiki.vim
CHANGED
@@ -645,8 +645,8 @@ func! s:prep_buffer()
|
|
645
645
|
noremap <buffer> <leader>hx :call <SID>expand(0,0)<CR>
|
646
646
|
noremap <buffer> <leader>hX :call <SID>expand(1,0)<CR>
|
647
647
|
|
648
|
-
noremap <buffer> <leader>
|
649
|
-
noremap <buffer> <leader>
|
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
|
|