summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index 6051edaf..39b3380a 100644
--- a/install.sh
+++ b/install.sh
@@ -12,7 +12,7 @@ OpenBSD() {
 }
 
 Linux() {
-	sudo pacman -Sy --needed bc ctags gdb openbssh $packages
+	sudo pacman -Sy --needed bc ctags gdb openssh vi $packages
 }
 
 installMacPorts() {
@@ -31,7 +31,7 @@ installMacPorts() {
 Darwin() {
 	[ -d /opt/local ] || installMacPorts
 	sudo /opt/local/bin/port selfupdate
-	sudo /opt/local/bin/port -N install git mandoc pkgconfig $packages
+	sudo /opt/local/bin/port -N install git mandoc nvi pkgconfig $packages
 	sudo mkdir -p /opt/local/etc/select/man
 	printf 'bin/man\nshare/man/man1/man.1\nshare/man/man1/man.1.gz\n' \
 		| sudo tee /opt/local/etc/select/man/base >/dev/null
c/commit/bin/order.y?id=0566f40843136ae245e3eec886efb30df91275a1&follow=1'>Support unary + in orderJune McEnroe 2020-12-30Add postfix $ operator to bitJune McEnroe 2020-12-29Add make lexerJune McEnroe 2020-12-29Clean up C lexerJune McEnroe 2020-12-29Clean up hilex code somewhatJune McEnroe 2020-12-29Match lex/yacc %% %{ %} lines as MacroJune McEnroe 2020-12-29Match top-level C definitions as IdentifierTagJune McEnroe 2020-12-29Match C type declarations as IdentifierTagJune McEnroe 2020-12-29Match function-like macro definitions as IdentifierTagJune McEnroe 2020-12-29Reconfigure C macro start conditionsJune McEnroe 2020-12-29Document HTML class namesJune McEnroe 2020-12-29Rename Tag class to IdentifierTagJune McEnroe 2020-12-29Change HTML class from hi to hilexJune McEnroe 2020-12-29Add hilex HTML outputJune McEnroe