This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
|
if did_filetype()
|
|
finish
|
|
endif
|
|
for i in range(1, 5)
|
|
if getline(i) =~ '^version 12'
|
|
setfiletype ciscoconfig
|
|
elseif getline(i) =~ '^ASA Version'
|
|
setfiletype ciscoconfig
|
|
endif
|
|
endfor
|