local helpers = require('test.functional.helpers')(after_each) local command = helpers.command local insert = helpers.insert local eq = helpers.eq local clear = helpers.clear local meths = helpers.meths local feed = helpers.feed local feed_command = helpers.feed_command local write_file = helpers.write_file local exec = helpers.exec local exc_exec = helpers.exc_exec local exec_lua = helpers.exec_lua local eval = helpers.eval local exec_capture = helpers.exec_capture local neq = helpers.neq local matches = helpers.matches local iswin = helpers.iswin local mkdir = helpers.mkdir local rmdir = helpers.rmdir describe(':source', function() before_each(function() clear() end) it('sourcing a file that is deleted and recreated is consistent vim-patch:8.1.0151', function() local test_file = 'Xfile.vim' local other_file = 'Xfoobar' local script = [[ func Func() endfunc ]] write_file(test_file, script) command('source ' .. test_file) os.remove(test_file) write_file(test_file, script) command('source ' .. test_file) os.remove(test_file) write_file(other_file, '') write_file(test_file, script) command('source ' .. test_file) os.remove(other_file) os.remove(test_file) end) it("changing 'shellslash' changes the result of expand()", function() if not iswin() then pending("'shellslash' only works on Windows") return end meths.set_option('shellslash', false) mkdir('Xshellslash') write_file([[Xshellslash/Xstack.vim]], [[ let g:stack1 = expand('') set shellslash let g:stack2 = expand('') set noshellslash let g:stack3 = expand('') ]]) for _ = 1, 2 do command([[source Xshellslash/Xstack.vim]]) matches([[Xshellslash\Xstack%.vim]], meths.get_var('stack1')) matches([[Xshellslash/Xstack%.vim]], meths.get_var('stack2')) matches([[Xshellslash\Xstack%.vim]], meths.get_var('stack3')) end write_file([[Xshellslash/Xstack.lua]], [[ vim.g.stack1 = vim.fn.expand('') vim.o.shellslash = true vim.g.stack2 = vim.fn.expand('') vim.o.shellslash = false vim.g.stack3 = vim.fn.expand('') ]]) for _ = 1, 2 do command([[source Xshellslash/Xstack.lua]]) matches([[Xshellslash\Xstack%.lua]], meths.get_var('stack1')) matches([[Xshellslash/Xstack%.lua]], meths.get_var('stack2')) matches([[Xshellslash\Xstack%.lua]], meths.get_var('stack3')) end rmdir('Xshellslash') end) it('current buffer', function() insert([[ let a = 2 let b = #{ \ k: "v" "\ (o_o) \ } let c = expand("")->empty() let s:s = 0zbeef.cafe let d = s:s]]) command('source') eq('2', meths.exec('echo a', true)) eq("{'k': 'v'}", meths.exec('echo b', true)) -- Script items are created only on script var access eq("1", meths.exec('echo c', true)) eq("0zBEEFCAFE", meths.exec('echo d', true)) exec('set cpoptions+=C') eq('Vim(let):E723: Missing end of Dictionary \'}\': ', exc_exec('source')) end) it('selection in current buffer', function() insert([[ let a = 2 let a = 3 let a = 4 let b = #{ "\ (>_<) \ K: "V" \ } function! s:C() abort return expand("") .. "C()" endfunction let D = {-> s:C()}]]) -- Source the 2nd line only feed('ggjV') feed_command(':source') eq('3', meths.exec('echo a', true)) -- Source from 2nd line to end of file feed('ggjVG') feed_command(':source') eq('4', meths.exec('echo a', true)) eq("{'K': 'V'}", meths.exec('echo b', true)) eq("1_C()", meths.exec('echo D()', true)) -- Source last line only feed_command(':$source') eq('Vim(echo):E117: Unknown function: s:C', exc_exec('echo D()')) exec('set cpoptions+=C') eq('Vim(let):E723: Missing end of Dictionary \'}\': ', exc_exec("'<,'>source")) end) it('does not break if current buffer is modified while sourced', function() insert [[ bwipeout! let a = 123 ]] command('source') eq('123', meths.exec('echo a', true)) end) it('multiline heredoc command', function() insert([[ lua << EOF y = 4 EOF]]) command('source') eq('4', meths.exec('echo luaeval("y")', true)) end) it('can source lua files', function() local test_file = 'test.lua' write_file(test_file, [[ vim.g.sourced_lua = 1 vim.g.sfile_value = vim.fn.expand('') vim.g.stack_value = vim.fn.expand('') vim.g.script_value = vim.fn.expand('