I don't know how to type the noremap command for Vim

Asked 2 years ago, Updated 2 years ago, 277 views

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')

vim

2022-09-30 22:04

1 Answers

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.


2022-09-30 22:04

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.