1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-08-17 00:30:26 +03:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Willow
c54e31b523
Merge 8bc8949de7 into 6674fe7587 2024-06-23 11:08:14 +02:00
Willow Barraco
8bc8949de7
autowrap: automatically set autowrap column highlighter
Also the user now can change the value, without duplicating the column.
2024-06-23 11:07:25 +02:00
Maxime Coste
6674fe7587 Merge remote-tracking branch 'stacyharper/elixir-heex' 2024-06-23 11:14:34 +10:00
Willow Barraco
0bb355557e
elixir: detect heex additionaly to leex 2024-06-19 12:45:20 +02:00
3 changed files with 13 additions and 3 deletions

View File

@ -50,7 +50,6 @@ define-command editorconfig-load -params ..1 -docstring "editorconfig-load [file
if (max_line_length && max_line_length != "off") {
print "set window autowrap_column " max_line_length
print "autowrap-enable"
print "add-highlighter window/ column %sh{ echo $((" max_line_length "+1)) } default,bright-black"
}
}
' ;;

View File

@ -8,7 +8,7 @@ hook global BufCreate .*[.](ex|exs) %{
set-option buffer filetype elixir
}
hook global BufCreate .*[.]html[.]l?eex %{
hook global BufCreate .*[.]html[.][lh]?eex %{
set-option buffer filetype eex
}
@ -64,6 +64,7 @@ add-highlighter shared/elixir/single_string region "'" "(?<!\\)(?:\\\\)*'" fill
add-highlighter shared/elixir/comment region '#' '$' fill comment
add-highlighter shared/elixir/leex region -match-capture '~L("""|")' '(?<!\\)(?:\\\\)*("""|")' ref eex
add-highlighter shared/elixir/heex region -match-capture '~H("""|")' '(?<!\\)(?:\\\\)*("""|")' ref eex
add-highlighter shared/elixir/double_string/base default-region fill string
add-highlighter shared/elixir/double_string/interpolation region -recurse \{ \Q#{ \} fill builtin

View File

@ -1,5 +1,5 @@
declare-option -docstring "maximum amount of characters per line, after which a newline character will be inserted" \
int autowrap_column 80
int autowrap_column 0
declare-option -docstring %{
when enabled, paragraph formatting will reformat the whole paragraph in which characters are being inserted
@ -48,3 +48,13 @@ define-command autowrap-enable -docstring "Automatically wrap the lines in which
define-command autowrap-disable -docstring "Disable automatic line wrapping" %{
remove-hooks window autowrap
}
hook global WinSetOption autowrap_column=0 %{
try %{
remove-highlighter window/autowrap_column
}
}
hook global WinSetOption autowrap_column=(?!0).* %{
add-highlighter -override window/autowrap_column column %sh{ echo $((kak_opt_autowrap_column+1)) } default,bright-black
}