1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-07-14 16:10:24 +03:00

autowrap: automatically set autowrap column highlighter

Also the user now can change the value, without duplicating the column.
This commit is contained in:
Willow Barraco 2024-06-17 12:59:06 +02:00
parent 6674fe7587
commit 8bc8949de7
No known key found for this signature in database
GPG Key ID: EABA44759877E02A
2 changed files with 11 additions and 2 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

@ -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
}