diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-02 18:05:52 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-02 18:05:52 -0500 |
commit | 59eaba28948137acbd89f31dce1558d97228b9cd (patch) | |
tree | 0240a406e072ed50276d6f167ca6659103f20a22 /test/functional/helpers.lua | |
parent | cb625940422ddfb25fdb9a6dc6c6a26a56a228e8 (diff) | |
parent | 70f6e2ce52b966866f57ee5a1753ba420b1bd1a4 (diff) | |
download | rneovim-59eaba28948137acbd89f31dce1558d97228b9cd.tar.gz rneovim-59eaba28948137acbd89f31dce1558d97228b9cd.tar.bz2 rneovim-59eaba28948137acbd89f31dce1558d97228b9cd.zip |
Merge pull request #3655 from bfredl/enc_default
Default to encoding=utf-8
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 67c5a6f626..50fa3fb1bd 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -8,7 +8,7 @@ local Session = require('nvim.session') local nvim_prog = os.getenv('NVIM_PROG') or 'build/bin/nvim' local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', - '--cmd', 'set shortmess+=I background=light noswapfile noautoindent laststatus=1 encoding=utf-8 undodir=. directory=. viewdir=. backupdir=.', + '--cmd', 'set shortmess+=I background=light noswapfile noautoindent laststatus=1 undodir=. directory=. viewdir=. backupdir=.', '--embed'} -- Formulate a path to the directory containing nvim. We use this to |