refactor: move LSP types to new module
This commit is contained in:
parent
e5894c1404
commit
308f46c8a2
5 changed files with 136 additions and 162 deletions
|
|
@ -418,6 +418,10 @@ pub fn build_exe(
|
|||
.root_source_file = b.path("src/snippet.zig"),
|
||||
});
|
||||
|
||||
const lsp_types_mod = b.createModule(.{
|
||||
.root_source_file = b.path("src/lsp_types.zig"),
|
||||
});
|
||||
|
||||
const Buffer_mod = b.createModule(.{
|
||||
.root_source_file = b.path("src/buffer/Buffer.zig"),
|
||||
.imports = &.{
|
||||
|
|
@ -635,6 +639,7 @@ pub fn build_exe(
|
|||
.{ .name = "VcsStatus", .module = VcsStatus_mod },
|
||||
.{ .name = "bin_path", .module = bin_path_mod },
|
||||
.{ .name = "snippet", .module = snippet_mod },
|
||||
.{ .name = "lsp_types", .module = lsp_types_mod },
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue