In vim you can start typing a word, hit ctrl-n, and a box will popup with suggested completions. I don\'t like having to move my hands away to the arrow keys to scroll throu
inoremap <expr> <down> ((pumvisible())?("\<C-n>"):("\<down>"))
inoremap <expr> <up> ((pumvisible())?("\<C-p>"):("\<up>"))
I know the question is asking to use the J and K keys but you can also avoid using the arrow keys another way.
After hitting ctrl+n to get the autocomplete popup, you can navigate the list with ctrl+n and ctrl+p.
inoremap <expr> j ((pumvisible())?("\<C-n>"):("j"))
inoremap <expr> k ((pumvisible())?("\<C-p>"):("k"))