Forked from christopherstott/import_zsh_history_to_fish.js
Created
May 11, 2017 06:09
-
-
Save chuyeow/cba9784fa18cdc662272bd82672cf084 to your computer and use it in GitHub Desktop.
Import ZSH history to Fish
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
'use strict'; | |
const fs = require('fs'); | |
const expandHomeDir = require('expand-home-dir'); | |
const zshHistoryRaw = fs.readFileSync(expandHomeDir('~/.zsh_history'), 'utf8'); | |
const zshHistoryLines = zshHistoryRaw.split('\n'); | |
const transformLine = line => { | |
try { | |
const semicolonIndex = line.indexOf(';'); | |
const command = line.substring(semicolonIndex + 1); | |
const when = line.substring(0, semicolonIndex).split(':')[1].trim(); | |
return `- cmd: ${command}\n when: ${when}`; | |
} catch (e) { | |
// Probably a continuation of the previous line. | |
// I don't care about these | |
} | |
}; | |
const fishHistory = zshHistoryLines.map(line => transformLine(line)).join('\n'); | |
fs.writeFileSync(expandHomeDir('~/.config/fish/fish_history'), fishHistory, 'utf8'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It works.