소도구:code-editor-tweaks.js

최근 편집: 2021년 4월 13일 (화) 09:20
페미위키 깃헙 가젯 봇 (토론 | 기여)님의 2021년 4월 13일 (화) 09:20 판 (Github @lens0021의 https://github.com/femiwiki/remote-gadgets/commit/897e0ad0)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
// <nowiki>
$(function () {
  'use strict';

  mw.hook('codeEditor.configure').add(function (editSession) {
    if (mw.config.get('wgNamespaceNumber') != 2302) {
      // See https://ace.c9.io/api/edit_session.html
      editSession.setTabSize(2);
      editSession.setUseSoftTabs(true);
    }
  });
});
// </nowiki>