diff options
| author | James McCoy <jamessan@jamessan.com> | 2017-07-14 06:42:52 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-14 06:42:52 -0400 |
| commit | dabd9ef44bb30b403e5a13ab1b6534cef6d8d8d0 (patch) | |
| tree | 5e591eaef52e4efa1e10fb2df66a59b6d7cea9c8 /src/nvim/testdir/test_startup.vim | |
| parent | c4ac3ffbef9258a615e6549d40decef96e16bd9c (diff) | |
| parent | 462a6148a64f2c2faabdee1eacac273ddbbd095a (diff) | |
| download | rneovim-dabd9ef44bb30b403e5a13ab1b6534cef6d8d8d0.tar.gz rneovim-dabd9ef44bb30b403e5a13ab1b6534cef6d8d8d0.tar.bz2 rneovim-dabd9ef44bb30b403e5a13ab1b6534cef6d8d8d0.zip | |
Merge pull request #6977 from ckelsel/_vim-7.4.2189.patch
vim-patch:7.4.2189
Diffstat (limited to 'src/nvim/testdir/test_startup.vim')
| -rw-r--r-- | src/nvim/testdir/test_startup.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim index 5996b2cd4a..64f7f31294 100644 --- a/src/nvim/testdir/test_startup.vim +++ b/src/nvim/testdir/test_startup.vim @@ -75,7 +75,7 @@ func Test_help_arg() " check if couple of lines are there let found = [] for line in lines - if line =~ '-R.*Readonly mode' + if line =~ '-R.*Read-only mode' call add(found, 'Readonly mode') endif " Watch out for a second --version line in the Gnome version. |