comparison src/testdir/test_filetype.vim @ 31203:8a54e866a5db v9.0.0935

patch 9.0.0935: when using dash it may not be recognize as filetype "sh" Commit: https://github.com/vim/vim/commit/24482fbfd599d2273c48951df7d00d62f3e66c85 Author: Eisuke Kawashima <e-kwsm@users.noreply.github.com> Date: Thu Nov 24 10:58:10 2022 +0000 patch 9.0.0935: when using dash it may not be recognize as filetype "sh" Problem: When using dash it may not be recognize as filetype "sh". Solution: Add checks for "dash". (Eisuke Kawashima,closes https://github.com/vim/vim/issues/11600)
author Bram Moolenaar <Bram@vim.org>
date Thu, 24 Nov 2022 12:00:05 +0100
parents 48e44371a9ff
children e651c7a29c87
comparison
equal deleted inserted replaced
31202:8a2f5cb18161 31203:8a54e866a5db
702 \ 'strace': [['execve("/usr/bin/pstree", ["pstree"], 0x7ff0 /* 63 vars */) = 0'], 702 \ 'strace': [['execve("/usr/bin/pstree", ["pstree"], 0x7ff0 /* 63 vars */) = 0'],
703 \ ['15:17:47 execve("/usr/bin/pstree", ["pstree"], ... "_=/usr/bin/strace"]) = 0'], 703 \ ['15:17:47 execve("/usr/bin/pstree", ["pstree"], ... "_=/usr/bin/strace"]) = 0'],
704 \ ['__libc_start_main and something']], 704 \ ['__libc_start_main and something']],
705 \ 'clojure': [['#!/path/clojure']], 705 \ 'clojure': [['#!/path/clojure']],
706 \ 'scala': [['#!/path/scala']], 706 \ 'scala': [['#!/path/scala']],
707 \ 'sh': [['#!/path/sh'],
708 \ ['#!/path/bash'],
709 \ ['#!/path/bash2'],
710 \ ['#!/path/dash'],
711 \ ['#!/path/ksh'],
712 \ ['#!/path/ksh93']],
713 \ 'csh': [['#!/path/csh']],
707 \ 'tcsh': [['#!/path/tcsh']], 714 \ 'tcsh': [['#!/path/tcsh']],
708 \ 'zsh': [['#!/path/zsh']], 715 \ 'zsh': [['#!/path/zsh']],
709 \ 'tcl': [['#!/path/tclsh'], 716 \ 'tcl': [['#!/path/tclsh'],
710 \ ['#!/path/wish'], 717 \ ['#!/path/wish'],
711 \ ['#!/path/expectk'], 718 \ ['#!/path/expectk'],