From b48f0155ae020b6fc69047461f9a76f5be3c3ec5 Mon Sep 17 00:00:00 2001 From: Roland Siegbert Date: Sat, 29 Apr 2023 09:24:57 +0200 Subject: [PATCH] Add surround backticks to README.md Extending the vim-surround example with backticks as it is used a lot. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 205a3ec..0fdeb4a 100644 --- a/README.md +++ b/README.md @@ -151,6 +151,7 @@ Here's an example config that implements many of the features from vim-surround: exmap surround_wiki surround [[ ]] exmap surround_double_quotes surround " " exmap surround_single_quotes surround ' ' +exmap surround_backticks surround ` ` exmap surround_brackets surround ( ) exmap surround_square_brackets surround [ ] exmap surround_curly_brackets surround { } @@ -161,6 +162,7 @@ nunmap s vunmap s map s" :surround_double_quotes map s' :surround_single_quotes +map s` :surround_backticks map sb :surround_brackets map s( :surround_brackets map s) :surround_brackets