We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 418a3c7 commit 7efa286Copy full SHA for 7efa286
lua/obsidian/util.lua
@@ -985,9 +985,9 @@ util.get_visual_selection = function(opts)
985
end
986
987
-- Check if last byte is part of a multibyte character & adjust end index if so
988
- local is_multibyte_char = util.isMultibyteChar({ buffer = 0, row = cerow - 1, start_col = cecol })
+ local is_multibyte_char = util.isMultibyteChar { buffer = 0, row = cerow - 1, start_col = cecol }
989
if is_multibyte_char then
990
- cecol = is_multibyte_char['finish']
+ cecol = is_multibyte_char["finish"]
991
992
993
---@type string
0 commit comments