summarylogtreecommitdiffstats
path: root/nvim-r.install
diff options
context:
space:
mode:
authorRhinoceros2016-03-25 13:58:23 +1100
committerRhinoceros2016-03-25 13:58:23 +1100
commite0c9ad6b006213b3cd189690daac2966b9c13547 (patch)
tree45984799dcdcec9207d453c61a30275a275d2b66 /nvim-r.install
parentfab7247b4b8d75a1515340af180c3af65894307c (diff)
downloadaur-e0c9ad6b006213b3cd189690daac2966b9c13547.tar.gz
Update to 0.9.3-3
* Add install file (which updates vim help and warns about nvimcom installation)
Diffstat (limited to 'nvim-r.install')
-rw-r--r--nvim-r.install15
1 files changed, 15 insertions, 0 deletions
diff --git a/nvim-r.install b/nvim-r.install
new file mode 100644
index 000000000000..6d4fecd3ecf4
--- /dev/null
+++ b/nvim-r.install
@@ -0,0 +1,15 @@
+post_install() {
+ echo -n 'Updating vim help tags...'
+ /usr/bin/vim --noplugins -u NONE -U NONE \
+ --cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
+ echo 'done.'
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+ echo 'You may also want to delete ~/R/*/*/nvimcom'
+}