Version 1.0
* NEW: Issue 41: Table cell and column text objects. See `vimwiki-text-objects`. * NEW: Issue 42: Commands to move table columns left and right. See `:VimwikiTableMoveColumnLeft` and `:VimwikiTableMoveColumnRight`. * NEW: Issue 44: `<S-Tab>` should move cursor to the previous table cell. * NEW: Issue 45: It should be possible to indent tables. Indented tables are centered in html. * NEW: Issue 46: Do not htmlize some wiki pages (blacklist). New placeholder is added: `%nohtml`. See `vimwiki-nohtml`. * FIX: Issue 47: Lists aren't HTMLized properly. * FIX: Issue 48: With autochdir it is impossible to have path_html such as `d:\vimwiki\html\` * FIX: Issue 49: Table is not HTMLized properly at the end of wiki page. * FIX: Issue 50: Inline formatting is not performed in table cells. * FIX: Issue 51: Cannot insert '-' (minus) into table cells of the first column. * FIX: Issue 52: Table cell width is incorrect when double wide characters are used (ie. Chinese). Check `g:vimwiki_CJK_length`. * NEW: Issue 53: Wiki markup can not nested. (Use links and inline markup in Headers). * NEW: Issue 54: Highlight for placeholders. * NEW: Issue 56: Directory indexes. See `g:vimwiki_dir_link` option and `:VimwikiGenerateLinks` command. * NEW: Issue 58: Html new lines with `<br />`. Could be inserted with `<S-CR>` in insert mode. * FIX: Issue 59: List item's text can't be started from `*`. * NEW: Issue 60: Links inside completed gtd-items. * NEW: Issue 61: Headers numbering. See `g:vimwiki_html_header_numbering` and `g:vimwiki_html_header_numbering_sym` options. * FIX: Issue 63: Table cannot have leading empty cells in html. * FIX: Issue 65: Table separator is not htmlized right if on top of the table. * FIX: Issue 66: Table empty cells are very small in html. * FIX: Issue 67: Wrong html conversion of multilined list item with bold text on the start of next line. * FIX: Issue 68: auto-indent problem with langmap. * FIX: Issue 73: Link navigation by Tab. "Escaped" wiki-word should be skipped for navigation with `<tab>`. * FIX: Issue 75: `code` syntax doesn't display correctly in toc. * FIX: Issue 77: Diary index only showing link to today's diary entry file for extensions other than '.wiki'. * FIX: Issue 79: Further calendar.vim integration -- add sign to calendar date if it has corresponding diary page. * FIX: Issue 80: Debian Lenny GUI Vim 7.2 has problems with toggling inner todo list items. * FIX: Issue 81: Don't convert `WikiWord` as a link in html when `let g:vimwiki_camel_case = 0`
This commit is contained in:
		| @@ -1,3 +1,4 @@ | ||||
| " vim:tabstop=2:shiftwidth=2:expandtab:foldmethod=marker:textwidth=79 | ||||
| " Vimwiki filetype plugin file | ||||
| " Author: Maxim Kim <habamax@gmail.com> | ||||
| " Home: http://code.google.com/p/vimwiki/ | ||||
| @@ -41,6 +42,19 @@ inoremap <buffer> <expr> <CR> vimwiki_lst#insertCR() | ||||
| nnoremap <buffer> o :call vimwiki_lst#insertOo('o')<CR>a | ||||
| nnoremap <buffer> O :call vimwiki_lst#insertOo('O')<CR>a | ||||
|  | ||||
| if !empty(&langmap) | ||||
|   " Valid only if langmap is a comma separated pairs of chars | ||||
|   let l_o = matchstr(&langmap, '\C,\zs.\zeo,') | ||||
|   if l_o | ||||
|     exe 'nnoremap <buffer> '.l_o.' :call vimwiki_lst#insertOo("o")<CR>a' | ||||
|   endif | ||||
|  | ||||
|   let l_O = matchstr(&langmap, '\C,\zs.\zeO,') | ||||
|   if l_O | ||||
|     exe 'nnoremap <buffer> '.l_O.' :call vimwiki_lst#insertOo("O")<CR>a' | ||||
|   endif | ||||
| endif | ||||
|  | ||||
| " COMMENTS }}} | ||||
|  | ||||
| " FOLDING for headers and list items using expr fold method. {{{ | ||||
| @@ -205,6 +219,8 @@ command! -buffer VimwikiVSplitWord call vimwiki#WikiFollowWord('vsplit') | ||||
|  | ||||
| command! -buffer -range VimwikiToggleListItem call vimwiki_lst#ToggleListItem(<line1>, <line2>) | ||||
|  | ||||
| command! -buffer VimwikiGenerateLinks call vimwiki#generate_links() | ||||
|  | ||||
| exe 'command! -buffer -nargs=* VimwikiSearch vimgrep <args> '. | ||||
|       \ escape(VimwikiGet('path').'**/*'.VimwikiGet('ext'), ' ') | ||||
|  | ||||
| @@ -215,6 +231,8 @@ exe 'command! -buffer -nargs=* VWS vimgrep <args> '. | ||||
| command! -buffer -nargs=* VimwikiTable call vimwiki_tbl#create(<f-args>) | ||||
| command! -buffer VimwikiTableAlignQ call vimwiki_tbl#align_or_cmd('gqq') | ||||
| command! -buffer VimwikiTableAlignW call vimwiki_tbl#align_or_cmd('gww') | ||||
| command! -buffer VimwikiTableMoveColumnLeft call vimwiki_tbl#move_column_left() | ||||
| command! -buffer VimwikiTableMoveColumnRight call vimwiki_tbl#move_column_right() | ||||
|  | ||||
| " COMMANDS }}} | ||||
|  | ||||
| @@ -291,21 +309,39 @@ noremap <silent><script><buffer> | ||||
| if g:vimwiki_table_auto_fmt | ||||
|   inoremap <expr> <buffer> <CR> vimwiki_tbl#kbd_cr() | ||||
|   inoremap <expr> <buffer> <Tab> vimwiki_tbl#kbd_tab() | ||||
|   inoremap <expr> <buffer> <S-Tab> vimwiki_tbl#kbd_shift_tab() | ||||
| endif | ||||
|  | ||||
| nnoremap <buffer> gqq :VimwikiTableAlignQ<CR> | ||||
| nnoremap <buffer> gww :VimwikiTableAlignW<CR> | ||||
| nnoremap <buffer> <A-Left> :VimwikiTableMoveColumnLeft<CR> | ||||
| nnoremap <buffer> <A-Right> :VimwikiTableMoveColumnRight<CR> | ||||
|  | ||||
| " Misc mappings | ||||
| inoremap <buffer> <S-CR> <br /><CR> | ||||
|  | ||||
|  | ||||
| " Text objects {{{ | ||||
| omap <silent><buffer> ah :<C-U>call vimwiki#TO_header(0, 0)<CR> | ||||
| vmap <silent><buffer> ah :<C-U>call vimwiki#TO_header(0, 1)<CR> | ||||
| onoremap <silent><buffer> ah :<C-U>call vimwiki#TO_header(0, 0)<CR> | ||||
| vnoremap <silent><buffer> ah :<C-U>call vimwiki#TO_header(0, 1)<CR> | ||||
|  | ||||
| omap <silent><buffer> ih :<C-U>call vimwiki#TO_header(1, 0)<CR> | ||||
| vmap <silent><buffer> ih :<C-U>call vimwiki#TO_header(1, 1)<CR> | ||||
| onoremap <silent><buffer> ih :<C-U>call vimwiki#TO_header(1, 0)<CR> | ||||
| vnoremap <silent><buffer> ih :<C-U>call vimwiki#TO_header(1, 1)<CR> | ||||
|  | ||||
| nmap <silent><buffer> = :call vimwiki#AddHeaderLevel()<CR> | ||||
| nmap <silent><buffer> - :call vimwiki#RemoveHeaderLevel()<CR> | ||||
| onoremap <silent><buffer> a\ :<C-U>call vimwiki#TO_table_cell(0, 0)<CR> | ||||
| vnoremap <silent><buffer> a\ :<C-U>call vimwiki#TO_table_cell(0, 1)<CR> | ||||
|  | ||||
| onoremap <silent><buffer> i\ :<C-U>call vimwiki#TO_table_cell(1, 0)<CR> | ||||
| vnoremap <silent><buffer> i\ :<C-U>call vimwiki#TO_table_cell(1, 1)<CR> | ||||
|  | ||||
| onoremap <silent><buffer> ac :<C-U>call vimwiki#TO_table_col(0, 0)<CR> | ||||
| vnoremap <silent><buffer> ac :<C-U>call vimwiki#TO_table_col(0, 1)<CR> | ||||
|  | ||||
| onoremap <silent><buffer> ic :<C-U>call vimwiki#TO_table_col(1, 0)<CR> | ||||
| vnoremap <silent><buffer> ic :<C-U>call vimwiki#TO_table_col(1, 1)<CR> | ||||
|  | ||||
| noremap <silent><buffer> = :call vimwiki#AddHeaderLevel()<CR> | ||||
| noremap <silent><buffer> - :call vimwiki#RemoveHeaderLevel()<CR> | ||||
|  | ||||
| " }}} | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user