stevearc / dressing.nvim

Neovim plugin to improve the default vim.ui interfaces
MIT License
1.69k stars 32 forks source link

No whitespaces between titles with builtin provider #109

Closed vollowx closed 11 months ago

vollowx commented 11 months ago

Describe the bug There are whitespaces between window titles in the README images, but not in the installed NeoVim/

System information

local border = require('core.settings').border -- 'single' in this case
require('dressing').setup {
  input = {
    border = border,
    win_options = {
      winblend = 0,
    },
  },
  select = {
    backend = 'builtin',
    builtin = {
      border = border,
      relative = 'cursor',
      win_options = {
        winblend = 0,
      },
      min_height = { 0, 0 },
    },
  },
}

To Reproduce Steps to reproduce the behavior:

  1. Rename, select code actions or something else to open dressing features

Screenshots Currently have no screenshot tools in my computer

Additional context Provide a option like space_between_title or let user format the title by themselves.

stevearc commented 11 months ago

I've added the surrounding whitespace back to the title text

vollowx commented 11 months ago

Thanks