Version 0.9.2b

I was playing with python and vimball archives -- as a result CRLFs in a recent vba file. Anyway I hope those evil CRLFs in the past.

  * FIX: Installation on Linux doesn't work. (Dos line endings in Vimball archive file).
  * FIX: Clear out FlexWiki ftplugin's setup. Now you don't have to hack filetype.vim to get rid of unexpected ':setlocal bomb' from FlexWiki's ftplugin.
  * FIX: When write done: it will show another done: in html file.
This commit is contained in:
Maxim Kim 2009-05-05 00:00:00 +00:00 committed by Able Scraper
parent c6553d470c
commit 0dfdf146e2

View File

@ -2,7 +2,7 @@
UseVimball
finish
doc\vimwiki.txt [[[1
1082
1073
*vimwiki.txt* A Personal Wiki for Vim
__ __ ______ __ __ ______ __ __ ______ ~
@ -13,7 +13,7 @@ doc\vimwiki.txt [[[1
\ `\___/ /\_____\\ \_\\ \_\ `\___x___/ /\_____\\ \_\ \_\ /\_____\~
`\/__/ \/_____/ \/_/ \/_/'\/__//__/ \/_____/ \/_/\/_/ \/_____/~
Version: 0.9.2a ~
Version: 0.9.3 ~
==============================================================================
CONTENTS *vimwiki-contents*
@ -40,10 +40,9 @@ CONTENTS *vimwiki-contents*
7. Todo lists...............................|vimwiki-todo-lists|
8. Options .................................|vimwiki-options|
9. Help ....................................|vimwiki-help|
10. Known issues ...........................|vimwiki-issues|
11. Author .................................|vimwiki-author|
12. Changelog ..............................|vimwiki-changelog|
13. License ................................|vimwiki-license|
10. Author .................................|vimwiki-author|
11. Changelog ..............................|vimwiki-changelog|
12. License ................................|vimwiki-license|
==============================================================================
@ -822,23 +821,7 @@ here.
Any help is really appreciated!
==============================================================================
10. Known issues *vimwiki-issues*
Issue:
Opening your wikifiles makes them changed although there were no changes at
all. It happens only if you have .wiki extension which is used by FlexWiki
ftplugin in the first place to make its own set up. Which is successfully
overriden by vimwiki. But.
FlexWiki ftplugin has 'setlocal bomb' that makes your wikifiles sort of
changed.
Fix:
1. Open $VIMRUNTIME/filetype.vim, find FlexWiki and comment it out: >
" au BufNewFile,BufRead *.wiki setf flexwiki
<
2. Or use other than .wiki extension with vimwiki. See |vimwiki-option-ext|.
==============================================================================
11. Author *vimwiki-author*
10. Author *vimwiki-author*
I live in Moscow and you may believe me -- there are no polar bears (no brown
too) here in the streets.
@ -857,11 +840,19 @@ Vimwiki's website: http://code.google.com/p/vimwiki/
Vim plugins website: http://www.vim.org/scripts/script.php?script_id=2226
==============================================================================
12. Changelog *vimwiki-changelog*
11. Changelog *vimwiki-changelog*
0.9.2b
* [fix] Installation on Linux doesn't work. (Dos line endings in Vimball
archive file).
* [fix] Clear out FlexWiki ftplugin's setup. Now you don't have to hack
filetype.vim to get rid of unexpected ':setlocal bomb' from FlexWiki's
ftplugin.
* [fix] When write done: it will show another done: in html file.
0.9.2a
* [fix] Installation on Linux doesn't work. (Dos line endings in
vimwiki_lst.vim).
autoload/vimwiki_lst.vim and indent/vimwiki.vim).
0.9.2
* [new] Option 'folding' added to turn folding on/off.
@ -1075,7 +1066,7 @@ Vim plugins website: http://www.vim.org/scripts/script.php?script_id=2226
* First public version.
==============================================================================
13. License *vimwiki-license*
12. License *vimwiki-license*
GNU General Public License v2
http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
@ -1122,7 +1113,7 @@ execute 'syntax match wikiLink `'.g:vimwiki_rxWeblink.'`'
" over earlier ones. This match is an approximation for the ~70 distinct
syntax match wikiEmoticons /\%((.)\|:[()|$@]\|:-[DOPS()\]|$@]\|;)\|:'(\)/
let g:vimwiki_rxTodo = '\%(TODO:\|DONE:\|FIXME:\|FIXED:\)'
let g:vimwiki_rxTodo = '\C\%(TODO:\|DONE:\|FIXME:\|FIXED:\|XXX:\)'
execute 'syntax match wikiTodo /'. g:vimwiki_rxTodo .'/'
" Load concrete Wiki syntax
@ -1365,7 +1356,7 @@ let g:vimwiki_rxPre1 = '^\s\+[^[:blank:]*#].*$'
let g:vimwiki_rxPreStart = '<pre>'
let g:vimwiki_rxPreEnd = '<\/pre>'
autoload\vimwiki_html.vim [[[1
890
889
" Vimwiki autoload plugin file
" Export to HTML
" Author: Maxim Kim <habamax@gmail.com>
@ -1802,7 +1793,6 @@ function! s:process_tags(line) "{{{
\ '', '', 0, 's:make_wikiword_link')
let line = s:make_tag(line, g:vimwiki_rxItalic, '<em>', '</em>')
let line = s:make_tag(line, g:vimwiki_rxBold, '<strong>', '</strong>')
" let line = s:make_tag(line, g:vimwiki_rxItalic, '<em>', '</em>')
let line = s:make_tag(line, g:vimwiki_rxTodo,
\ '<span class="todo">', '</span>', 0)
let line = s:make_tag(line, g:vimwiki_rxDelText,
@ -3116,7 +3106,7 @@ nmap <silent><buffer> - :call vimwiki#RemoveHeaderLevel()<CR>
" KEYBINDINGS }}}
plugin\vimwiki.vim [[[1
211
216
" Vimwiki plugin file
" Author: Maxim Kim <habamax@gmail.com>
" Home: http://code.google.com/p/vimwiki/
@ -3274,6 +3264,11 @@ for wiki in g:vimwiki_list
endif
endfor
augroup filetypedetect
" clear FlexWiki's stuff
au! * *.wiki
augroup end
augroup vimwiki
autocmd!
for ext in keys(extensions)