refactor: run zig fmt

This commit is contained in:
CJ van den Berg 2025-02-05 11:06:57 +01:00
parent 28c9ea991d
commit f5e3e84b59
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 19 additions and 20 deletions

View file

@ -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 = .{

View file

@ -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 {};