vi-rs
vi-rs copied to clipboard
Vietnamese Input Method library
Mô tả: Khi ở trong Insert Mode thì tự động bật chế độ gõ Tiếng Việt. Khi quay trở lại Normal mode thì tự động tắt bộ gõ.
# Reproduce ```rust fn main() { let mut result = String::new(); for n in 1..10 { let mut input = Vec::new(); for _ in 0..n { input.push('d'); } vi::telex::transform_buffer(input.iter().cloned(), &mut...
Instead of re-parsing the same word over and over, we can store the word & its transformations in memory. For example: ```rs struct Word { initial_consonant: String, vowel: String, final_consonant:...
Hiện tại có 1 issues trên GõKey từ khi up lên vi-rs bản 0.6.0: - https://github.com/huytd/goxkey/issues/117 Ngoài ra còn có một vài issue khác nhưng a ko chắc có phải...
Hi, I use vi-rs for my [linux input engine][2] with a IBUS framework. But IBus [passes a single char each time a key typed][1]. For every key typed, I should...