This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Initial unmapping - keep only essential navigation keys | |
api.unmapAllExcept(['j', 'k', 'gg', 'G', 'yy', 'f']); | |
// Settings | |
settings.smoothScroll = true; | |
// Custom key mappings | |
api.mapkey('h', '#1Go back in history', function() { | |
history.go(-1); | |
}); |