Skip to content

Commit

Permalink
Merge pull request #2 from NStefan002/dev
Browse files Browse the repository at this point in the history
feat: support "`" by default, solves #1
  • Loading branch information
NStefan002 authored Jan 3, 2024
2 parents 82b52b7 + 81c5000 commit ac8fdcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ use({
-- if set to true, the user must manually add keymaps
use_default_keymaps = true,
-- will be ignored if use_default_keymaps is set to false
surround_chars = { "{", "}", "[", "]", "(", ")", "'", '"' },
surround_chars = { "{", "}", "[", "]", "(", ")", "'", '"', "`" },
-- whether to exit visual mode after adding surround
exit_visual_mode = true,
}
Expand Down
2 changes: 1 addition & 1 deletion lua/visual-surround/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Config.get_default_config()
-- if set to true, the user must manually add keymaps
use_default_keymaps = true,
-- will be ignored if use_default_keymaps is set to false
surround_chars = { "{", "}", "[", "]", "(", ")", "'", '"' },
surround_chars = { "{", "}", "[", "]", "(", ")", "'", '"', "`" },
-- whether to exit visual mode after adding surround
exit_visual_mode = true,
}
Expand Down

0 comments on commit ac8fdcc

Please sign in to comment.