kevinhwang91 / rnvimr

Make Ranger running in a floating window to communicate with Neovim via RPC
BSD 3-Clause "New" or "Revised" License
812 stars 17 forks source link

bufftype option is set #101

Closed matyle closed 2 years ago

matyle commented 2 years ago
image

open a file ,cannot write

kevinhwang91 commented 2 years ago

minimal config, please.

matyle commented 2 years ago

minimal config, please.

I tried, the same question

matyle commented 2 years ago

minimal config, please.

sorry,I use the user minimal config -u,I find it's ok, but in my config, I use the minimal conf that has the same question.so may I have some confict with other plugin?

kevinhwang91 commented 2 years ago

Yes, find out the incompatible plugin, maybe I could help.

matyle commented 2 years ago

Yes, find out the incompatible plugin, maybe I could help.

Ok,I will try, thanks

matyle commented 2 years ago

Yes, find out the incompatible plugin, maybe I could help.

I found the problem, it's the config of toggleTerm I use the conf in READMD,

require("toggleterm").setup{
  -- size can be a number or function which is passed the current terminal
  size = 20 | function(term)
    if term.direction == "horizontal" then
      return 15
    elseif term.direction == "vertical" then
      return vim.o.columns * 0.4
    end
  end,
  open_mapping = [[<c-\>]],
  on_open = fun(t: Terminal), -- function to run when the terminal opens
  on_close = fun(t: Terminal), -- function to run when the terminal closes
  hide_numbers = true, -- hide the number column in toggleterm buffers
  shade_filetypes = {},
  shade_terminals = true,
  shading_factor = '<number>', -- the degree by which to darken to terminal colour, default: 1 for dark backgrounds, 3 for light
  start_in_insert = true,
  insert_mappings = true, -- whether or not the open mapping applies in insert mode
  persist_size = true,
  direction = 'vertical' | 'horizontal' | 'window' | 'float',
  close_on_exit = true, -- close the terminal window when the process exits
  shell = vim.o.shell, -- change the default shell
  -- This field is only relevant if direction is set to 'float'
  float_opts = {
    -- The border key is *almost* the same as 'nvim_open_win'
    -- see :h nvim_open_win for details on borders however
    -- the 'curved' border is a custom border type
    -- not natively supported but implemented in this plugin.
    border = 'single' | 'double' | 'shadow' | 'curved' | ... other options supported by win open
    width = <value>,
    height = <value>,
    winblend = 3,
    highlights = {
      border = "Normal",
      background = "Normal",
    }
  }
}

I comment it ,now it works fine.but I don't understand

kevinhwang91 commented 2 years ago

This is pseudo-code for his demo.