adding some new terminal bindings

master
Jordan Orelli 1 year ago
parent cf680f89bc
commit a309cd8240

@ -1,6 +1,8 @@
local Terminal = require('toggleterm.terminal').Terminal
function _G.set_terminal_keymaps()
local opts = {buffer = 0}
vim.keymap.set('t', '<esc>', [[<C-\><C-n>]], opts)
-- vim.keymap.set('t', '<esc>', [[<C-\><C-n>]], opts)
-- vim.keymap.set('t', 'jk', [[<C-\><C-n>]], opts)
vim.keymap.set('t', '<C-w>h', [[<Cmd>wincmd h<CR>]], opts)
vim.keymap.set('t', '<C-w>j', [[<Cmd>wincmd j<CR>]], opts)
@ -11,3 +13,15 @@ end
-- if you only want these mappings for toggle term use term://*toggleterm#* instead
vim.cmd('autocmd! TermOpen term://* lua set_terminal_keymaps()')
local shell = Terminal:new({
dir = vim.fn.expand('%p'),
direction = "float",
hidden = true,
})
function _shell_toggle()
shell:toggle()
end
vim.api.nvim_set_keymap("n", "<F1>", "<cmd>lua _shell_toggle()<CR>", {noremap = true, silent = true})

Loading…
Cancel
Save