refactor: run zig fmt
This commit is contained in:
parent
28c9ea991d
commit
f5e3e84b59
3 changed files with 19 additions and 20 deletions
|
@ -467,7 +467,7 @@ pub const verilog = .{
|
||||||
.highlights = "nvim-treesitter/queries/verilog/highlights.scm",
|
.highlights = "nvim-treesitter/queries/verilog/highlights.scm",
|
||||||
.injections = "nvim-treesitter/queries/verilog/injections.scm",
|
.injections = "nvim-treesitter/queries/verilog/injections.scm",
|
||||||
.language_server = .{"verible-verilog-ls"},
|
.language_server = .{"verible-verilog-ls"},
|
||||||
.formatter = .{ "verible-verilog-format", "-" }
|
.formatter = .{ "verible-verilog-format", "-" },
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const toml = .{
|
pub const toml = .{
|
||||||
|
|
|
@ -2870,7 +2870,6 @@ pub const Editor = struct {
|
||||||
}
|
}
|
||||||
pub const move_word_left_vim_meta: Meta = .{ .description = "Move cursor left by word (vim)" };
|
pub const move_word_left_vim_meta: Meta = .{ .description = "Move cursor left by word (vim)" };
|
||||||
|
|
||||||
|
|
||||||
pub fn move_word_right(self: *Self, _: Context) Result {
|
pub fn move_word_right(self: *Self, _: Context) Result {
|
||||||
const root = try self.buf_root();
|
const root = try self.buf_root();
|
||||||
self.with_cursors_const(root, move_cursor_word_right) catch {};
|
self.with_cursors_const(root, move_cursor_word_right) catch {};
|
||||||
|
|
Loading…
Add table
Reference in a new issue