Skip to content

Commit cb38d4f

Browse files
committed
chore: add demo and config to readme
1 parent d84667e commit cb38d4f

File tree

1 file changed

+57
-43
lines changed

1 file changed

+57
-43
lines changed

README.md

+57-43
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,46 @@
1-
# Flatten
1+
# flatten.nvim
22

33
Flatten allows you to open files from a neovim terminal buffer in your current neovim instance instead of a nested one in the terminal.
44

55
The name is inspired by the flatten function in Rust (and maybe other languages?), which flattens nested types (`Option<Option<T>>` -> `Option<T>`, etc).
66

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.
8+
9+
## Demo
10+
11+
https://user-images.githubusercontent.com/38540736/224443095-91450818-f298-4e08-a951-ee3fcc607330.mp4
12+
13+
Config for demo [here](#advanced-configuration) (autodelete gitcommit on write and toggling terminal are not defaults)
814

915
## Installation
1016

1117
With `lazy.nvim`:
1218

1319
```lua
1420

15-
{
21+
{
1622
'willothy/flatten.nvim',
1723
config = true
1824
-- or pass configuration with
1925
-- opts = { }
20-
}
26+
}
2127

2228
```
2329

2430

2531
## Configuration
2632

33+
### Defaults
34+
2735
Flatten comes with the following defaults:
2836

2937
```lua
3038
{
31-
callbacks = {-- Called by when a request is received
39+
callbacks = {
40+
-- Called when a request to edit file(s) is received
3241
pre_open = function() end,
3342
-- Called after a file is opened
43+
-- Passed the buf id, win id, and filetype of the new window
3444
post_open = function(bufnr, winnr, filetype) end,
3545
-- Called when a file is open in blocking mode, after it's done blocking
3646
-- (after bufdelete, bufunload, or quitpre for the blocking buffer)
@@ -43,53 +53,57 @@ Flatten comes with the following defaults:
4353
}
4454
```
4555

56+
### Advanced configuration
57+
4658
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.
4759

4860
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.
4961

5062
Here's my setup for toggleterm, including an autocmd to automatically close a git commit buffer on write:
5163

5264
```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-
if ft == "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+
if ft == "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
85104
require("toggleterm").toggle(0)
86-
vim.api.nvim_set_current_win(winnr)
87105
end
88-
end,
89-
block_end = function()
90-
-- After blocking ends (for a git commit, etc), reopen the terminal
91-
require("toggleterm").toggle(0)
92-
end
106+
}
93107
}
94108
}
95109

0 commit comments

Comments
 (0)