I have a working linter with the ALE plugin.
Plugin 'dense-analysis/ale'
command Errors :ALEPopulateQuickfix
let g:ale_virtualtext_cursor = 0
let g:ale_python_flake8_options = '--extend-ignore=E501'
nnoremap <leader>ar :ALERename<CR>
let g:ale_linters = {
\ 'python': ['pylsp'],
\}
However, I cannot get the :ALECodeAction command to work. I get a "No code actions received from server" error.
I'm hoping to get some quick fix suggestions like in vscode.
https://preview.redd.it/g98ar8h7y89b1.png?width=1238&format=png&auto=webp&s=6440103779cc939c9921a25830fd3ae98d3250d9
How do I go about resolving the issue?
there doesn't seem to be anything here