feat(lsp): default to botright for setting qflist (#16177)

* Opens quickfix list spanning the entire nvim window in location
  handlers

closes https://github.com/neovim/neovim/issues/12241
This commit is contained in:
Michael Lingelbach 2021-10-30 08:17:00 -07:00 committed by GitHub
parent a141f6e922
commit c9e5c778b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,7 +185,7 @@ local function response_to_list(map_result, entity)
title = 'Language Server';
items = map_result(result, ctx.bufnr);
})
api.nvim_command("copen")
api.nvim_command("botright copen")
end
end
end