-
Notifications
You must be signed in to change notification settings - Fork 194
Add new "no-fn-tilde" package #230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # No FN Tilde | ||
|
|
||
| ## US 🇺🇸 | ||
|
|
||
| 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. | ||
|
|
||
| ## PT-BR 🇺🇸 | ||
|
|
||
| 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), esse pacote visa diminuir a necessidade de acionar o til em palavras terminadas em ção e ções, auto adicionando o til automaticamente. | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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/nofntilde" | ||
| version: 0.1.0 | ||
| author: Artur V. Neto | ||
| tags: ["pt-br", "ansi", "tilde"] | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For compatibility with https://hub.espanso.org/portuguese-accents, would it be appropriate to add |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| matches: | ||
| - regex: "\\b(?P<word>\\w*)çao\\b" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For Regex efficiency, I would suggest replacing the " |
||
| replace: "{{word}}ção" | ||
| - regex: "\\b(?P<word>\\w*)çoes\\b" | ||
| replace: "{{word}}ções" | ||
Uh oh!
There was an error while loading. Please reload this page.