1

Windows 10, Emacs 25.1, Package helm

Here content of my Helm-mini:

step1

As you can see there are buffer with extensions .log and buffers with extenstions .txt If I want to show only buffer with extensions .txt

I use pattern: .txt

Here result: step1

Question: Is it possible to show all buffers with extenstions .log and extensions .txt ?

1 Answer 1

2

As you can see from the mode line, you can type C-h m for help. It says you can use regular expression to match the buffer name, so this pattern might work for you:

^.*.txt\|.*.log 

or more accurately

^.*\.\(txt\|log\) 
2
  • 1
    It's very long expression. It's very difficult for me to remeber it. It's will be good if expression is more simple. Something like this: .log|.txt Commented Nov 23, 2017 at 8:16
  • 1
    @Alex you can ask the maintainer of helm for help by filing an issue on github github.com/emacs-helm/helm Commented Nov 23, 2017 at 9:54

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.