blob: 479598ddb3d9fca2a99218bd4fb4a0f36224287e (
plain)
1
2
3
4
5
6
7
8
|
import { useTabsStore } from '@/stores/useTabsStore'
export function useCursorPosition() {
const cursorLine = useTabsStore((s) => s.cursorLine)
const cursorCol = useTabsStore((s) => s.cursorCol)
return { cursorLine, cursorCol }
}
|