chadtree icon indicating copy to clipboard operation
chadtree copied to clipboard

linenumers disappears

Open MuhammadSawalhy opened this issue 4 years ago • 2 comments

I lost the line numbers in my file buffer.

image


Steps to reproduce

  1. In a tab you have two windows, one for a file buffer and another one for the CHADTree.
  2. Close the file buffer
  3. Open a file, using CHADTree

MuhammadSawalhy avatar Sep 05 '21 04:09 MuhammadSawalhy

Have this happen to me also; it resets cursorline & scrolloff too

cwqt avatar Feb 02 '22 13:02 cwqt

For me it stops happening if I explicitly set the chadtree_settings.view.window.options like this:

local chadtree_settings = {
  theme = { icon_glyph_set = 'ascii' },
  view = { window_options = {
      cursorline = true,
      number = false,
      relativenumber = false,
      signcolumn = "no",
      winfixwidth = true,
    }
  }
}
vim.api.nvim_set_var("chadtree_settings", chadtree_settings)

rubencaro avatar Sep 02 '22 18:09 rubencaro