diff --git a/README.md b/README.md index 7e3e175..39565b5 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ hi Folded term=NONE cterm=NONE hi Folded term=underline ``` -4. *lines to ignore*: By default, anyfold uses the `foldignore` option to identify lines to ignore (such as comment lines and preprocessor statements). Vim's default is `foldignore = #`. Lines starting with characters in `foldignore` will get their fold level from surrounding lines. If `anyfold_fold_comments = 1` these lines get their own folds. For instance, in order to ignore C++ style comments starting with `//` and preprocessor statements starting with `#`, set +4. *Lines to ignore*: By default, anyfold uses the `foldignore` option to identify lines to ignore (such as comment lines and preprocessor statements). Vim's default is `foldignore = #`. Lines starting with characters in `foldignore` will get their fold level from surrounding lines. If `anyfold_fold_comments = 1` these lines get their own folds. For instance, in order to ignore C++ style comments starting with `//` and preprocessor statements starting with `#`, set ```vim autocmd Filetype cpp set foldignore=#/