I installed defx.vim, the vim plug-in, but I don't know how to type the following command.
noremap<silent>buffer><expr>odefx#do_action('open_or_close_tree')
noremap
is Vim's Ex command.
The Ex command is entered and executed by typing :
(colon) while in normal mode on Vim.Also, noremap
is often described in .vimrc
.:
is optional.
© 2024 OneMinuteCode. All rights reserved.