aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMax Christian Pohle2015-09-09 01:51:34 +0200
committerMax Christian Pohle2015-09-09 01:51:34 +0200
commit2572ae93322fc8cde33beb54e92290d1831836df (patch)
tree2ba31849db40d4e4d17e02e38bfb20658dfbd645 /doc
parentf76eebbfdbfc709367475ba23b6523bd4f1598cd (diff)
downloadvim-2572ae93322fc8cde33beb54e92290d1831836df.tar.bz2
vim-2572ae93322fc8cde33beb54e92290d1831836df.zip
fixed bracket error and set default file format to utf-8
I also added some more notes to the INSTALL file, nothing special though
Diffstat (limited to 'doc')
-rw-r--r--doc/INSTALL11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/INSTALL b/doc/INSTALL
index 1d664d3..14fb286 100644
--- a/doc/INSTALL
+++ b/doc/INSTALL
@@ -28,6 +28,13 @@ python2 ./install.py --clang-completer
28 28
29 29
30# step 7) 30# step 7)
31# add gvim functionality to thunar, so that sendto can be used to open a file in an existing vim instance (as a tab in this case) 31# create an entry in file managers right click menu 'open with' allowing you to open the file in a vim tab
32mkdir -p .local/share/Thunar/sendto/ 32mkdir -p .local/share/Thunar/sendto/
33cp ~/.vim/gvim.desktop ~/.local/share/Thunar/sendto/ 33cp ~/.vim/gvim-tab.desktop ~/.local/share/Thunar/sendto/
34
35# step 8)
36# add gvim functionality to thunar, so that sendto can be used to open a file in an existing vim instance (as a tab in this case)
37cp ~/.vim/gvim-tab.desktop ~/.local/share/applications/
38update-desktop-database ~/.local/share/applications/
39
40
..