diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index be488a99bdfc8d327f1a609713e6b98e92697afe..12cd1760531c80a53276474b4190c29f30f3c966 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -915,13 +915,9 @@ if has('nvim')
   function s:create_popup(hl, opts) abort
     let buf = nvim_create_buf(v:false, v:true)
     let opts = extend({'relative': 'editor', 'style': 'minimal'}, a:opts)
-    let border = has_key(opts, 'border') ? remove(opts, 'border') : []
     let win = nvim_open_win(buf, v:true, opts)
     call setwinvar(win, '&winhighlight', 'NormalFloat:'..a:hl)
     call setwinvar(win, '&colorcolumn', '')
-    if !empty(border)
-      call nvim_buf_set_lines(buf, 0, -1, v:true, border)
-    endif
     return buf
   endfunction
 else