-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:varnamproject/schemes
- Loading branch information
Showing
3 changed files
with
44 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
git lfs fetch | ||
zip -r source-with-lfs.zip . -x '.git' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env ruby | ||
# encoding: utf-8 | ||
|
||
## | ||
# Copyright (C) 2023 Subin Siby | ||
# | ||
# This is part of Varnam. See LICENSE for the license | ||
# | ||
# This was created for olam.in to implement autocomplete | ||
# for English dictionary via Varnam API. | ||
# | ||
# But by using the VST from this scheme, | ||
# Varnam can be used to show English word | ||
# suggestions while typing English. | ||
## | ||
|
||
language_code "en" | ||
identifier "en" | ||
display_name "English" | ||
author "Subin Siby" | ||
stable true | ||
|
||
|
||
("a"..."z").to_a.each do |letter| | ||
consonants letter => letter | ||
end | ||
|
||
# To show autocomplete for phrases that has spaces | ||
consonants " " => " " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters