On May 27, 10:28 am, Joy <harshi....@gmail.com> wrote:
> I changed my vimrc config file and now it seems like the new config
> that i use has reset the mapping to mark points in a file using: m
> <key>
>
> I want to map m to set marks can someone tell me how to do this?
>
If I understand correctly, you wish to restore the built-in
functionality of the 'm' key.
The first step is to determine where it is being remapped. The
following command will tell you this:
:verbose map m
Once you've determined where it is being set, you should either remove
the command that creates the offending map, or remove the map itself.
If the mapping is created in a plugin you downloaded from somewhere,
you should use one of the "after" directories to execute an :unmap m
command. If the mapping is in your vimrc or a file sourced by name
from your vimrc, which you created, simply find the "map m..." command
and remove it or comment it out.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---