I use many shortcuts for my work in vim. Other shortcuts are taken by plugins.
Sometimes I would like to add a shortcut for a new command but note afterwards that the sh
If you want a sorted, searchable list of your current mappings to look for unused keys, see my answer at: How to search in the Vim mapping listing?
As a starting point, for the keys are not mapped by default, see :help map-which-keys
You can use :map < key >
to check a specific mapping. Example: to check Shift-F2, :map S-
.
AFAIK, there's no way of getting a list of what's unmapped without writing code to iterate through each possible key combination and check if there is any output from running :map < key >
for that particular key.