@@ -1078,17 +1078,14 @@ impl EmitterWriter {
1078
1078
1079
1079
let suggestions = suggestion. splice_lines ( cm. borrow ( ) ) ;
1080
1080
let span_start_pos = cm. lookup_char_pos ( primary_sub. span . lo ) ;
1081
- let span_end_pos = cm. lookup_char_pos ( primary_sub. span . hi ) ;
1082
1081
let line_start = span_start_pos. line ;
1083
1082
draw_col_separator_no_space ( & mut buffer, 1 , max_line_num_len + 1 ) ;
1084
1083
let mut row_num = 2 ;
1085
- for complete in suggestions. iter ( ) . take ( MAX_SUGGESTIONS ) {
1084
+ for ( & ( ref complete, show_underline) , ref sub) in suggestions
1085
+ . iter ( ) . zip ( primary_sub. substitutions . iter ( ) ) . take ( MAX_SUGGESTIONS )
1086
+ {
1086
1087
let mut line_pos = 0 ;
1087
1088
// Only show underline if there's a single suggestion and it is a single line
1088
- let show_underline = complete. lines ( ) . count ( ) == 1
1089
- && span_start_pos. line == span_end_pos. line
1090
- && primary_sub. substitutions . len ( ) == 1 ;
1091
-
1092
1089
let mut lines = complete. lines ( ) ;
1093
1090
for line in lines. by_ref ( ) . take ( MAX_HIGHLIGHT_LINES ) {
1094
1091
// Print the span column to avoid confusion
@@ -1099,11 +1096,13 @@ impl EmitterWriter {
1099
1096
// print the suggestion
1100
1097
draw_col_separator ( & mut buffer, row_num, max_line_num_len + 1 ) ;
1101
1098
buffer. append ( row_num, line, Style :: NoStyle ) ;
1099
+ line_pos += 1 ;
1102
1100
row_num += 1 ;
1101
+ // Only show an underline in the suggestions if the suggestion is not the
1102
+ // entirety of the code being shown and the displayed code is not multiline.
1103
1103
if show_underline {
1104
1104
draw_col_separator ( & mut buffer, row_num, max_line_num_len + 1 ) ;
1105
-
1106
- let sub_len = primary_sub. substitutions [ 0 ] . trim_right ( ) . len ( ) ;
1105
+ let sub_len = sub. trim_right ( ) . len ( ) ;
1107
1106
let underline_start = span_start_pos. col . 0 ;
1108
1107
let underline_end = span_start_pos. col . 0 + sub_len;
1109
1108
for p in underline_start..underline_end {
@@ -1114,19 +1113,19 @@ impl EmitterWriter {
1114
1113
}
1115
1114
row_num += 1 ;
1116
1115
}
1117
- line_pos += 1 ;
1118
1116
}
1119
1117
1120
1118
// if we elided some lines, add an ellipsis
1121
1119
if let Some ( _) = lines. next ( ) {
1122
- buffer. append ( row_num, "..." , Style :: NoStyle ) ;
1123
- } else if !show_underline && suggestions . len ( ) <= MAX_SUGGESTIONS {
1120
+ buffer. puts ( row_num, max_line_num_len - 1 , "..." , Style :: LineNumber ) ;
1121
+ } else if !show_underline {
1124
1122
draw_col_separator_no_space ( & mut buffer, row_num, max_line_num_len + 1 ) ;
1123
+ row_num += 1 ;
1125
1124
}
1126
1125
}
1127
1126
if suggestions. len ( ) > MAX_SUGGESTIONS {
1128
1127
let msg = format ! ( "and {} other candidates" , suggestions. len( ) - MAX_SUGGESTIONS ) ;
1129
- buffer. append ( row_num, & msg, Style :: NoStyle ) ;
1128
+ buffer. puts ( row_num, 0 , & msg, Style :: NoStyle ) ;
1130
1129
}
1131
1130
emit_to_destination ( & buffer. render ( ) , level, & mut self . dst ) ?;
1132
1131
}
0 commit comments