Skip to content

Instantly share code, notes, and snippets.

@ItsOnlyBinary
Created November 12, 2019 15:29
Show Gist options
  • Save ItsOnlyBinary/fb9b66c7e43a28fc9bc76d1320ca33ef to your computer and use it in GitHub Desktop.
Save ItsOnlyBinary/fb9b66c7e43a28fc9bc76d1320ca33ef to your computer and use it in GitHub Desktop.
Always show the nicklist when switching buffers
<script>
kiwi.state.$watch('ui.active_buffer', function(){
if (kiwi.state.getActiveBuffer().isChannel()) {
kiwi.emit('sidebar.show', 'nicklist');
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment