Fix weird indent

This commit is contained in:
Rafael Zasas 2024-03-12 15:25:46 +02:00 committed by GitHub
parent 33397b0d00
commit 5f05457ba2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -680,8 +680,8 @@ require('lazy').setup({
['<C-p>'] = cmp.mapping.select_prev_item(),
-- scroll [u]p and [d]own the documentation window
["<C-u>"] = cmp.mapping.scroll_docs(-4),
["<C-d>"] = cmp.mapping.scroll_docs(4),
["<C-u>"] = cmp.mapping.scroll_docs(-4),
["<C-d>"] = cmp.mapping.scroll_docs(4),
-- Accept ([y]es) the completion.
-- This will auto-import if your LSP supports it.