monaco-editor version: 0.10.0
Browser: Safari 11
OS: macOS
Steps or JS usage snippet reproducing the issue:
I'm constructing a monaco diff editor using roughly the following code. With the minimap setting's enabled property set to false, a minimap is still shown in the editor. Anything I can try?
const editor = monaco.editor.createDiffEditor(
document.getElementById("container"),
{
lineNumbers: "off",
minimap: {
enabled: false
},
scrollbar: {
horizontalScrollbarSize: 5,
verticalScrollbarSize: 5
},
scrollBeyondLastLine: true,
wordWrap: "off",
fontFamily: "SFMono",
fontSize: 12,
theme: "vs-dark",
renderSideBySide: false,
readOnly: true,
}
);
editor.setModel({
original: monaco.editor.createModel(file1Value, undefined, monaco.Uri.parse(file1)),
modified: monaco.editor.createModel(file2Value, undefined, monaco.Uri.parse(file2))
});

Upon further investigation, this is not a minimap, but instead a "diff overview ruler". It's working as intended.
@IMcD23 did you find a way to disable or edit this diff ruler somehow?
Most helpful comment
@IMcD23 did you find a way to disable or edit this diff ruler somehow?