<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -58,22 +58,20 @@
 &quot;
 &quot; * Line continuation:
 &quot;
-&quot;   - Key mappings and abbreviations: Write \ at the previous column of the
-&quot;     start of the {rhs}.
+&quot;   - At the middle of key mappings, abbreviations and other proler places:
+&quot;     Write &quot;\&quot; at the previous column of the start of the {rhs}.
 &quot;
-&quot;   - Others: Write \ at the same column of the end of the previous command.
-&quot;     Note that don't include &quot;!&quot;.
+&quot;   - Others: Write &quot;\&quot; at the same column of the beggining of the command.
 &quot;
 &quot;   - Examples:
 &quot;
-&quot;     silent! execute foo()
-&quot;          \        . bar()
-&quot;          \        . baz()
+&quot;     execute &quot;echo&quot;
+&quot;     \       &quot;foo&quot;
+&quot;     \       &quot;baz&quot;
 &quot;
-&quot;     map &lt;silent&gt; xyzzy  :&lt;C-u&gt;execute foo()
-&quot;                        \ bar()
-&quot;                        \ baz()
-&quot;                        \&lt;Return&gt;
+&quot;     map &lt;silent&gt; xyzzy  :&lt;C-u&gt;if has('cryptv')
+&quot;                        \|  X
+&quot;                        \|endif&lt;Return&gt;
 
 
 
@@ -304,8 +302,8 @@ function! s:OnFileType(group, filetype, ...)
     return
   endif
   let filetype = (a:filetype =~ SPECIAL_CHARS
-    \             ? a:filetype
-    \             : substitute('{x,x.*,*.x,*.x.*}', 'x', a:filetype, 'g'))
+  \               ? a:filetype
+  \               : substitute('{x,x.*,*.x,*.x.*}', 'x', a:filetype, 'g'))
 
   execute 'autocmd' group 'FileType' filetype commands
 endfunction
@@ -364,18 +362,18 @@ endfunction
 
 
 autocmd MyAutoCmd FileType vim
-      \   syntax keyword my_vim_MAP MAP
-      \     skipwhite
-      \     nextgroup=my_vim_MAP_option,my_vim_MAP_modes,vimMapMod,vimMapLhs
-      \ | syntax match my_vim_MAP_option '&lt;\(echo\|re\)&gt;'
-      \     skipwhite
-      \     nextgroup=my_vim_MAP_option,my_vim_MAP_modes,vimMapMod,vimMapLhs
-      \ | syntax match my_vim_MAP_modes '\&lt;[cilnosvx]\+\&gt;'
-      \     skipwhite
-      \     nextgroup=vimMapMod,vimMapLhs
-      \ | highlight default link my_vim_MAP vimMap
-      \ | highlight default link my_vim_MAP_option vimUserAttrbCmplt
-      \ | highlight default link my_vim_MAP_modes vimUserAttrbKey
+\   syntax keyword my_vim_MAP MAP
+\     skipwhite
+\     nextgroup=my_vim_MAP_option,my_vim_MAP_modes,vimMapMod,vimMapLhs
+\ | syntax match my_vim_MAP_option '&lt;\(echo\|re\)&gt;'
+\     skipwhite
+\     nextgroup=my_vim_MAP_option,my_vim_MAP_modes,vimMapMod,vimMapLhs
+\ | syntax match my_vim_MAP_modes '\&lt;[cilnosvx]\+\&gt;'
+\     skipwhite
+\     nextgroup=vimMapMod,vimMapLhs
+\ | highlight default link my_vim_MAP vimMap
+\ | highlight default link my_vim_MAP_option vimUserAttrbCmplt
+\ | highlight default link my_vim_MAP_modes vimUserAttrbKey
 
 
 
@@ -407,7 +405,7 @@ endfunction
 &quot; Alternate :cd which uses 'cdpath' for completion  &quot;{{{2
 
 command! -complete=customlist,&lt;SID&gt;CommandComplete_cdpath -nargs=1 CD
-      \ TabCD &lt;args&gt;
+\ TabCD &lt;args&gt;
 
 function! s:CommandComplete_cdpath(arglead, cmdline, cursorpos)
   return split(globpath(&amp;cdpath, a:arglead . '*/'), &quot;\n&quot;)
@@ -494,13 +492,13 @@ endfunction
 &quot; :edit with specified 'fileencoding'.  &quot;{{{2
 
 command! -nargs=? -complete=file -bang -bar Cp932
-      \ edit&lt;bang&gt; ++enc=cp932 &lt;args&gt;
+\ edit&lt;bang&gt; ++enc=cp932 &lt;args&gt;
 command! -nargs=? -complete=file -bang -bar Eucjp
-      \ edit&lt;bang&gt; ++enc=euc-jp &lt;args&gt;
+\ edit&lt;bang&gt; ++enc=euc-jp &lt;args&gt;
 command! -nargs=? -complete=file -bang -bar Iso2022jp
-      \ edit&lt;bang&gt; ++enc=iso-2022-jp &lt;args&gt;
+\ edit&lt;bang&gt; ++enc=iso-2022-jp &lt;args&gt;
 command! -nargs=? -complete=file -bang -bar Utf8
-      \ edit&lt;bang&gt; ++enc=utf-8 &lt;args&gt;
+\ edit&lt;bang&gt; ++enc=utf-8 &lt;args&gt;
 
 command! -nargs=? -complete=file -bang -bar Jis  Iso2022jp&lt;bang&gt; &lt;args&gt;
 command! -nargs=? -complete=file -bang -bar Sjis  Cp932&lt;bang&gt; &lt;args&gt;
@@ -558,14 +556,14 @@ endfunction
 &quot; Per-tab current directory  &quot;{{{2
 
 command! -nargs=1 TabCD
-      \   execute 'cd' &lt;q-args&gt;
-      \ | let t:cwd = getcwd()
+\   execute 'cd' &lt;q-args&gt;
+\ | let t:cwd = getcwd()
 
 autocmd MyAutoCmd TabEnter *
-      \   if !exists('t:cwd')
-      \ |   let t:cwd = getcwd()
-      \ | endif
-      \ | execute 'cd' t:cwd
+\   if !exists('t:cwd')
+\ |   let t:cwd = getcwd()
+\ | endif
+\ | execute 'cd' t:cwd
 
 
 
@@ -678,7 +676,7 @@ let s:_vcs_branch_name_cache = {}  &quot; dir_path = [branch_name, key_file_mtime]
 function! s:vcs_branch_name(dir)
   let cache_entry = get(s:_vcs_branch_name_cache, a:dir, 0)
   if cache_entry is 0
-   \ || cache_entry[1] &lt; getftime(s:_vcs_branch_name_key_file(a:dir))
+  \  || cache_entry[1] &lt; getftime(s:_vcs_branch_name_key_file(a:dir))
     unlet cache_entry
     let cache_entry = s:_vcs_branch_name(a:dir)
     let s:_vcs_branch_name_cache[a:dir] = cache_entry
@@ -746,18 +744,18 @@ function! s:ExtendHighlight(target_group, original_group, new_settings)
     let original_settings = ''
   elseif resp =~# 'xxx links to'
     return s:ExtendHighlight(
-         \   a:target_group,
-         \   substitute(resp, '\_.*xxx links to\s\+\(\S\+\)', '\1', ''),
-         \   a:new_settings
-         \ )
+    \        a:target_group,
+    \        substitute(resp, '\_.*xxx links to\s\+\(\S\+\)', '\1', ''),
+    \        a:new_settings
+    \      )
   else  &quot; xxx {key}={arg} ...
     let t = substitute(resp,'\_.*xxx\(\(\_s\+[^= \t]\+=[^= \t]\+\)*\)','\1','')
     let original_settings = substitute(t, '\_s\+', ' ', 'g')
   endif
 
   silent execute 'highlight' a:target_group 'NONE'
-       \     '|' 'highlight' a:target_group original_settings
-       \     '|' 'highlight' a:target_group a:new_settings
+  \          '|' 'highlight' a:target_group original_settings
+  \          '|' 'highlight' a:target_group a:new_settings
 endfunction
 
 
@@ -770,7 +768,7 @@ function! s:Count(...)
 endfunction
 
 command! -nargs=* -complete=expression -range -count=0 Execute
-      \ call s:Execute(&lt;f-args&gt;)
+\ call s:Execute(&lt;f-args&gt;)
 function! s:Execute(...)
   let args = []
   for a in a:000
@@ -833,11 +831,11 @@ endfunction
 
 
 command! -bar -nargs=? TabTitle
-      \   if &lt;q-args&gt; == ''
-      \ |   let t:title = input(&quot;Set tabpage's title to: &quot;,'')
-      \ | else
-      \ |   let t:title = &lt;q-args&gt;
-      \ | endif
+\   if &lt;q-args&gt; == ''
+\ |   let t:title = input(&quot;Set tabpage's title to: &quot;,'')
+\ | else
+\ |   let t:title = &lt;q-args&gt;
+\ | endif
 
 
 &quot; Set up the layout of my usual days.
@@ -888,14 +886,14 @@ function! s:KeyLayout(physical_key, logical_key)
   execute 'Allnoremap' indirect_key a:logical_key
 endfunction
 command! -nargs=+ Allmap
-      \   execute 'map' &lt;q-args&gt;
-      \ | execute 'map!' &lt;q-args&gt;
+\   execute 'map' &lt;q-args&gt;
+\ | execute 'map!' &lt;q-args&gt;
 command! -nargs=+ Allnoremap
-      \   execute 'noremap' &lt;q-args&gt;
-      \ | execute 'noremap!' &lt;q-args&gt;
+\   execute 'noremap' &lt;q-args&gt;
+\ | execute 'noremap!' &lt;q-args&gt;
 command! -nargs=+ Allunmap
-      \   execute 'silent! unmap' &lt;q-args&gt;
-      \ | execute 'silent! unmap!' &lt;q-args&gt;
+\   execute 'silent! unmap' &lt;q-args&gt;
+\ | execute 'silent! unmap!' &lt;q-args&gt;
 
 
 if $ENV_WORKING ==# 'mac' || $USER ==# 'kecak'
@@ -1260,7 +1258,7 @@ nmap     &lt;Esc&gt;    &lt;C-w&gt;
 
 for i in ['H', 'J', 'K', 'L']
   execute 'nnoremap &lt;silent&gt; &lt;Esc&gt;'.i
-        \ ':&lt;C-u&gt;call &lt;SID&gt;MoveWindowThenEqualizeIfNecessary(&quot;'.i.'&quot;)&lt;Return&gt;'
+  \       ':&lt;C-u&gt;call &lt;SID&gt;MoveWindowThenEqualizeIfNecessary(&quot;'.i.'&quot;)&lt;Return&gt;'
 endfor
 unlet i
 
@@ -1289,16 +1287,16 @@ endfunction
 &quot; but the target to scroll is the previous window.
 for i in ['f', 'b', 'd', 'u', 'e', 'y']
   execute 'nnoremap &lt;silent&gt; &lt;Esc&gt;&lt;C-'.i.'&gt;'
-        \ ':&lt;C-u&gt;call &lt;SID&gt;ScrollOtherWindow(&quot;&lt;Bslash&gt;&lt;LT&gt;C-'.i.'&gt;&quot;)&lt;Return&gt;'
+  \       ':&lt;C-u&gt;call &lt;SID&gt;ScrollOtherWindow(&quot;&lt;Bslash&gt;&lt;LT&gt;C-'.i.'&gt;&quot;)&lt;Return&gt;'
 endfor
 unlet i
 
 
 &quot; Adjust the height of the current window as same as the selected range.
 vnoremap &lt;silent&gt; _
-  \ &lt;Esc&gt;:execute (line(&quot;'&gt;&quot;) - line(&quot;'&lt;&quot;) + 1) 'wincmd' '_'&lt;Return&gt;`&lt;zt
+\ &lt;Esc&gt;:execute (line(&quot;'&gt;&quot;) - line(&quot;'&lt;&quot;) + 1) 'wincmd' '_'&lt;Return&gt;`&lt;zt
 nnoremap &lt;silent&gt; _
-  \ :set operatorfunc=&lt;SID&gt;AdjustWindowHeightToTheSelection&lt;Return&gt;g@
+\ :set operatorfunc=&lt;SID&gt;AdjustWindowHeightToTheSelection&lt;Return&gt;g@
 function! s:AdjustWindowHeightToTheSelection(visual_mode)
   normal! `[v`]
   normal _
@@ -1487,8 +1485,8 @@ function! s:PseudoSuspendWithAutomaticCD()
     &quot; To avoid adding the cd script into the command-line history,
     &quot; there are extra leading whitespaces in the cd script.
     silent execute '!screen -X eval'
-         \         '''select another'''
-         \         '''stuff &quot;  cd \&quot;'.getcwd().'\&quot;  \#\#,vim-auto-cd\015&quot;'''
+    \              '''select another'''
+    \              '''stuff &quot;  cd \&quot;'.getcwd().'\&quot;  \#\#,vim-auto-cd\015&quot;'''
     redraw!
     let s:gnu_screen_availablep = (v:shell_error == 0)
   endif
@@ -1515,7 +1513,7 @@ vnoremap g/  :g/&lt;Return&gt;
 &quot; Here also contains misc. autocommands.
 
 autocmd MyAutoCmd FileType *
-      \ call &lt;SID&gt;FileType_any()
+\ call &lt;SID&gt;FileType_any()
 function! s:FileType_any()
   &quot; To use my global mappings for section jumping,
   &quot; remove buffer local mappings defined by ftplugin.
@@ -1540,27 +1538,27 @@ endfunction
 &quot; Note that if the buffer is not 'modifiable',
 &quot; its 'fileencoding' cannot be changed, so that such buffers are skipped.
 autocmd MyAutoCmd BufReadPost *
-      \   if &amp;modifiable &amp;&amp; !search('[^\x00-\x7F]', 'cnw')
-      \ |   setlocal fileencoding=
-      \ | endif
+\   if &amp;modifiable &amp;&amp; !search('[^\x00-\x7F]', 'cnw')
+\ |   setlocal fileencoding=
+\ | endif
 
 
 &quot; Adjust highlight settings according to the current colorscheme.
 autocmd MyAutoCmd ColorScheme *
-      \   call &lt;SID&gt;ExtendHighlight('Pmenu', 'Normal', 'cterm=underline')
-      \ | call &lt;SID&gt;ExtendHighlight('PmenuSel', 'Search', 'cterm=underline')
-      \ | call &lt;SID&gt;ExtendHighlight('PmenuSbar', 'Normal', 'cterm=reverse')
-      \ | call &lt;SID&gt;ExtendHighlight('PmenuThumb', 'Search', '')
-      \
-      \ | highlight TabLineSel
-      \             term=bold,reverse
-      \             cterm=bold,underline ctermfg=lightgray ctermbg=darkgray
-      \ | highlight TabLine
-      \             term=reverse
-      \             cterm=NONE           ctermfg=lightgray ctermbg=darkgray
-      \ | highlight TabLineFill
-      \             term=reverse
-      \             cterm=NONE           ctermfg=lightgray ctermbg=darkgray
+\   call &lt;SID&gt;ExtendHighlight('Pmenu', 'Normal', 'cterm=underline')
+\ | call &lt;SID&gt;ExtendHighlight('PmenuSel', 'Search', 'cterm=underline')
+\ | call &lt;SID&gt;ExtendHighlight('PmenuSbar', 'Normal', 'cterm=reverse')
+\ | call &lt;SID&gt;ExtendHighlight('PmenuThumb', 'Search', '')
+\
+\ | highlight TabLineSel
+\             term=bold,reverse
+\             cterm=bold,underline ctermfg=lightgray ctermbg=darkgray
+\ | highlight TabLine
+\             term=reverse
+\             cterm=NONE           ctermfg=lightgray ctermbg=darkgray
+\ | highlight TabLineFill
+\             term=reverse
+\             cterm=NONE           ctermfg=lightgray ctermbg=darkgray
 doautocmd MyAutoCmd ColorScheme because-colorscheme-has-been-set-above.
 
 
@@ -1569,7 +1567,7 @@ doautocmd MyAutoCmd ColorScheme because-colorscheme-has-been-set-above.
 &quot; Note: To use nonstandard event NCmdUndefined, use the following version:
 &quot;       http://repo.or.cz/w/vim-kana.git?a=shortlog;h=hack/ncmdundefined
 silent! autocmd MyAutoCmd NCmdUndefined *
-  \ call &lt;SID&gt;ShiftToInsertMode(expand('&lt;amatch&gt;'))
+\ call &lt;SID&gt;ShiftToInsertMode(expand('&lt;amatch&gt;'))
 function! s:ShiftToInsertMode(not_a_command_character)
   if char2nr(a:not_a_command_character) &lt;= 0xFF  &quot; not a multibyte character?
     return  &quot; should beep as same as the default behavior, but how?
@@ -1603,7 +1601,7 @@ autocmd MyAutoCmd InsertLeave *  set nopaste
 &quot; css  &quot;{{{2
 
 autocmd MyAutoCmd FileType css
-      \ call &lt;SID&gt;SetShortIndent()
+\ call &lt;SID&gt;SetShortIndent()
 
 
 
@@ -1611,17 +1609,17 @@ autocmd MyAutoCmd FileType css
 &quot; dosini (.ini)  &quot;{{{2
 
 autocmd MyAutoCmd FileType dosini
-      \ call &lt;SID&gt;FileType_dosini()
+\ call &lt;SID&gt;FileType_dosini()
 
 function! s:FileType_dosini()
   nnoremap &lt;buffer&gt; &lt;silent&gt; ]]
-         \ :&lt;C-u&gt;call &lt;SID&gt;JumpSectionN('/^\[')&lt;Return&gt;
+  \ :&lt;C-u&gt;call &lt;SID&gt;JumpSectionN('/^\[')&lt;Return&gt;
   nnoremap &lt;buffer&gt; &lt;silent&gt; ][
-         \ :&lt;C-u&gt;call &lt;SID&gt;JumpSectionN('/\n\[\@=')&lt;Return&gt;
+  \ :&lt;C-u&gt;call &lt;SID&gt;JumpSectionN('/\n\[\@=')&lt;Return&gt;
   nnoremap &lt;buffer&gt; &lt;silent&gt; [[
-         \ :&lt;C-u&gt;call &lt;SID&gt;JumpSectionN('?^\[')&lt;Return&gt;
+  \ :&lt;C-u&gt;call &lt;SID&gt;JumpSectionN('?^\[')&lt;Return&gt;
   nnoremap &lt;buffer&gt; &lt;silent&gt; []
-         \ :&lt;C-u&gt;call &lt;SID&gt;JumpSectionN('?\n\[\@=')&lt;Return&gt;
+  \ :&lt;C-u&gt;call &lt;SID&gt;JumpSectionN('?\n\[\@=')&lt;Return&gt;
 endfunction
 
 
@@ -1630,10 +1628,10 @@ endfunction
 &quot; help  &quot;{{{2
 
 autocmd MyAutoCmd FileType help
-      \ call textobj#user#define('|[^| \t]*|', '', '', {
-      \                            'move-to-next': '&lt;buffer&gt; gj',
-      \                            'move-to-prev': '&lt;buffer&gt; gk',
-      \                          })
+\ call textobj#user#define('|[^| \t]*|', '', '', {
+\                            'move-to-next': '&lt;buffer&gt; gj',
+\                            'move-to-prev': '&lt;buffer&gt; gk',
+\                          })
 
 
 
@@ -1641,7 +1639,7 @@ autocmd MyAutoCmd FileType help
 &quot; lua  &quot;{{{2
 
 autocmd MyAutoCmd FileType lua
-      \ call &lt;SID&gt;SetShortIndent()
+\ call &lt;SID&gt;SetShortIndent()
 
 
 
@@ -1651,7 +1649,7 @@ autocmd MyAutoCmd FileType lua
 &quot; Consider these buffers have &quot;another&quot; filetype=netrw.
 
 autocmd MyAutoCmd BufReadPost {dav,file,ftp,http,rcp,rsync,scp,sftp}://*
-      \ setlocal bufhidden=hide
+\ setlocal bufhidden=hide
 
 
 
@@ -1659,10 +1657,10 @@ autocmd MyAutoCmd BufReadPost {dav,file,ftp,http,rcp,rsync,scp,sftp}://*
 &quot; python  &quot;{{{2
 
 autocmd MyAutoCmd FileType python
-      \   call &lt;SID&gt;SetShortIndent()
-      \ | let python_highlight_numbers=1
-      \ | let python_highlight_builtins=1
-      \ | let python_highlight_space_errors=1
+\   call &lt;SID&gt;SetShortIndent()
+\ | let python_highlight_numbers=1
+\ | let python_highlight_builtins=1
+\ | let python_highlight_space_errors=1
 
 
 
@@ -1670,7 +1668,7 @@ autocmd MyAutoCmd FileType python
 &quot; ruby  &quot;{{{2
 
 autocmd MyAutoCmd FileType ruby
-      \   call &lt;SID&gt;SetShortIndent()
+\   call &lt;SID&gt;SetShortIndent()
 
 
 
@@ -1678,7 +1676,7 @@ autocmd MyAutoCmd FileType ruby
 &quot; sh  &quot;{{{2
 
 autocmd MyAutoCmd FileType sh
-      \ call &lt;SID&gt;SetShortIndent()
+\ call &lt;SID&gt;SetShortIndent()
 
 &quot; FIXME: use $SHELL.
 let g:is_bash = 1
@@ -1689,7 +1687,7 @@ let g:is_bash = 1
 &quot; tex  &quot;{{{2
 
 autocmd MyAutoCmd FileType tex
-      \ call &lt;SID&gt;SetShortIndent()
+\ call &lt;SID&gt;SetShortIndent()
 
 
 
@@ -1698,7 +1696,7 @@ autocmd MyAutoCmd FileType tex
 &quot; 'filetype' for commit log buffers created by vcsi.
 
 autocmd MyAutoCmd FileType {vcsicommit,*.vcsicommit}
-      \ setlocal comments=sr:*,mb:\ ,ex:NOT_DEFINED
+\ setlocal comments=sr:*,mb:\ ,ex:NOT_DEFINED
 
 
 
@@ -1706,7 +1704,7 @@ autocmd MyAutoCmd FileType {vcsicommit,*.vcsicommit}
 &quot; vim  &quot;{{{2
 
 autocmd MyAutoCmd FileType vim
-      \ call &lt;SID&gt;FileType_vim()
+\ call &lt;SID&gt;FileType_vim()
 
 function! s:FileType_vim()
   call &lt;SID&gt;SetShortIndent()
@@ -1730,12 +1728,12 @@ function! s:FileType_vim()
   &quot; autoload#function() and dictionary.function().
   syntax clear vimFunc
   syntax match vimFunc
-    \ &quot;\%([sS]:\|&lt;[sS][iI][dD]&gt;\|\&lt;\%(\I\i*[#.]\)\+\)\=\I\i*\ze\s*(&quot;
-    \ contains=vimFuncName,vimUserFunc,vimCommand,vimNotFunc,vimExecute
+  \ &quot;\%([sS]:\|&lt;[sS][iI][dD]&gt;\|\&lt;\%(\I\i*[#.]\)\+\)\=\I\i*\ze\s*(&quot;
+  \ contains=vimFuncName,vimUserFunc,vimCommand,vimNotFunc,vimExecute
   syntax clear vimUserFunc
   syntax match vimUserFunc contained
-    \ &quot;\%([sS]:\|&lt;[sS][iI][dD]&gt;\|\&lt;\%(\I\i*[#.]\)\+\)\i\+\|\&lt;\u\i*\&gt;\|\&lt;if\&gt;&quot;
-    \ contains=vimNotation,vimCommand
+  \ &quot;\%([sS]:\|&lt;[sS][iI][dD]&gt;\|\&lt;\%(\I\i*[#.]\)\+\)\i\+\|\&lt;\u\i*\&gt;\|\&lt;if\&gt;&quot;
+  \ contains=vimNotation,vimCommand
 endfunction
 
 
@@ -1744,7 +1742,7 @@ endfunction
 &quot; XML/SGML and other applications  &quot;{{{2
 
 autocmd MyAutoCmd FileType html,xhtml,xml,xslt
-      \ call &lt;SID&gt;FileType_xml()
+\ call &lt;SID&gt;FileType_xml()
 
 function! s:FileType_xml()
   call &lt;SID&gt;SetShortIndent()
@@ -1791,31 +1789,31 @@ function! s:FileType_xml_comment_dispatch()
   return get(s:FileType_xml_comment_data, c, c)
 endfunction
 let s:FileType_xml_comment_data = {
-  \   &quot;\&lt;Space&gt;&quot;: &quot;\&lt;Space&gt;\&lt;Space&gt;\&lt;Left&gt;&quot;,
-  \   &quot;\&lt;Return&gt;&quot;: &quot;\&lt;Return&gt;X\&lt;Return&gt;\&lt;Up&gt;\&lt;End&gt;\&lt;BS&gt;&quot;,
-  \   '_': '',
-  \   '-': '',
-  \   '{': '{{'. &quot;{\&lt;Esc&gt;&quot;,
-  \   '}': '}}'. &quot;}\&lt;Esc&gt;&quot;,
-  \   '1': '{{'.&quot;{1\&lt;Esc&gt;&quot;,
-  \   '2': '{{'.&quot;{2\&lt;Esc&gt;&quot;,
-  \   '3': '{{'.&quot;{3\&lt;Esc&gt;&quot;,
-  \   '4': '{{'.&quot;{4\&lt;Esc&gt;&quot;,
-  \   '5': '{{'.&quot;{5\&lt;Esc&gt;&quot;,
-  \   '6': '{{'.&quot;{6\&lt;Esc&gt;&quot;,
-  \   '7': '{{'.&quot;{7\&lt;Esc&gt;&quot;,
-  \   '8': '{{'.&quot;{8\&lt;Esc&gt;&quot;,
-  \   '9': '{{'.&quot;{9\&lt;Esc&gt;&quot;,
-  \   '!': '{{'.&quot;{1\&lt;Esc&gt;&quot;,
-  \   '@': '{{'.&quot;{2\&lt;Esc&gt;&quot;,
-  \   '#': '{{'.&quot;{3\&lt;Esc&gt;&quot;,
-  \   '$': '{{'.&quot;{4\&lt;Esc&gt;&quot;,
-  \   '%': '{{'.&quot;{5\&lt;Esc&gt;&quot;,
-  \   '^': '{{'.&quot;{6\&lt;Esc&gt;&quot;,
-  \   '&amp;': '{{'.&quot;{7\&lt;Esc&gt;&quot;,
-  \   '*': '{{'.&quot;{8\&lt;Esc&gt;&quot;,
-  \   '(': '{{'.&quot;{9\&lt;Esc&gt;&quot;,
-  \ }
+\     &quot;\&lt;Space&gt;&quot;: &quot;\&lt;Space&gt;\&lt;Space&gt;\&lt;Left&gt;&quot;,
+\     &quot;\&lt;Return&gt;&quot;: &quot;\&lt;Return&gt;X\&lt;Return&gt;\&lt;Up&gt;\&lt;End&gt;\&lt;BS&gt;&quot;,
+\     '_': '',
+\     '-': '',
+\     '{': '{{'. &quot;{\&lt;Esc&gt;&quot;,
+\     '}': '}}'. &quot;}\&lt;Esc&gt;&quot;,
+\     '1': '{{'.&quot;{1\&lt;Esc&gt;&quot;,
+\     '2': '{{'.&quot;{2\&lt;Esc&gt;&quot;,
+\     '3': '{{'.&quot;{3\&lt;Esc&gt;&quot;,
+\     '4': '{{'.&quot;{4\&lt;Esc&gt;&quot;,
+\     '5': '{{'.&quot;{5\&lt;Esc&gt;&quot;,
+\     '6': '{{'.&quot;{6\&lt;Esc&gt;&quot;,
+\     '7': '{{'.&quot;{7\&lt;Esc&gt;&quot;,
+\     '8': '{{'.&quot;{8\&lt;Esc&gt;&quot;,
+\     '9': '{{'.&quot;{9\&lt;Esc&gt;&quot;,
+\     '!': '{{'.&quot;{1\&lt;Esc&gt;&quot;,
+\     '@': '{{'.&quot;{2\&lt;Esc&gt;&quot;,
+\     '#': '{{'.&quot;{3\&lt;Esc&gt;&quot;,
+\     '$': '{{'.&quot;{4\&lt;Esc&gt;&quot;,
+\     '%': '{{'.&quot;{5\&lt;Esc&gt;&quot;,
+\     '^': '{{'.&quot;{6\&lt;Esc&gt;&quot;,
+\     '&amp;': '{{'.&quot;{7\&lt;Esc&gt;&quot;,
+\     '*': '{{'.&quot;{8\&lt;Esc&gt;&quot;,
+\     '(': '{{'.&quot;{9\&lt;Esc&gt;&quot;,
+\   }
 
 
 
@@ -1837,12 +1835,12 @@ function! s:on_KuLoaded()
       execute 'CD' fnamemodify(a:item.word, ':h')
     else
       echo printf('Item %s (type: %s) is not a file or directory.',
-         \        a:item.word, a:item._ku_type.name)
+      \           a:item.word, a:item._ku_type.name)
     endif
   endfunction
 
   call ku#custom_action('*fallback*', 'cd',
-     \                  function(s:SID_PREFIX() . 'ku_type_any_action_my_cd'))
+  \                     function(s:SID_PREFIX() . 'ku_type_any_action_my_cd'))
 endfunction
 
 
@@ -1875,7 +1873,7 @@ nmap &lt;Leader&gt;s  &lt;Plug&gt;(scratch-open)
 &quot; I already use &lt;C-m&gt;/&lt;Return&gt; for tag jumping.
 &quot; But I don't use it in the scratch buffer, so it should be overridden.
 autocmd MyAutoCmd User PluginScratchInitializeAfter
-      \ map &lt;buffer&gt; &lt;Plug&gt;(physical-key-&lt;Return&gt;)  &lt;Plug&gt;(scratch-evaluate)
+\ map &lt;buffer&gt; &lt;Plug&gt;(physical-key-&lt;Return&gt;)  &lt;Plug&gt;(scratch-evaluate)
 
 
 
@@ -1916,7 +1914,7 @@ let g:AutoXMLns_Dict['http://www.w3.org/2000/svg'] = 'svg11'
 if !exists('s:loaded_my_vimrc')
   let s:loaded_my_vimrc = 1
   &quot; autocmd MyAutoCmd VimEnter *
-  &quot;   \ doautocmd MyAutoCmd User DelayedSettings
+  &quot; \ doautocmd MyAutoCmd User DelayedSettings
 else
   &quot; doautocmd MyAutoCmd User DelayedSettings
 endif</diff>
      <filename>vim/dot.vimrc</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e63e08e5c90ad4b40cea73eb3fd5c966f499fd33</id>
    </parent>
  </parents>
  <author>
    <name>kana</name>
    <email>nicht@s8.xrea.com</email>
  </author>
  <url>http://github.com/kana/config/commit/eaf21d903f8d0674e95fc1d835c9bf91d30d3516</url>
  <id>eaf21d903f8d0674e95fc1d835c9bf91d30d3516</id>
  <committed-date>2008-05-04T12:37:47-07:00</committed-date>
  <authored-date>2008-05-04T05:44:53-07:00</authored-date>
  <message>vim: vimrc: Update &quot;Notes&quot; - new rules for line continuation

- Update &quot;Notes&quot; on line continuation rules.
- Fix some code to follow the new rules.</message>
  <tree>f5a9b4808e1cc51518a8ace0fe5688ba0d69c7ff</tree>
  <committer>
    <name>kana</name>
    <email>nicht@s8.xrea.com</email>
  </committer>
</commit>
