aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/awk.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftplugin/awk.vim')
-rw-r--r--vim/ftplugin/awk.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/vim/ftplugin/awk.vim b/vim/ftplugin/awk.vim
index 9627941d..663ba810 100644
--- a/vim/ftplugin/awk.vim
+++ b/vim/ftplugin/awk.vim
@@ -8,3 +8,7 @@ let b:did_ftplugin = 1
setlocal comments=:#
setlocal formatoptions+=or
let b:undo_ftplugin = 'setlocal comments< formatoptions<'
+
+" Specify ERE flavor for regex_escape.vim
+let b:regex_escape_flavor = 'ere'
+let b:undo_ftplugin .= '|unlet b:regex_escape_flavor'