Skip to content

Instantly share code, notes, and snippets.

@chancez
Created August 25, 2015 19:53
Show Gist options
  • Save chancez/a1e8a3df1f268bfb2b09 to your computer and use it in GitHub Desktop.
Save chancez/a1e8a3df1f268bfb2b09 to your computer and use it in GitHub Desktop.
sbl() {
local files
files=$(cat /Users/chance/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/FileHistory.json |
jq -r '.[] | .closed[], .opened[] | .filename' |
while read line; do
[ -f "${line/\~/$HOME}" ] && echo "$line"
done | fzf -d -m -q "$*" -1) && subl ${files//\~/$HOME}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment