Mac下使用Wine安装Notepad++

下载:

(链接: https://pan.baidu.com/s/1miOjLXY 密码: 2egg)

安装:

1、安装Wine

参考:http://www.cnblogs.com/EasonJim/p/8016167.html

3、安装Notepad++

wine npp.7.3.Installer.exe

5、设置桌面图标,双击运行

参考:http://www.cnblogs.com/EasonJim/p/7467457.html

vim Notepad++.command
chmod u+x Notepad++.command
#!/bin/bash
test "$?BASH_VERSION" = "0" || eval 'setenv() { export "$1=$2"; }';
  setenv PATH "/Applications/Wine Stable.app/Contents/Resources/start/bin:/Applications/Wine Stable.app/Contents/Resources/wine/bin:$PATH";
nohup wine ~/.wine/drive_c/Program Files (x86)/Notepad++/notepad++.exe >/dev/null 2>&1 &
原文地址:https://www.cnblogs.com/EasonJim/p/8051796.html