소도구:code-editor-tweaks.js

최근 편집: 2022년 12월 25일 (일) 10:26
낙엽1124 (토론 | 기여)님의 2022년 12월 25일 (일) 10:26 판 (낙엽1124님이 소도구:Code-editor-tweaks.js 문서를 넘겨주기를 만들지 않고 소도구:code-editor-tweaks.js 문서로 이동했습니다)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
// <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>