File tree Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Expand file tree Collapse file tree 3 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* A module to handle Vim's command arguments like the followings.
3
3
*
4
- * ```vim
4
+ * ```
5
5
* :MyCommand ++enc=sjis ++ff=dos -f --foo=foo --bar=bar --bar=baz hello world
6
6
* ```
7
7
*
10
10
*
11
11
* For example:
12
12
*
13
- * ```vim
13
+ * ```
14
14
* command! -nargs=* MyCommand call denops#request("myplugin", "test", [[<f-args>]])
15
15
* ```
16
16
*
60
60
* };
61
61
* }
62
62
* ```
63
+ *
63
64
* @module
64
65
*/
65
66
import { Opts , parseOpts } from "./opts.ts" ;
Original file line number Diff line number Diff line change @@ -388,11 +388,6 @@ export interface ReplaceOptions {
388
388
/**
389
389
* Concrete the buffer.
390
390
*
391
- * - The `buftype` option become "nofile"
392
- * - The `swapfile` become disabled
393
- * - The `modifiable` become disabled
394
- * - The content of the buffer is restored on `BufReadCmd` synchronously
395
- *
396
391
* Vim will discard the content of a non-file buffer when `:edit` is invoked. Use
397
392
* this function to concrete the content of such buffer to prevent this discard.
398
393
*
Original file line number Diff line number Diff line change 59
59
*/
60
60
61
61
// Re-export
62
- export type {
62
+ export {
63
63
BatchError ,
64
- Context ,
65
- Denops ,
66
- Dispatcher ,
67
- Meta ,
64
+ type Context ,
65
+ type Denops ,
66
+ type Dispatcher ,
67
+ type Meta ,
68
68
} from "https://deno.land/x/denops_core@v6.0.5/mod.ts" ;
You can’t perform that action at this time.
0 commit comments