We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Use MiniStarterOpened event to make buffer-local mappings. Example of using <Left> and <Right> arrow keys to move between items:
MiniStarterOpened
<Left>
<Right>
vim.cmd([[ augroup MiniStarterKeymaps au! au User MiniStarterOpened nmap <buffer> <Left> <Cmd>lua MiniStarter.update_current_item('next')<CR> au User MiniStarterOpened nmap <buffer> <Right> <Cmd>lua MiniStarter.update_current_item('prev')<CR> augroup END ]])