mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
4d8d77fb5e
close https://github.com/SpaceVim/SpaceVim/issues/4837
update to: 90db1b2c61
18 lines
424 B
Lua
18 lines
424 B
Lua
local M = {}
|
|
|
|
M.keys = 'asdghklqwertyuiopzxcvbnmfj'
|
|
M.quit_key = '<Esc>'
|
|
M.perm_method = require'hop.perm'.TrieBacktrackFilling
|
|
M.reverse_distribution = false
|
|
M.teasing = true
|
|
M.jump_on_sole_occurrence = true
|
|
M.case_insensitive = true
|
|
M.create_hl_autocmd = true
|
|
M.current_line_only = false
|
|
M.uppercase_labels = false
|
|
M.multi_windows = false
|
|
M.hint_position = require'hop.hint'.HintPosition.BEGIN
|
|
M.hint_offset = 0
|
|
|
|
return M
|