Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6707311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:37:27+00:00 2026-05-26T07:37:27+00:00

I know you can add custom keymappings to vim with imap in the .vimrc

  • 0

I know you can add custom keymappings to vim with imap in the .vimrc file. My question is, if one is to create additional custom operators, motions, commands and map them to keys, what is the best way to add them in so they don’t conflict with existing bindings?

An analogy, in emacs, a lot of custom key commands are added via the C-c sequence. To be more technical, are there unbound keys in vim that allow for user customization? In other words, is there a free keyspace available to users?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T07:37:28+00:00Added an answer on May 26, 2026 at 7:37 am

    :imapEnter will show a list of your insert mode mappings.

    My question is, if one is to create additional custom operators,
    motions, commands and map them to keys, what is the best way to add
    them in so they don’t conflict with existing bindings?

    In my opinion the best way is creating custom command, they start with uppercase, native ones with lowercase.


    Additionally, you can use a <leader> I use , some use \.

    e.g. :let mapleader = ","

    then, you can use the leader to combine it with other keys, like ,p to call a command, native or custom, see below:

    :map <leader>p :MyCustomCommand<CR>

    A custom motion example. Delete the third word after the cursor.

    nnoremap <leader>x :normal 2wdw<CR>


    Several commands can be used to create new, remove and list the mappings, here is a list of working modes, from :help map-overview

                                            Normal  Visual+Select  Operator-pending ~
    :map   :noremap   :unmap   :mapclear     yes      yes                yes
    :nmap  :nnoremap  :nunmap  :nmapclear    yes       -                  -
    :vmap  :vnoremap  :vunmap  :vmapclear     -       yes                 -
    :omap  :onoremap  :ounmap  :omapclear     -        -                 yes
    

    further info
    :help map


    Here’s an example function, converted to a custom command

    function! MoveLastLines(f)
      exe '$-9,$w ' . a:f    "write last ten lines to the passed filename
      $-9,$d                 "delete last ten lines
    endfunction
    
    command! -nargs=1 -range MoveTo :call MoveLastLines(<f-args>)
    

    Now, both lines below are equivalent

    • :call MoveLastLines('newFile.txt')
    • :MoveTo newFile.txt
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that jQuery.extend can be used to add by own custom methods to
I know I can add a icon to the Resources.resx file of a project
I know one can add event listener for window.error. However when working with Iframes,
I know you can easily add custom meta boxes per post type, but I'm
so I know you can add a custom field with the .add method...is there
I know that you can add a custom back button to a UINavigationBar, but
Team, I would like to know, whether we can add custom configurations in Manifest
Can I add custom columns to the Membership provider table? I know it has
I know I can add service behaviors with some XML configuration, but I'd like
I know that I can add a HintPath to an external DLLs to help

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.