Spyke
neovim·Neovimbymarian

Search for old greek patterns in file

Hi people,

I use vim to write and edit text files written in common ASCII-Languages mixed with some words written in old greek letters (α, Σ, η, ...). I want to find a way to search for every word written in old greek letters, so I can use / nN to cycle through them. Any ideas how to do this in the most elegant way?

I tried the regex pattern [α-ω]+ but I kinda already expected that this won't work...

View original on discuss.tchncs.de

EDIT: does /[α-ω]\+ work?

Are the words wholly comprised of given characters? Could you supply an excerpt?

I gave it a shot and pattern [/w]*[α-ω][/w]* seemed to work.

3

You reached the end

Search for old greek patterns in file | Spyke