fix(plugin): plugin name lfvim -> lf
This commit is contained in:
parent
221aeec3a1
commit
ba62cbc7a2
|
@ -133,8 +133,8 @@ require("lf").start({ mappings = false })
|
|||
The only configurable environment variable is `g:lf_replace_netrw`, which can be set to `1` to replace `netrw`
|
||||
|
||||
### TODO
|
||||
- `:LfToggle` command
|
||||
- Find a way for `lf` to hijack keybindings
|
||||
- [ ] `:LfToggle` command
|
||||
- [ ] Find a way for `lf` to hijack keybindings
|
||||
- This may have to be done by writing to the user's configuration file
|
||||
- It would involve mapping each `default_actions` key to the `open` command, which closes the file manager
|
||||
- Once the file manager was closed, these would need to be removed
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
command! -nargs=* -complete=file Lfvim lua require('lf').start(<f-args>)
|
||||
command! -nargs=* -complete=file Lf lua require('lf').start(<f-args>)
|
||||
|
||||
" TODO: Finish this command
|
||||
" command! -nargs=* -complete=file LfToggle lua require('lf').setup():toggle(<f-args>)
|
||||
|
|
Reference in New Issue