We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stuttering when continuously moving the cursor down via "j" but "Ctrl+d" is smooth
Config:
return { { "hedyhli/outline.nvim", init = function() vim.api.nvim_create_autocmd("BufEnter", { callback = function() if vim.bo.filetype == "Outline" and vim.fn.winnr('$') == 1 then vim.cmd("q") end end, }) end, config = function() -- Example mapping to toggle outline vim.keymap.set("n", "<leader>o", "<cmd>Outline<CR>", { desc = "Toggle Outline" }) require("outline").setup { outline_window = { position = 'left', width = 15, }, -- Your setup opts here (leave empty to use defaults) } end, }, }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Stuttering when continuously moving the cursor down via "j"
but "Ctrl+d" is smooth
Screencast.2025-01-15.18-37-59.mp4
Neovim setup
Config:
The text was updated successfully, but these errors were encountered: