FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lvim/lua/user/vim_test.lua at main · abzcoding/lvim · GitHub
abzcoding
/
lvim
Public
Notifications
You must be signed in to change notification settings
Fork
61
Star
470
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
lvim
/
lua
/
user
/
vim_test.lua
Copy path
More file actions
More file actions
Latest commit
History
History
History
19 lines (16 loc) · 399 Bytes
Breadcrumbs
lvim
/
lua
/
user
/
vim_test.lua
Copy path
File metadata and controls
19 lines (16 loc) · 399 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
local
M
=
{}
M
.
config
=
function
()
local
t
=
require
"
toggleterm
"
local
terms
=
require
"
toggleterm.terminal
"
vim
.
g
[
"
test#custom_strategies
"
]
=
{
toggleterm
=
function
(
cmd
)
t
.
exec
(
cmd
,
nil
,
nil
,
nil
,
"
float
"
)
end
,
toggleterm_close
=
function
(
cmd
)
local
term_id
=
0
t
.
exec
(
cmd
,
term_id
)
terms
.
get_or_create_term
(
term_id
):
close
()
end
,
}
end
return
M
Back
|
FazBrowse Home
|
New Git URL