Version 0.3.3
* FIXED: `[[wiki word with dots at the end...]]` didn't work. * DONE: Added error handling for `delete wiki word` function. * DONE: Added keybindings `o` and `O` for list items when g:vimwiki_smartCR=1. * DONE: Added keybinding `<Leader>wh` to visit wiki home directory.
This commit is contained in:
@ -3,8 +3,8 @@
|
||||
" Author: Maxim Kim (habamax at gmail dot com)
|
||||
" Home: http://code.google.com/p/vimwiki/
|
||||
" Filenames: *.wiki
|
||||
" Last Change: (16.05.2008 17:14)
|
||||
" Version: 0.3.2
|
||||
" Last Change: (22.05.2008 11:40)
|
||||
" Version: 0.3.3
|
||||
|
||||
" Quit if syntax file is already loaded
|
||||
if version < 600
|
||||
@ -33,7 +33,9 @@ endif
|
||||
syntax match wikiLink `\("[^"(]\+\((\([^)]\+\))\)\?":\)\?\(https\?\|ftp\|gopher\|telnet\|file\|notes\|ms-help\):\(\(\(//\)\|\(\\\\\)\)\+[A-Za-z0-9:#@%/;$~_?+-=.&\-\\\\]*\)`
|
||||
|
||||
" text: *strong*
|
||||
syntax match wikiBold /\(^\|\W\)\zs\*\([^ ].\{-}\)\*/
|
||||
" syntax match wikiBold /\(^\|\W\)\zs\*\([^ ].\{-}\)\*/
|
||||
" syntax match wikiBold /\(^\|\W\)\zs\*.\{-}\*/
|
||||
syntax match wikiBold /\*.\{-}\*/
|
||||
|
||||
" text: _emphasis_
|
||||
syntax match wikiItalic /_.\{-}_/
|
||||
|
Reference in New Issue
Block a user