Skip to content

Commit f1cdf0b

Browse files
committed
added cmds
1 parent 180d3e6 commit f1cdf0b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

plugin/neovim_async_tutorial.vim

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
if exists('g:nvim_tut_loaded')
2+
finish
3+
endif
4+
5+
command! LuaSyncExample lua require "tutorial".sync_example()
6+
command! LuaAsyncExample lua require "tutorial".async_example()()
7+
command! LuaTextlockFail lua require "tutorial".textlock_fail()()
8+
command! LuaTextLockSucc lua require "tutorial".textlock_succ()()
9+
10+
let g:nvim_tut_loaded = 1
11+

0 commit comments

Comments
 (0)