diff --git a/packages/no-fn-tilde/0.1.0/README.md b/packages/no-fn-tilde/0.1.0/README.md new file mode 100644 index 00000000..aae454e8 --- /dev/null +++ b/packages/no-fn-tilde/0.1.0/README.md @@ -0,0 +1,9 @@ +# No FN Tilde + +## English + +I used a ZIYOULANG K68 keyboard for a long time, which does not have a dedicated tilde key. This makes typing uncomfortable, as entering a tilde requires pressing three keys (Fn + Shift + Esc). This package aims to reduce the need to manually type the tilde in Portuguese words ending in ção and ções by automatically inserting it when appropriate. + +## Português Brasileiro + +Usei por um bom tempo um teclado ZIYOULANG K68, o qual não possui uma tecla dedicada para til, o que causa um desconforto, visto que é necessário pressionar 3 teclas para acionar o til (Fn + Shift + Esc). Este pacote visa diminuir a necessidade de acionar o til em palavras terminadas em ção e ções, adicionando-o automaticamente quando apropriado. diff --git a/packages/no-fn-tilde/0.1.0/_manifest.yml b/packages/no-fn-tilde/0.1.0/_manifest.yml new file mode 100644 index 00000000..bda8a2e2 --- /dev/null +++ b/packages/no-fn-tilde/0.1.0/_manifest.yml @@ -0,0 +1,7 @@ +name: "no-fn-tilde" +title: "No FN Tilde" +description: A simple package to help type words with tildes on ANSI keyboards without a dedicated tilde key +homepage: "https://github.com/ArturNTx/espanso-package-hub" +version: 0.1.0 +author: Artur V. Neto +tags: ["pt-br", "portuguese", "ansi", "tilde", "languages"] diff --git a/packages/no-fn-tilde/0.1.0/package.yml b/packages/no-fn-tilde/0.1.0/package.yml new file mode 100644 index 00000000..1b57b205 --- /dev/null +++ b/packages/no-fn-tilde/0.1.0/package.yml @@ -0,0 +1,5 @@ +matches: + - regex: "\\b(?P\\w+)çao\\b" + replace: "{{word}}ção" + - regex: "\\b(?P\\w+)çoes\\b" + replace: "{{word}}ções"