@@ -87,7 +87,6 @@ function getMarkDecorations({
87
87
88
88
Object . entries ( marks || { } ) . forEach ( ( [ key , { start, end } ] ) => {
89
89
const [ hatType , letter ] = key . split ( "." ) as [ keyof typeof classesMap , string ] ;
90
- console . log ( "π" , key , start , end ) ;
91
90
92
91
const markLineStart = start . line
93
92
@@ -116,7 +115,6 @@ function getMarkDecorations({
116
115
alwaysWrap : true ,
117
116
}
118
117
119
- console . log ( "ππ" , decorationItem )
120
118
121
119
decorations . push ( decorationItem ) ;
122
120
} ) ;
@@ -176,7 +174,6 @@ function getIdeFlashDecorations({
176
174
} ,
177
175
alwaysWrap : true ,
178
176
} ;
179
- console . log ( "π₯π₯" , decorationItem ) ;
180
177
decorations . push ( decorationItem ) ;
181
178
}
182
179
@@ -190,7 +187,6 @@ function getIdeFlashDecorations({
190
187
} ,
191
188
alwaysWrap : true ,
192
189
}
193
- console . log ( "π₯π₯" , decorationItem )
194
190
decorations . push ( decorationItem ) ;
195
191
} else {
196
192
console . warn ( `Unknown range type "${ type } ". Skipping this flash.` ) ;
@@ -222,7 +218,6 @@ function getSlections(
222
218
alwaysWrap : true ,
223
219
}
224
220
decorations . push ( decorationItem )
225
- console . log ( "π¦" , decorationItem )
226
221
} )
227
222
228
223
return decorations
0 commit comments