atom-path-to-file
a atom package for select path to create file
huangjinlin 349 0 0.1.0 MIT GitHub

atom-path-to-file

a atom package for select path to create file

features

  • select path string,press "Ctrl+Shift+P",press "path-to-file:vue" covert path to vue file

installation

apm install atom-path-to-file

create

# command palette
Ctrl+Shift+P
input "Generate Package"

debug

#open devtool
Ctrl+Shift+I
#reload
Ctrl+Shift+F5/window reload(in command pannel)/Ctrl+R(in devtool)
#clear console
Ctrl+L(in devtool)

publish

# first time
git tag -a v0.0.1 -m "release 0.0.1 version"
git push origin --tags
apm publish minor
# other time
apm publish minor

tip

  • how to active when init remove activationCommands in package.json
"activationCommands": {
  "atom-workspace": "path-to-file:toggle"
},