We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70dc4af commit 367f999Copy full SHA for 367f999
src/keys/key_config.rs
@@ -44,7 +44,7 @@ impl KeyConfig {
44
"The custom key bindings file dosen't exists"
45
));
46
}
47
- KeysList::init(path.to_path_buf())
+ KeysList::init(path.clone())
48
} else {
49
KeysList::init(Self::get_config_file()?)
50
};
@@ -55,7 +55,7 @@ impl KeyConfig {
55
"The custom key symbols file dosen't exists"
56
57
58
- KeySymbols::init(path.to_path_buf())
+ KeySymbols::init(path.clone())
59
60
KeySymbols::init(Self::get_symbols_file()?)
61
0 commit comments