🧜♀️
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filterTitle: function(title, reddit) { | |
var reddit = (reddit) ? reddit.toLowerCase() : null; | |
return this.arrayContainsSubstring(this.options.keywords.value, title.toLowerCase(), reddit); | |
}, | |
filterDomain: function(domain, reddit) { | |
var reddit = (reddit) ? reddit.toLowerCase() : null; | |
var domain = (domain) ? domain.toLowerCase() : null; | |
return this.arrayContainsSubstring(this.options.domains.value, domain, reddit); | |
}, | |
filterSubreddit: function(subreddit) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unbind C-b | |
set -g prefix C-w | |
# pane switching | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
# pane creation |