mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-19 23:45:27 +02:00
6 lines
97 B
Go
6 lines
97 B
Go
package common
|
|
|
|
func CursorToCharacterIndex(cursor uint32) uint32 {
|
|
return max(1, cursor) - 1
|
|
}
|