An Emacs mode for editing and running Microsoft PowerShell code.
Emacs Lisp
Switch branches/tags
Nothing to show
Latest commit 3c09e1b Nov 2, 2016 @basbossinkdivverence basbossinkdivverence committed with jschaf Replace newline characters in PowerShell functions with semicolons.
This fixes some problems with the startup of the PowerShell shell. This
should also improve the portability since newlines are not the same
everywhere.

README.md

PowerShell Mode

PowerShell Mode is an Emacs major mode for editing and running Microsoft PowerShell files.

Installation

With MELPA

First, add the package repository:

(add-to-list 'package-archives
             '("melpa" . "https://melpa.org/packages/") t)

Then install powershell.el:

M-x package-install RET powershell RET

El-Get

powershell.el is included in the El-Get repository

Install powershell.el:

M-x el-get-install RET powershell.el RET

Manually

Download powershell.el and place the download directory on your load-path like so:

(add-to-list 'load-path "~/.emacs.d/path/to/powershell")

History

I combined powershell.el and powershell-mode.el (last updated October 2012). I used the name powershell.el with the permission of the creator, Dino Chiesa. Since powershell.el was licensed with the new BSD license I combined the two files using the more restrictive license, the GPL. I also cleaned up the documentation and reorganized some of the code.