debian-mirror-gitlab/app/assets/javascripts/ide/lib/editor_options.js
2018-11-08 19:23:39 +05:30

17 lines
325 B
JavaScript

export const defaultEditorOptions = {
model: null,
readOnly: false,
contextmenu: true,
scrollBeyondLastLine: false,
minimap: {
enabled: false,
},
wordWrap: 'on',
};
export default [
{
readOnly: model => !!model.file.file_lock,
quickSuggestions: model => !(model.language === 'markdown'),
},
];