Skip to content

Commit 7efa286

Browse files
committed
Change style
1 parent 418a3c7 commit 7efa286

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/obsidian/util.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -985,9 +985,9 @@ util.get_visual_selection = function(opts)
985985
end
986986

987987
-- 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 })
988+
local is_multibyte_char = util.isMultibyteChar { buffer = 0, row = cerow - 1, start_col = cecol }
989989
if is_multibyte_char then
990-
cecol = is_multibyte_char['finish']
990+
cecol = is_multibyte_char["finish"]
991991
end
992992

993993
---@type string

0 commit comments

Comments
 (0)