soywiki 0.6.4 → 0.6.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
data/Rakefile CHANGED
@@ -10,7 +10,6 @@ Bundler::GemHelper.install_tasks
10
10
 
11
11
 
12
12
  desc "release and build and push new website"
13
- task :bumppush => [:bump, :release, :web]
14
13
  task :push => [:release, :web]
15
14
 
16
15
  desc "Bumps version number up one and git commits"
@@ -1,7 +1,7 @@
1
1
  require 'string_ext'
2
2
 
3
3
  module Soywiki
4
- VERSION = '0.6.4'
4
+ VERSION = '0.6.5'
5
5
  WIKI_WORD = /\b([a-z][\w_]+\.)?[A-Z][a-z]+[A-Z]\w*\b/
6
6
  HYPERLINK = %r|\bhttps?://[^ >)\n\]]+|
7
7
 
@@ -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>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
- - 4
9
- version: 0.6.4
8
+ - 5
9
+ version: 0.6.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi