- Ctrl + Space: Autocomplete
- Ctrl + 1: Quick Fix (Gonna change that to Alt + Enter)
- F11: Run debug
- Ctrl + Shift + O: Auto import
- Ctrl + Shift + F: Auto format
- Alt + Shift + R: Auto rename
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
// ==UserScript== | |
// @name Universal Font | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Take over the world with your favorite font | |
// @author Azalea | |
// @match *://*/* | |
// @grant GM_addStyle | |
// @downloadURL https://gist.github.com/hykilpikonna/f6afdd8382e2e989965a7cc408cb6762/raw/userscript.js | |
// @updateURL https://gist.github.com/hykilpikonna/f6afdd8382e2e989965a7cc408cb6762/raw/userscript.js |
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
<template> | |
<div id="${NAME}"> | |
</div> | |
</template> | |
<script lang="ts"> | |
import {Options, Vue} from 'vue-class-component'; | |
@Options({components: {}}) |