You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+57-43
Original file line number
Diff line number
Diff line change
@@ -1,36 +1,46 @@
1
-
# Flatten
1
+
# flatten.nvim
2
2
3
3
Flatten allows you to open files from a neovim terminal buffer in your current neovim instance instead of a nested one in the terminal.
4
4
5
5
The name is inspired by the flatten function in Rust (and maybe other languages?), which flattens nested types (`Option<Option<T>>` -> `Option<T>`, etc).
6
6
7
-
The plugin itself is heavily inspired by `nvim-unception`, which I think is great but found somewhat frustrating to work with. Flatten uses modules and doesn't add any globals, which I think makes the codebase more convenient to work with and by extension less bug-prone. It also offers lua configuration, and can be lazy loaded.
7
+
The plugin itself is heavily inspired by `nvim-unception`, which I think is great but found somewhat frustrating to work with and configure. Flatten uses modules and doesn't add any globals, which I think makes the codebase more convenient to work with and by extension less bug-prone. It also offers lua configuration, and can be lazy loaded.
Config for demo [here](#advanced-configuration) (autodelete gitcommit on write and toggling terminal are not defaults)
8
14
9
15
## Installation
10
16
11
17
With `lazy.nvim`:
12
18
13
19
```lua
14
20
15
-
{
21
+
{
16
22
'willothy/flatten.nvim',
17
23
config=true
18
24
-- or pass configuration with
19
25
-- opts = { }
20
-
}
26
+
}
21
27
22
28
```
23
29
24
30
25
31
## Configuration
26
32
33
+
### Defaults
34
+
27
35
Flatten comes with the following defaults:
28
36
29
37
```lua
30
38
{
31
-
callbacks= {-- Called by when a request is received
39
+
callbacks= {
40
+
-- Called when a request to edit file(s) is received
32
41
pre_open=function() end,
33
42
-- Called after a file is opened
43
+
-- Passed the buf id, win id, and filetype of the new window
34
44
post_open=function(bufnr, winnr, filetype) end,
35
45
-- Called when a file is open in blocking mode, after it's done blocking
36
46
-- (after bufdelete, bufunload, or quitpre for the blocking buffer)
@@ -43,53 +53,57 @@ Flatten comes with the following defaults:
43
53
}
44
54
```
45
55
56
+
### Advanced configuration
57
+
46
58
Similarly to `nvim-unception`, if you use a toggleable terminal and don't want the opened file(s) to be opened in the same window as your terminal buffer, you may want to use the `pre_open` callback to close the terminal. You can even reopen it immediately after the file is opened using the `post_open` callback for a truly seamless experience.
47
59
48
60
Note that when opening a file in blocking mode, such as a git commit, the terminal will be inaccessible. You can get the filetype from the bufnr or filetype arguments of the `post_open` callback to only reopen the terminal for non-blocking files.
49
61
50
62
Here's my setup for toggleterm, including an autocmd to automatically close a git commit buffer on write:
51
63
52
64
```lua
53
-
54
-
opts= {
55
-
callbacks= {
56
-
pre_open=function()
57
-
-- Close toggleterm when an external open request is received
58
-
require("toggleterm").toggle(0)
59
-
end,
60
-
post_open=function(bufnr, winnr, ft)
61
-
ifft=="gitcommit" then
62
-
-- If the file is a git commit, create one-shot autocmd to delete it on write
63
-
-- If you just want the toggleable terminal integration, ignore this bit and only use the
64
-
-- code in the else block
65
-
vim.api.nvim_create_autocmd(
66
-
"BufWritePost",
67
-
{
68
-
buffer=bufnr,
69
-
once=true,
70
-
callback=function()
71
-
-- This is a bit of a hack, but if you run bufdelete immediately
72
-
-- the shell can occasionally freeze
73
-
vim.defer_fn(
74
-
function()
75
-
vim.api.nvim_buf_delete(bufnr, {})
76
-
end,
77
-
50
78
-
)
79
-
end
80
-
}
81
-
)
82
-
else
83
-
-- If it's a normal file, then reopen the terminal, then switch back to the newly opened window
84
-
-- This gives the appearance of the window opening independently of the terminal
65
+
{
66
+
'willothy/flatten.nvim',
67
+
opts= {
68
+
callbacks= {
69
+
pre_open=function()
70
+
-- Close toggleterm when an external open request is received
71
+
require("toggleterm").toggle(0)
72
+
end,
73
+
post_open=function(bufnr, winnr, ft)
74
+
ifft=="gitcommit" then
75
+
-- If the file is a git commit, create one-shot autocmd to delete it on write
76
+
-- If you just want the toggleable terminal integration, ignore this bit and only use the
77
+
-- code in the else block
78
+
vim.api.nvim_create_autocmd(
79
+
"BufWritePost",
80
+
{
81
+
buffer=bufnr,
82
+
once=true,
83
+
callback=function()
84
+
-- This is a bit of a hack, but if you run bufdelete immediately
85
+
-- the shell can occasionally freeze
86
+
vim.defer_fn(
87
+
function()
88
+
vim.api.nvim_buf_delete(bufnr, {})
89
+
end,
90
+
50
91
+
)
92
+
end
93
+
}
94
+
)
95
+
else
96
+
-- If it's a normal file, then reopen the terminal, then switch back to the newly opened window
97
+
-- This gives the appearance of the window opening independently of the terminal
98
+
require("toggleterm").toggle(0)
99
+
vim.api.nvim_set_current_win(winnr)
100
+
end
101
+
end,
102
+
block_end=function()
103
+
-- After blocking ends (for a git commit, etc), reopen the terminal
85
104
require("toggleterm").toggle(0)
86
-
vim.api.nvim_set_current_win(winnr)
87
105
end
88
-
end,
89
-
block_end=function()
90
-
-- After blocking ends (for a git commit, etc), reopen the terminal
0 commit comments