Skip to content

Commit ddf8bfb

Browse files
committed
refactor: drop redundant attach.ts
1 parent 65ddb5e commit ddf8bfb

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

packages/neovim/src/attach.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/neovim/src/host/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { attach } from '../attach';
1+
import { attach } from '../attach/attach';
22
import { loadPlugin, LoadPluginOptions } from './factory';
33
import { NvimPlugin } from './NvimPlugin';
44

packages/neovim/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { attach } from './attach';
1+
export { attach } from './attach/attach';
22
export { Neovim, NeovimClient, Buffer, Tabpage, Window } from './api/index';
33
export { Plugin, Function, Autocmd, Command } from './plugin';
44
export { NvimPlugin } from './host/NvimPlugin';

packages/neovim/src/testUtil.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as jest from '@jest/globals';
44
import * as fs from 'node:fs';
55
import * as path from 'node:path';
66
import { NeovimClient } from './api/client';
7-
import { attach } from './attach';
7+
import { attach } from './attach/attach';
88
import { findNvim } from './utils/findNvim';
99
import { getLogger } from './utils/logger';
1010

0 commit comments

Comments
 (0)