This file contains 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
set nohud | |
set smoothscroll | |
set noautofocus | |
set typelinkhints | |
let hintcharacters = "asdfcnjkl" | |
" redefine H, L for switching tabs and history forward/back | |
unmap h | |
unmap l | |
unmap H |
This file contains 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
'use strict' | |
class Plugin { | |
constructor(config, context) { | |
this.config = config | |
this.context = context | |
} | |
async export(data) { | |
const { logger } = this.context |