summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Whitt2017-05-04 11:56:19 -0400
committerAlex Whitt2017-05-04 11:56:19 -0400
commit861058ab2a99d9cf98ca7277eb1e97b6296cd08a (patch)
tree062917305e4414d2c8b9fa49d109f427d631be1d
parent50861a48131ba0ef0a42b8dcea7efff1d6994304 (diff)
downloadaur-861058ab2a99d9cf98ca7277eb1e97b6296cd08a.tar.gz
Install script and sha256sums
-rw-r--r--emacs-auto-complete.install21
1 files changed, 21 insertions, 0 deletions
diff --git a/emacs-auto-complete.install b/emacs-auto-complete.install
new file mode 100644
index 000000000000..e24a6d7017bb
--- /dev/null
+++ b/emacs-auto-complete.install
@@ -0,0 +1,21 @@
+post_install () {
+
+cat << EOF
+
+==> Add this code to your .emacs file to use the mode:
+
+(require 'auto-complete)
+(ac-config-default)
+
+==> Or, with use-package:
+
+(use-package auto-complete
+ :config
+ (ac-config-default))
+
+EOF
+}
+
+post_upgrade () {
+ post_install $1
+}