Remove useless concatenation

This commit is contained in:
Marco Hinz 2013-08-09 16:17:35 +02:00
parent e52768a3d7
commit fd7c52a05b

View file

@ -275,7 +275,7 @@ function! s:show_sessions(cnt) abort
let index = s:get_index_as_string(idx)
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(sfiles[i], ':t:r'))
execute 'nnoremap <buffer> '. index .' :source '. fnameescape(sfiles[i]) .'<cr>'
execute 'nnoremap <buffer>' index ':source' fnameescape(sfiles[i]) '<cr>'
endfor
return idx
@ -291,7 +291,7 @@ function! s:show_bookmarks(cnt) abort
let index = s:get_index_as_string(cnt)
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
execute 'nnoremap <buffer> '. index .' :edit '. fnameescape(fname) . s:chdir
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) s:chdir
endfor
endif