diff options
author | Yigit Sever | 2022-12-03 20:12:41 +0300 |
---|---|---|
committer | Yigit Sever | 2022-12-03 20:12:41 +0300 |
commit | 329873f58414fba0fe3260b07b443e6d320373d5 (patch) | |
tree | 7eeb9302a1095425938fc43a98aea7c9d30c7f7c | |
parent | d4df85e1ff389748b8a44f586f1653c281f02eaf (diff) | |
download | dotfiles-329873f58414fba0fe3260b07b443e6d320373d5.tar.gz dotfiles-329873f58414fba0fe3260b07b443e6d320373d5.tar.bz2 dotfiles-329873f58414fba0fe3260b07b443e6d320373d5.zip |
nvim: leap.nvim had a breaking change
-rw-r--r-- | .config/nvim/lua/plugin_settings.lua | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/.config/nvim/lua/plugin_settings.lua b/.config/nvim/lua/plugin_settings.lua index a965f6b..48426ba 100644 --- a/.config/nvim/lua/plugin_settings.lua +++ b/.config/nvim/lua/plugin_settings.lua | |||
@@ -582,25 +582,8 @@ require("dial.config").augends:register_group{ | |||
582 | 582 | ||
583 | -- leap.nvim {{{ -- | 583 | -- leap.nvim {{{ -- |
584 | require('leap').setup { | 584 | require('leap').setup { |
585 | max_aot_targets = nil, | 585 | case_insensitive = true, |
586 | highlight_unlabeled = false, | 586 | substitute_chars = { ['\r'] = '¬' } |
587 | case_sensitive = false, | ||
588 | -- Groups of characters that should match each other. | ||
589 | -- Obvious candidates are braces & quotes ('([{', ')]}', '`"\''). | ||
590 | character_classes = { ' \t\r\n', }, | ||
591 | -- Leaving the appropriate list empty effectively disables "smart" mode, | ||
592 | -- and forces auto-jump to be on or off. | ||
593 | -- safe_labels = { . . . }, | ||
594 | -- labels = { . . . }, | ||
595 | -- These keys are captured directly by the plugin at runtime. | ||
596 | -- (For `prev_match`, I suggest <s-enter> if possible in the terminal/GUI.) | ||
597 | special_keys = { | ||
598 | repeat_search = '<enter>', | ||
599 | next_match = '<enter>', | ||
600 | prev_match = '<tab>', | ||
601 | next_group = '<space>', | ||
602 | prev_group = '<tab>', | ||
603 | }, | ||
604 | } | 587 | } |
605 | 588 | ||
606 | -- }}} leap.nvim -- | 589 | -- }}} leap.nvim -- |