Skip to content

Commit

Permalink
Add English scheme (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
subins2000 authored Nov 14, 2023
1 parent 5435cdc commit e137e83
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions schemes/en/en.scheme
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/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

0 comments on commit e137e83

Please sign in to comment.