1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

setup initial cursor position for the editor to 0:0 (row:column)

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2021-03-24 17:24:44 +02:00
parent 34712dd51f
commit f7749369e3

View File

@ -32,6 +32,7 @@ const defaultProps: Partial<Props> = {
useWorker: false,
onBlur: noop,
onFocus: noop,
cursorPos: { row: 0, column: 0 },
};
@observer