We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
editor
1 parent cedb458 commit a9d2971Copy full SHA for a9d2971
CHANGELOG.md
@@ -1,6 +1,7 @@
1
# Changelog
2
3
### master
4
+- fix a problem where we try to bind `editor` from `@open-editor`
5
6
### v3.0.0, Nov 01, 2017
7
- enable extensibility via search engines (@vasconcelloslf)
scripts/helpers.sh
@@ -35,7 +35,12 @@ display_message() {
35
}
36
37
stored_engine_vars() {
38
- tmux show-options -g | grep -i "^@open" | cut -d '-' -f2 | cut -d ' ' -f1 | xargs
+ tmux show-options -g |
39
+ grep -i "^@open-" |
40
+ grep -vi "^@open-editor" |
41
+ cut -d '-' -f2 |
42
+ cut -d ' ' -f1 |
43
+ xargs
44
45
46
get_engine() {
0 commit comments