ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Detect Invalid Devangari

by alchemi5t ST3

Sublime plugin to detect invalid devanagari word constructs

Details

Installs

  • Total 213
  • Win 155
  • Mac 35
  • Linux 23
Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8 Oct 7 Oct 6 Oct 5 Oct 4
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Devanagari-validator

Sublime plugin to detect invalid devanagari word constructs.(Highlights invalid words)

It also highlights words with zero width characters, helping in detecting zero width characters.

Character set :-

consonants=["ॿ","ॾ","ॼ","ॻ","क","ख","ग","घ","ङ","च","छ","ज","झ","ञ","ट","ठ","ड","ढ","ण","त","थ","द","ध","न","प","फ","ब","भ","म","य","र","ऱ","ल","ळ","व","श","ष","स","ह"]
    vowels=["ॷ","ॶ","ॵ","ॴ","ॳ","ॲ","अ","आ","इ","ई","उ","ऊ","ऋ","ऍ","ऎ","ए","ऐ","ऑ","ऒ","ओ","औ","ॠ"]
    matras=["ा","ि","ी","ु","ू","ृ","ॅ","ॆ","े","ै","ॉ","ॊ","ो","ौ","ऻ","ऺ","ॄ","ॆ","ॏ","ॗ","ॖ"]
    vowelMod=["ँ","ं","ः"]
    halant=["्"]
    nukta=["़"]

The rules are:-

Rules
    1 Word ::= {Syllable} [Cons-Syllable]
    2 Syllable ::= Cons-Vowel-Syllable | Vowel-Syllable
    3 Vowel-Syllable ::= V [D]
    4 Cons-Vowel-Syllable ::= [Cons-Syllable] Full-Cons [M] [D]
    5 Cons-Syllable ::= [Pure-Cons] [Pure-Cons] Pure-Cons
    6 Pure-Cons ::= Full-Cons H
    7 Full-Cons ::= C [N]

Usage:

Highlights the incorrect words post save or on load(if set) or view.run_command(“detect_invalid_devangari”)