soywiki 0.6.0 → 0.6.1

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
@@ -470,6 +470,7 @@ SoyWiki adds a few convenient Vim macros.
470
470
  `gqap`. (`:help formatting`)
471
471
  * `,-` inserts a long dashed line
472
472
  * `,d` inserts the current date and time
473
+ * `,D` inserts a long dashed line, followed by the current date and time
473
474
 
474
475
 
475
476
  ## Getting help
data/lib/soywiki.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'string_ext'
2
2
 
3
3
  module Soywiki
4
- VERSION = '0.6.0'
4
+ VERSION = '0.6.1'
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
@@ -652,7 +652,9 @@ func! s:prep_buffer()
652
652
 
653
653
  nnoremap <buffer> \ gqap
654
654
  nnoremap <buffer> <Leader>- o<Esc>k72i-<Esc><CR>
655
- nnoremap <buffer> <Leader>d :r !date<CR>o
655
+ nnoremap <buffer> <Leader>d :r !date<CR>o<Esc>
656
+ nnoremap <Leader>D :r !date<CR><Esc>k72i-<Esc>jo<Esc>
657
+
656
658
  " set nu
657
659
  setlocal completefunc=CompletePageTitle
658
660
  augroup <buffer>
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 0
9
- version: 0.6.0
8
+ - 1
9
+ version: 0.6.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi