refactor: remove config option vim_insert_chording_keybindings
This commit is contained in:
parent
ed2be3767a
commit
cf1befe3fa
2 changed files with 0 additions and 2 deletions
|
@ -8,7 +8,6 @@ gutter_line_numbers_relative: bool = false,
|
||||||
vim_normal_gutter_line_numbers_relative: bool = true,
|
vim_normal_gutter_line_numbers_relative: bool = true,
|
||||||
vim_visual_gutter_line_numbers_relative: bool = true,
|
vim_visual_gutter_line_numbers_relative: bool = true,
|
||||||
vim_insert_gutter_line_numbers_relative: bool = false,
|
vim_insert_gutter_line_numbers_relative: bool = false,
|
||||||
vim_insert_chording_keybindings: bool = false,
|
|
||||||
enable_terminal_cursor: bool = true,
|
enable_terminal_cursor: bool = true,
|
||||||
enable_terminal_color_scheme: bool = builtin.os.tag != .windows,
|
enable_terminal_color_scheme: bool = builtin.os.tag != .windows,
|
||||||
highlight_current_line: bool = true,
|
highlight_current_line: bool = true,
|
||||||
|
|
|
@ -710,7 +710,6 @@ const cmds = struct {
|
||||||
})
|
})
|
||||||
else if (is_vim_mode and std.mem.eql(u8, mode, "insert"))
|
else if (is_vim_mode and std.mem.eql(u8, mode, "insert"))
|
||||||
try self.get_input_mode("insert", "INSERT", .{
|
try self.get_input_mode("insert", "INSERT", .{
|
||||||
.enable_chording = self.config.vim_insert_chording_keybindings,
|
|
||||||
.line_numbers_relative = self.config.vim_insert_gutter_line_numbers_relative,
|
.line_numbers_relative = self.config.vim_insert_gutter_line_numbers_relative,
|
||||||
.cursor_shape = .beam,
|
.cursor_shape = .beam,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue