import { useTabsStore } from '@/stores/useTabsStore' export function useCursorPosition() { const cursorLine = useTabsStore((s) => s.cursorLine) const cursorCol = useTabsStore((s) => s.cursorCol) return { cursorLine, cursorCol } }