snailed
/
taolf
Archived
2
0
Fork 0

fix(plugin): plugin name lfvim -> lf

This commit is contained in:
Lucas Burns 2022-04-11 09:54:14 -05:00
parent 221aeec3a1
commit ba62cbc7a2
No known key found for this signature in database
GPG Key ID: C011CBEF6628B679
2 changed files with 3 additions and 3 deletions

View File

@ -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` The only configurable environment variable is `g:lf_replace_netrw`, which can be set to `1` to replace `netrw`
### TODO ### TODO
- `:LfToggle` command - [ ] `:LfToggle` command
- Find a way for `lf` to hijack keybindings - [ ] Find a way for `lf` to hijack keybindings
- This may have to be done by writing to the user's configuration file - 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 - 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 - Once the file manager was closed, these would need to be removed

View File

@ -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 " TODO: Finish this command
" command! -nargs=* -complete=file LfToggle lua require('lf').setup():toggle(<f-args>) " command! -nargs=* -complete=file LfToggle lua require('lf').setup():toggle(<f-args>)