diff --git a/autoload/copilot.vim b/autoload/copilot.vim index 65d77389..15be4cd4 100644 --- a/autoload/copilot.vim +++ b/autoload/copilot.vim @@ -522,8 +522,6 @@ function! s:EnabledStatusMessage() abort let buf_disabled = s:BufferDisabled() if !s:has_ghost_text && bufwinid('copilot://') == -1 return "Neovim 0.6 prerelease required to support ghost text" - elseif !copilot#IsMapped() - return ' map has been disabled or is claimed by another plugin' elseif !get(g:, 'copilot_enabled', 1) return 'Disabled globally by :Copilot disable' elseif buf_disabled is# 4