From a41fc80ee633d3c2182e627a9c4e7281aeb0c0f7 Mon Sep 17 00:00:00 2001 From: Shidong Wang Date: Sun, 17 Oct 2021 23:22:08 +0800 Subject: [PATCH] fix(ssh): fix layer test --- autoload/SpaceVim/layers/ssh.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autoload/SpaceVim/layers/ssh.vim b/autoload/SpaceVim/layers/ssh.vim index 7b2d1b4d1..b86512f92 100644 --- a/autoload/SpaceVim/layers/ssh.vim +++ b/autoload/SpaceVim/layers/ssh.vim @@ -60,3 +60,8 @@ function! SpaceVim#layers#ssh#get_options() abort return ['ssh_port', 'ssh_user', 'ssh_address', 'ssh_command'] endfunction + +function! SpaceVim#layers#ssh#health() abort + call SpaceVim#layers#ssh#config() + return 1 +endfunction