akinsho / flutter-tools.nvim

Tools to help create flutter apps in neovim using the native lsp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

open outline in right ?

lost22git opened this issue · comments

i want to open outline in right vsplit window and my config like below , but it can not work

outline = {
    open_cmd = "rightbelow vsplit | vertical resize 30",
    auto_open = false -- if true this will open the outline automatically when it is first populated
}

Hi @lost22git , can you try the following configuration:

outline = {
  open_cmd = "rightb 30vnew",
  auto_open = false
}

@Thesmader it works for me, thx