Does monaco editor support delta decoration in minimap?

537 Views Asked by At

I have simple wholeline delta decorations applied. It works as expected in the editor but not in the minimap. Is there way to have the decorations applied to minimap as well?

var decorations = editor.deltaDecorations([], [
{ range: new monaco.Range(3,1,5,1000), 
  options: { isWholeLine: true, linesDecorationsClassName: 'myLineDecoration', className: 'myLineDecoration' }
}]);
1

There are 1 best solutions below

0
On

Yes, According to monaco-editor API documentation:

add minimap:{position:1} to the options

var decorations = editor.deltaDecorations([], [ { range: new monaco.Range(3,1,5,1000), options: { 
isWholeLine: true, 
linesDecorationsClassName: 'myLineDecoration', 
className: 'myLineDecoration',
minimap:{ position:1 } 
}}, ]);