summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2014-01-22 13:39:06 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2014-01-22 13:39:06 +0100
commit6209019149ba50b05ce0bed5fa77cf90d33c9f71 (patch)
tree6d528d4e3d4ee64e18f4478b8f7fcf8dc4a38a25 /doc
parent70ee3f809a49af54df9a848aff8856fa2f4af0d8 (diff)
* doc/Home.mdpp: update.
Diffstat (limited to 'doc')
-rw-r--r--doc/Home.mdpp24
1 files changed, 16 insertions, 8 deletions
diff --git a/doc/Home.mdpp b/doc/Home.mdpp
index 2897252c..b3844c96 100644
--- a/doc/Home.mdpp
+++ b/doc/Home.mdpp
@@ -758,24 +758,32 @@ Example:
I want to show all my buffer that are in emacs-lisp mode:
- Pattern: lisp
+ Pattern: *lisp
will show all emacs-lisp and lisp related buffers.
-Now I want to limit these buffers to the one that match `any`
+Now I want to limit these buffers to the one that start with `helm`
- Pattern: lisp any
+ Pattern: *lisp ^helm
-Now I want to limit these buffers to the one that match `any` but end with `foo`:
+Now I want to limit these buffers to the one that match `helm` but end with `foo`:
- Pattern: lisp any foo
+ Pattern: *lisp helm foo
-Note the space between any and foo.
+Note the space between `helm` and `foo`.
-I want to match buffers that match `any` but not limited to lisp
+Now match buffers that are in `emacs-lisp-mode` and `sh-mode` or `shell-mode`:
+
+ Pattern: *lisp,sh
+
+You can use also negation to match all but `lisp` and `info` buffers:
+
+ Pattern: *!lisp,!info
+
+I want to match buffers that match `helm` but not limited to lisp
buffers:
- Pattern: any
+ Pattern: helm
## Different colors for buffers