2024-04-20 08:44:13 -07:00
|
|
|
local t = require('test.testutil')
|
|
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
|
|
|
|
local clear, eval, eq = n.clear, n.eval, t.eq
|
|
|
|
local exc_exec, source = n.exc_exec, n.source
|
2016-06-30 22:35:57 -07:00
|
|
|
|
2021-09-17 09:16:40 -07:00
|
|
|
describe('vimscript', function()
|
2016-06-30 22:35:57 -07:00
|
|
|
before_each(clear)
|
|
|
|
|
2016-07-09 13:55:41 -07:00
|
|
|
it('parses `<SID>` with turkish locale', function()
|
2017-04-08 14:12:26 -07:00
|
|
|
if exc_exec('lang ctype tr_TR.UTF-8') ~= 0 then
|
2016-06-30 22:35:57 -07:00
|
|
|
pending('Locale tr_TR.UTF-8 not supported')
|
|
|
|
return
|
|
|
|
end
|
|
|
|
source([[
|
2022-03-27 10:25:55 -07:00
|
|
|
let s:foo = 1
|
2016-06-30 22:35:57 -07:00
|
|
|
func! <sid>_dummy_function()
|
|
|
|
echo 1
|
|
|
|
endfunc
|
|
|
|
au VimEnter * call <sid>_dummy_function()
|
|
|
|
]])
|
|
|
|
eq(nil, string.find(eval('v:errmsg'), '^E129'))
|
|
|
|
end)
|
2018-12-13 04:02:20 -07:00
|
|
|
|
|
|
|
it('str2float is not affected by locale', function()
|
|
|
|
if exc_exec('lang ctype sv_SE.UTF-8') ~= 0 then
|
|
|
|
pending('Locale sv_SE.UTF-8 not supported')
|
|
|
|
return
|
|
|
|
end
|
|
|
|
clear { env = { LANG = '', LC_NUMERIC = 'sv_SE.UTF-8' } }
|
|
|
|
eq(2.2, eval('str2float("2.2")'))
|
|
|
|
end)
|
2016-06-30 22:35:57 -07:00
|
|
|
end)
|