Get rid of code completion pop up in coc
当前为
// ==UserScript==
// @name CoC no suggestions
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Get rid of code completion pop up in coc
// @author Gorbit99
// @include /https:\/\/www.codingame.com\/ide\//
// @grant GM_addStyle
// @require http://code.jquery.com/jquery-latest.js
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
monaco.languages.registerCompletionItemProvider();
})();