snacks.nvim/doc/snacks-terminal.txt

190 lines
6 KiB
Text

*snacks-terminal.txt* snacks.nvim
==============================================================================
Table of Contents *snacks-terminal-table-of-contents*
1. Usage |snacks-terminal-usage|
- Edgy Integration |snacks-terminal-usage-edgy-integration|
2. Config |snacks-terminal-config|
3. Styles |snacks-terminal-styles|
- terminal |snacks-terminal-styles-terminal|
4. Types |snacks-terminal-types|
5. Module |snacks-terminal-module|
- Snacks.terminal() |snacks-terminal-module-snacks.terminal()|
- Snacks.terminal.colorize()|snacks-terminal-module-snacks.terminal.colorize()|
- Snacks.terminal.open() |snacks-terminal-module-snacks.terminal.open()|
- Snacks.terminal.toggle() |snacks-terminal-module-snacks.terminal.toggle()|
6. Links |snacks-terminal-links|
Create and toggle terminal windows.
Based on the provided options, some defaults will be set:
- if no `cmd` is provided, the window will be opened in a bottom split
- if `cmd` is provided, the window will be opened in a floating window
- for splits, a `winbar` will be added with the terminal title
==============================================================================
1. Usage *snacks-terminal-usage*
EDGY INTEGRATION *snacks-terminal-usage-edgy-integration*
>lua
{
"folke/edgy.nvim",
---@module 'edgy'
---@param opts Edgy.Config
opts = function(_, opts)
for _, pos in ipairs({ "top", "bottom", "left", "right" }) do
opts[pos] = opts[pos] or {}
table.insert(opts[pos], {
ft = "snacks_terminal",
size = { height = 0.4 },
title = "%{b:snacks_terminal.id}: %{b:term_title}",
filter = function(_buf, win)
return vim.w[win].snacks_win
and vim.w[win].snacks_win.position == pos
and vim.w[win].snacks_win.relative == "editor"
and not vim.w[win].trouble_preview
end,
})
end
end,
}
<
==============================================================================
2. Config *snacks-terminal-config*
>lua
---@class snacks.terminal.Config
---@field win? snacks.win.Config
---@field override? fun(cmd?: string|string[], opts?: snacks.terminal.Opts) Use this to use a different terminal implementation
{
win = { style = "terminal" },
}
<
==============================================================================
3. Styles *snacks-terminal-styles*
TERMINAL *snacks-terminal-styles-terminal*
>lua
{
bo = {
filetype = "snacks_terminal",
},
wo = {},
keys = {
gf = function(self)
local f = vim.fn.findfile(vim.fn.expand("<cfile>"), "**")
if f == "" then
Snacks.notify.warn("No file under cursor")
else
self:hide()
vim.schedule(function()
vim.cmd("e " .. f)
end)
end
end,
term_normal = {
"<esc>",
function(self)
self.esc_timer = self.esc_timer or (vim.uv or vim.loop).new_timer()
if self.esc_timer:is_active() then
self.esc_timer:stop()
vim.cmd("stopinsert")
else
self.esc_timer:start(200, 0, function() end)
return "<esc>"
end
end,
mode = "t",
expr = true,
desc = "Double escape to normal mode",
},
},
}
<
==============================================================================
4. Types *snacks-terminal-types*
>lua
---@class snacks.terminal.Opts: snacks.terminal.Config
---@field cwd? string
---@field env? table<string, string>
---@field interactive? boolean
<
==============================================================================
5. Module *snacks-terminal-module*
>lua
---@class snacks.terminal: snacks.win
---@field cmd? string | string[]
---@field opts snacks.terminal.Opts
Snacks.terminal = {}
<
`Snacks.terminal()` *Snacks.terminal()*
>lua
---@type fun(cmd?: string|string[], opts?: snacks.terminal.Opts): snacks.terminal
Snacks.terminal()
<
`Snacks.terminal.colorize()` *Snacks.terminal.colorize()*
Colorize the current buffer. Replaces ansii color codes with the actual colors.
Example:
>sh
ls -la --color=always | nvim - -c "lua Snacks.terminal.colorize()"
<
>lua
Snacks.terminal.colorize()
<
`Snacks.terminal.open()` *Snacks.terminal.open()*
Open a new terminal window.
>lua
---@param cmd? string | string[]
---@param opts? snacks.terminal.Opts
Snacks.terminal.open(cmd, opts)
<
`Snacks.terminal.toggle()` *Snacks.terminal.toggle()*
Toggle a terminal window. The terminal id is based on the `cmd`, `cwd`, `env`
and `vim.v.count1` options.
>lua
---@param cmd? string | string[]
---@param opts? snacks.terminal.Opts
Snacks.terminal.toggle(cmd, opts)
<
==============================================================================
6. Links *snacks-terminal-links*
1. *image*: https://github.com/user-attachments/assets/afcc9989-57d7-4518-a390-cc7d6f0cec13
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
vim:tw=78:ts=8:noet:ft=help:norl: