File tree Expand file tree Collapse file tree 4 files changed +1
-15
lines changed Expand file tree Collapse file tree 4 files changed +1
-15
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ export * from "./helper.ts" ;
Original file line number Diff line number Diff line change 1
- export * from "./autocmd.ts" ;
2
1
export * from "./vim.ts" ;
Original file line number Diff line number Diff line change 1
1
import { Context , Denops , Dispatcher } from "../deps.ts" ;
2
- import { autocmd , AutocmdHelper } from "./autocmd.ts" ;
3
2
4
3
/**
5
4
* Vim is a facade instance visible from each denops plugins for
@@ -53,19 +52,6 @@ export class Vim {
53
52
return await this . #denops. eval ( expr , ctx ) ;
54
53
}
55
54
56
- /**
57
- * Define autocmd in autocmd group.
58
- *
59
- * @param group: An autocmd group name.
60
- * @param main: A function which is used to define autocmds.
61
- */
62
- async autocmd (
63
- group : string ,
64
- main : ( helper : AutocmdHelper ) => void ,
65
- ) : Promise < void > {
66
- await autocmd ( this . #denops, group , main ) ;
67
- }
68
-
69
55
/**
70
56
* Register plugin APIs
71
57
*
You can’t perform that action at this time.
0 commit comments