@@ -84,6 +84,7 @@ export const globals: Getter & Setter & Remover = {
8484 return removeVar ( denops , "g" , prop ) ;
8585 } ,
8686} ;
87+ /** Shorthand for {@linkcode globals} */
8788export const g = globals ;
8889
8990/**
@@ -131,6 +132,7 @@ export const buffers: Getter & Setter & Remover = {
131132 return removeVar ( denops , "b" , prop ) ;
132133 } ,
133134} ;
135+ /** Shorthand for {@linkcode buffers} */
134136export const b = buffers ;
135137
136138/**
@@ -178,6 +180,7 @@ export const windows: Getter & Setter & Remover = {
178180 return removeVar ( denops , "w" , prop ) ;
179181 } ,
180182} ;
183+ /** Shorthand for {@linkcode windows} */
181184export const w = windows ;
182185
183186/**
@@ -225,6 +228,7 @@ export const tabpages: Getter & Setter & Remover = {
225228 return removeVar ( denops , "t" , prop ) ;
226229 } ,
227230} ;
231+ /** Shorthand for {@linkcode tabpages} */
228232export const t = tabpages ;
229233
230234/**
@@ -262,4 +266,5 @@ export const vim: Getter & Setter = {
262266 return setVar ( denops , "v" , prop , value ) ;
263267 } ,
264268} ;
269+ /** Shorthand for {@linkcode vim} */
265270export const v = vim ;
0 commit comments