Skip to content

Commit 444c3bb

Browse files
committed
chore(definition) no one cares about the column
1 parent 603557d commit 444c3bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/main/atom/commands/commands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function registerCommands() {
6464
simpleSelectionView_1.default({
6565
items: definitions,
6666
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 ";
6868
},
6969
filterKey: 'filePath',
7070
confirmed: function (definition) {

lib/main/atom/commands/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export function registerCommands() {
7777
viewForItem: (item) => {
7878
return `
7979
<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>
8181
`;
8282
},
8383
filterKey: 'filePath',

0 commit comments

Comments
 (0)