File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ function registerCommands() {
64
64
simpleSelectionView_1 . default ( {
65
65
items : definitions ,
66
66
viewForItem : function ( item ) {
67
- return "\n <span>" + item . filePath + "</span>\n <div class=\"pull-right\">" + item . position . line + ":" + item . position . col + "</div>\n " ;
67
+ return "\n <span>" + item . filePath + "</span>\n <div class=\"pull-right\">line: " + item . position . line + "</div>\n " ;
68
68
} ,
69
69
filterKey : 'filePath' ,
70
70
confirmed : function ( definition ) {
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ export function registerCommands() {
77
77
viewForItem : ( item ) => {
78
78
return `
79
79
<span>${ item . filePath } </span>
80
- <div class="pull-right">${ item . position . line } : ${ item . position . col } </div>
80
+ <div class="pull-right">line: ${ item . position . line } </div>
81
81
` ;
82
82
} ,
83
83
filterKey : 'filePath' ,
You can’t perform that action at this time.
0 commit comments