1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-11 13:00:41 +03:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Willow
844d499918
Merge 7a8fe7e6ff into 374a7a8c99 2024-06-25 08:02:42 +01:00
Maxime Coste
374a7a8c99 Remove some selection copies in pipe and throw early if read only
Throwing early avoids losing selections in this case.
2024-06-24 21:18:17 +10:00
Willow Barraco
7a8fe7e6ff
editorconfig: allow to disable automatic edition 2024-06-17 12:21:31 +02:00
2 changed files with 20 additions and 8 deletions

View File

@ -4,6 +4,9 @@
# Detection # Detection
# ‾‾‾‾‾‾‾‾‾ # ‾‾‾‾‾‾‾‾‾
declare-option -docstring "disable automatic edition of the buffer (wrap, trailing whitespaces)" \
bool editorconfig_noedit false
hook global BufCreate .*[.](editorconfig) %{ hook global BufCreate .*[.](editorconfig) %{
set-option buffer filetype ini set-option buffer filetype ini
set-option buffer static_words indent_style indent_size tab_width \ set-option buffer static_words indent_style indent_size tab_width \
@ -19,7 +22,7 @@ define-command editorconfig-load -params ..1 -docstring "editorconfig-load [file
case $file in case $file in
/*) # $kak_buffile is a full path that starts with a '/' /*) # $kak_buffile is a full path that starts with a '/'
printf %s\\n "remove-hooks buffer editorconfig-hooks" printf %s\\n "remove-hooks buffer editorconfig-hooks"
editorconfig "$file" | awk -v file="$file" -F= -- ' editorconfig "$file" | awk -v file="$file" -v noedit="$kak_opt_editorconfig_noedit" -F= -- '
$1 == "indent_style" { indent_style = $2 } $1 == "indent_style" { indent_style = $2 }
$1 == "indent_size" { indent_size = $2 == "tab" ? 4 : $2 } $1 == "indent_size" { indent_size = $2 == "tab" ? 4 : $2 }
$1 == "tab_width" { tab_width = $2 } $1 == "tab_width" { tab_width = $2 }
@ -44,13 +47,15 @@ define-command editorconfig-load -params ..1 -docstring "editorconfig-load [file
if (charset == "utf-8-bom") { if (charset == "utf-8-bom") {
print "set-option buffer BOM utf8" print "set-option buffer BOM utf8"
} }
if (trim_trailing_whitespace == "true") { if (trim_trailing_whitespace == "true" && noedit == "false") {
print "hook buffer BufWritePre \"" file "\" -group editorconfig-hooks %{ try %{ execute-keys -draft %{%s\\h+$|\\n+\\z<ret>d} } }" print "hook buffer BufWritePre \"" file "\" -group editorconfig-hooks %{ try %{ execute-keys -draft %{%s\\h+$|\\n+\\z<ret>d} } }"
} }
if (max_line_length && max_line_length != "off") { if (max_line_length && max_line_length != "off") {
print "set window autowrap_column " max_line_length 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" print "add-highlighter window/ column %sh{ echo $((" max_line_length "+1)) } default,bright-black"
if (noedit == "false") {
print "autowrap-enable"
}
} }
} }
' ;; ' ;;

View File

@ -589,13 +589,13 @@ void pipe(Context& context, NormalParams params)
return; return;
Buffer& buffer = context.buffer(); Buffer& buffer = context.buffer();
SelectionList selections = context.selections();
if (replace) if (replace)
{ {
buffer.throw_if_read_only();
ScopedEdition edition(context); ScopedEdition edition(context);
ForwardChangesTracker changes_tracker; ForwardChangesTracker changes_tracker;
size_t timestamp = buffer.timestamp(); size_t timestamp = buffer.timestamp();
Vector<Selection> new_sels; SelectionList selections = context.selections();
for (auto& sel : selections) for (auto& sel : selections)
{ {
const auto beg = changes_tracker.get_new_coord_tolerant(sel.min()); const auto beg = changes_tracker.get_new_coord_tolerant(sel.min());
@ -614,20 +614,27 @@ void pipe(Context& context, NormalParams params)
auto new_end = apply_diff(buffer, beg, in, out); auto new_end = apply_diff(buffer, beg, in, out);
if (new_end != beg) if (new_end != beg)
new_sels.push_back(keep_direction({beg, buffer.char_prev(new_end), std::move(sel.captures())}, sel)); {
auto& min = sel.min();
auto& max = sel.max();
min = beg;
max = buffer.char_prev(new_end);
}
else else
{ {
if (new_end != BufferCoord{}) if (new_end != BufferCoord{})
new_end = buffer.char_prev(new_end); new_end = buffer.char_prev(new_end);
new_sels.push_back({new_end, new_end, std::move(sel.captures())}); sel.set(new_end);
} }
changes_tracker.update(buffer, timestamp); changes_tracker.update(buffer, timestamp);
} }
context.selections_write_only().set(std::move(new_sels), selections.main_index()); selections.force_timestamp(timestamp);
context.selections_write_only() = std::move(selections);
} }
else else
{ {
SelectionList& selections = context.selections();
const auto old_main = selections.main_index(); const auto old_main = selections.main_index();
for (int i = 0; i < selections.size(); ++i) for (int i = 0; i < selections.size(); ++i)
{ {