diff options
author | Alan Pearce | 2017-12-21 15:26:21 +0100 |
---|---|---|
committer | Alan Pearce | 2017-12-21 15:26:21 +0100 |
commit | 69853d93879fe1d700dca8c8d9edc209d7b86229 (patch) | |
tree | 4f0942460c4121695865e79442b4f2212df327b0 /emacs/.emacs.d | |
parent | dcc169f7d3d291e863dd133ef4f133f40af0481c (diff) | |
download | nixfiles-69853d93879fe1d700dca8c8d9edc209d7b86229.tar.lz nixfiles-69853d93879fe1d700dca8c8d9edc209d7b86229.tar.zst nixfiles-69853d93879fe1d700dca8c8d9edc209d7b86229.zip |
Emacs: Fix typo in alias
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r-- | emacs/.emacs.d/main.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index cbd2d3e9..a9f48c5f 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -510,7 +510,7 @@ ((string-equal (projectile-project-type) "node-yarn") (cmd-to-echo "yarn" (concat "remove " package))) (t (cmd-to-echo "npm" (concat "remove " package)))))) - (defalias 'npm-remote #'yarn-remove) + (defalias 'npm-remove #'yarn-remove) (defun yarn-run (cmd) (interactive (list |