aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/write-with-spaces/autoload/write_with_spaces.vim
blob: a7e40caf550ed8a88ca377a53f515287ae209e02 (plain)
1
2
3
function! write_with_spaces#Write(bang, filename)
	execute "w".a:bang." ". substitute(a:filename, ' ', '\\ ', 'g')
endfunction