Skip to content

Commit

Permalink
2022-10-31 02:51:13
Browse files Browse the repository at this point in the history
  • Loading branch information
taupiqueur committed Oct 31, 2022
1 parent 088824d commit 09a4b15
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions .config/helix/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,40 +115,35 @@ C = 'wonly'
# Insert date (2006-01-02 Mon 15:04).
C-d = ':insert-output date "+%F %a" | tr -d "\\n"'

[keys.insert.C-space]
'#' = ['collapse_selection', ':insert-output printf 0', 'move_char_left', 'yank_joined_to_clipboard', ':new', 'replace_selections_with_clipboard', ':pipe awk "{ print NR - 1 }"', 'split_selection_on_newline', 'yank', ':buffer-close!', 'replace_with_yanked', 'move_char_right']

[keys.insert.';']
# Insert various characters.
# Heavily based on qwerty-lafayette.
# https://qwerty-lafayette.org
# See also “Vim digraphs” for defaults.
# https://vimhelp.org/digraph.txt.html#digraphs-default
'#' = ['collapse_selection', ':insert-output printf 0', 'move_char_left', 'yank_joined_to_clipboard', ':new', 'replace_selections_with_clipboard', ':pipe awk "{ print NR - 1 }"', 'split_selection_on_newline', 'yank', ':buffer-close!', 'replace_with_yanked', 'move_char_right']
';' = ['collapse_selection', ':insert-output printf ";"']
'^' = ['collapse_selection', ':insert-output printf ê']
w = ['collapse_selection', ':insert-output printf é']
W = ['collapse_selection', ':insert-output printf É']
e = ['collapse_selection', ':insert-output printf è']
E = ['collapse_selection', ':insert-output printf È']
y = ['collapse_selection', ':insert-output printf û']
Y = ['collapse_selection', ':insert-output printf Û']
u = ['collapse_selection', ':insert-output printf ù']
U = ['collapse_selection', ':insert-output printf Ù']
U = ['collapse_selection', ':insert-output printf û']
i = ['collapse_selection', ':insert-output printf î']
I = ['collapse_selection', ':insert-output printf Î']
o = ['collapse_selection', ':insert-output printf ô']
O = ['collapse_selection', ':insert-output printf Ô']
'[' = ['collapse_selection', ':insert-output printf ê']
']' = ['collapse_selection', ':insert-output printf ë']
'{' = ['collapse_selection', ':insert-output printf «']
'}' = ['collapse_selection', ':insert-output printf »']
'[' = ['collapse_selection', ':insert-output printf «']
']' = ['collapse_selection', ':insert-output printf »']
a = ['collapse_selection', ':insert-output printf à']
A = ['collapse_selection', ':insert-output printf À']
s = ['collapse_selection', ':insert-output printf â']
S = ['collapse_selection', ':insert-output printf Â']
':' = ['collapse_selection', ':insert-output printf ë']
c = ['collapse_selection', ':insert-output printf ç']
C = ['collapse_selection', ':insert-output printf Ç']
z = ['collapse_selection', ':insert-output printf æ']
Z = ['collapse_selection', ':insert-output printf Æ']
x = ['collapse_selection', ':insert-output printf œ']
X = ['collapse_selection', ':insert-output printf Œ']
'.' = ['collapse_selection', ':insert-output printf …']
space = ['collapse_selection', ':insert-output printf ’']
'<' = ['collapse_selection', ':insert-output printf “']
Expand Down

0 comments on commit 09a4b15

Please sign in to comment.