We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60ea58b commit 1d7c779Copy full SHA for 1d7c779
1 file changed
src/components/CodeManager.vue
@@ -410,6 +410,8 @@ export default {
410
} )
411
return
412
}
413
+
414
+ // Refer to gcc-docs/gcc/Diagnostic-Message-Formatting-Options.html
415
let ranges = []
416
let i = details.indexOf( '[{' )
417
let j = -1
@@ -442,10 +444,10 @@ export default {
442
444
text: r.message,
443
445
type: r.kind === 'note' ? 'info' : r.kind
446
- }))
447
+ } ) )
448
449
this.$refs.editor.execCommand( 'goToNextError' )
- }
450
+ },
451
452
//
453
// onCourseworkXXX
0 commit comments