Skip to content

Commit cc8893b

Browse files
committed
fix: add prefix to goto input placeholder
1 parent 00c5575 commit cc8893b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

res/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
fileListParent.style.maxWidth = 'initial'
66

77
const gotoInput = document.createElement('input')
8-
gotoInput.placeholder = 'line:col'
8+
gotoInput.placeholder = ':line:col'
99
gotoInput.addEventListener('input', (e) => {
1010
const v = e.target.value
1111
const [line = 0, col = 0] = v

0 commit comments

Comments
 (0)