From 3fc32aa4a120028b3d844e72799802942dea4891 Mon Sep 17 00:00:00 2001 From: appositum Date: Sat, 27 Dec 2025 15:14:19 -0300 Subject: [PATCH] open terminal buffer in terminal mode No need to press an extra key to go into terminal mode once inside the `gh dash` floating window (`gh dash` keybinds will work immediately after popup opens). --- lua/gh_dash/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/gh_dash/init.lua b/lua/gh_dash/init.lua index 09d2900..309db59 100644 --- a/lua/gh_dash/init.lua +++ b/lua/gh_dash/init.lua @@ -102,6 +102,8 @@ local function open_window() style = 'minimal', border = border, }) + + vim.cmd('startinsert') end function M.open()