0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/nanoc
2018-10-08 18:40:06 +02:00
..
_nanoc Add new 'nanoc' plugin 2012-09-06 19:59:18 +10:00
nanoc.plugin.zsh Add new 'nanoc' plugin 2012-09-06 19:59:18 +10:00
README.md nanoc: add README (#7252) 2018-10-08 18:40:06 +02:00

Nanoc plugin

This plugin adds some aliases and autocompletion for common Nanoc commands.

To use it, add nanoc to the plugins array in your zshrc file:

plugins=(... nanoc)

Aliases

Alias Command Description
n nanoc Main Nanoc command
na nanoc autocompile The autocompile command has been deprecated since Nanoc 3.6. Use guard-nanoc instead.
nco nanoc compile Compile all items of the current site.
nci nanoc create_item Command was deprecated in Nanoc v.3 and completely removed in v.4
ncl nanoc create_layout Command was deprecated in Nanoc v.3 and completely removed in v.4
ncs nanoc create_site Create a new site at the given path. The site will use the filesystem data source.
nd nanoc deploy Deploys the compiled site. The compiled site contents in the output directory will be uploaded to the destination, which is specified using the --target option.
nv nanoc view Start the static web server. Unless specified, the web server will run on port 3000 and listen on all IP addresses.
nw nanoc watch The watch command has been deprecated since Nanoc 3.6. Use guard-nanoc instead.