" Settings " alias ':g' to ':tabnew google' command g tabnew google let completionengines = ["google", "amazon", "imdb"] " blacklists prefixed by '@' act as a whitelist let blacklists = [ "https://mail.google.com/*", "*://mail.google.com/*", "@*://*orf.at/*" ] map gb :buffer " This unmaps the default '' mapping unmap iunmap " fix select all iunmap " Toggle the current HUD display value map :set hud! " Create a variable that can be used/referenced in the command bar let @@reddit_prog = 'http://www.reddit.com/r/programming' let @@top_all = 'top?sort=top&t=all' let @@top_day = 'top?sort=top&t=day' " TA binding opens 'http://www.reddit.com/r/programming/top?sort=top&t=all' in a new tab map TA :to @@reddit_prog/@@top_all map TD :to @@reddit_prog/@@top_day " Code blocks (see below for more info) getIP() -> {{ httpRequest({url: 'http://api.ipify.org/?format=json', json: true}, function(res) { Status.setMessage('IP: ' + res.ip); }); }} " Displays your public IP address in the status bar map ci :call getIP