CoC no suggestions

Get rid of code completion pop up in coc

Устаревшая версия за 20.08.2020. Перейдите к последней версии.

// ==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();
})();