tangled
alpha
login
or
join now
robinwobin.dev
/
artio.nvim
3
fork
atom
minimal extui fuzzy finder for neovim
3
fork
atom
overview
issues
pulls
pipelines
fix(view): start insert at end of line
robinwobin.dev
6 days ago
5442b17e
dbb06d73
+1
-1
1 changed file
expand all
collapse all
unified
split
lua
artio
view.lua
+1
-1
lua/artio/view.lua
···
320
-- start insert *before* registering events
321
self:updatecursor()
322
vim._with({ noautocmd = true }, function()
323
-
vim.cmd.startinsert()
324
end)
325
326
-- trigger after registering events
···
320
-- start insert *before* registering events
321
self:updatecursor()
322
vim._with({ noautocmd = true }, function()
323
+
vim.cmd.startinsert({ bang = true })
324
end)
325
326
-- trigger after registering events