soywiki 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +1 -0
- data/lib/soywiki.rb +1 -1
- data/lib/soywiki.vim +3 -1
- metadata +2 -2
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
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>
|