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