This file contains hidden or 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
#!/bin/sh | |
### CONFIG ### | |
changeIdColumn="2" | |
commitIdColumn="3" | |
nodeTypes="@○◆•" | |
delimiterPattern='((?:^[^ ] +)|[^[:alnum:]:.])+' | |
defaultLogArgs="" | |
copyStdinToClipboard="pbcopy" | |
### END CONFIG ### | |
# need to export this so all subshells created by fzf are also going to use sh and the correct PATH env var |
This file contains hidden or 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
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="ic-resizeable" attributes="width height"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
box-sizing: border-box; | |
width: 300px; |
This file contains hidden or 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
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="boiler-gui"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 352px; | |
height: 332px; |