diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-06-26 23:39:55 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-07-04 10:05:34 -0400 |
commit | f01bb307fdce09452535ada6212a6f37f509e567 (patch) | |
tree | f85c4168dfa6425b8f8b1b7c882324749b729056 /src | |
parent | 610c4d2b83ee9298956095bd54fedea367a13bf5 (diff) | |
download | rneovim-f01bb307fdce09452535ada6212a6f37f509e567.tar.gz rneovim-f01bb307fdce09452535ada6212a6f37f509e567.tar.bz2 rneovim-f01bb307fdce09452535ada6212a6f37f509e567.zip |
vim-patch:8.2.1060: not all elinks files are recognized
Problem: Not all elinks files are recognized.
Solution: Just check for "elinks.conf". (Guido Cella, closes vim/vim#6337)
https://github.com/vim/vim/commit/5f36d5fbb836e6fdeb9e3b2c26edb88e45150db4
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index d0dcdeaebb..d440bdcb1e 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -150,7 +150,7 @@ let s:filename_checks = { \ 'dylanlid': ['file.lid'], \ 'ecd': ['file.ecd'], \ 'edif': ['file.edf', 'file.edif', 'file.edo'], - \ 'elinks': ['/etc/elinks.conf', '/.elinks/elinks.conf'], + \ 'elinks': ['elinks.conf'], \ 'elm': ['file.elm'], \ 'elmfilt': ['filter-rules'], \ 'erlang': ['file.erl', 'file.hrl', 'file.yaws'], |