11SCVim (> 3.5)
22==============
33
4- A vim plugin for supercollider.
4+ A vim plugin for supercollider.
55
66This is based of the original scvim by Alex Norman (see:
7- < http://www.x37v.info/scvim/ > ).
7+ < http://www.x37v.info/scvim/ > ).
88
9- Features
9+ Features
1010
1111* Syntax Highlighting
1212* A faked REPL via the terminal
@@ -26,10 +26,10 @@ Installation:
2626
2727It is highly recommended to use pathogen
2828(< https://github.com/tpope/vim-pathogen > ) to keep your .vim paths clean. See the
29- supplied helpfile how to setup pathogen if you haven't used it before.
29+ supplied helpfile how to setup pathogen if you haven't used it before.
3030
3131Make sure the folder is named 'scvim' and drop it into your "bundle" folder, e.g.
32- "~ /.vim/bundle/scvim".
32+ "~ /.vim/bundle/scvim".
3333
3434Or just do:
3535`
@@ -73,15 +73,16 @@ Path to the tags file
7373The following variables are available for configuration in your ` .vimrc ` file:
7474
7575* ` g:sclangTerm ` : Command to open a terminal window. Defaults to `"open -a
76- Terminal.app"`.
76+ Terminal.app"` on OSX, and ` "x-terminal-emulator -e $SHELL -ic"` on Linux. On
77+ some Linux systems this value may need to changed.
7778* ` g:sclangPipeApp ` : Absolute path to the plugin ** start_pipe** script. Defaults
7879to ` "~/.vim/bundle/scvim/bin/start_pipe" ` . Change it if you have installed
7980the plugin in other location.
8081* ` g:sclangDispatcher ` : Absolute path to the plugin ** sc_dispatcher** script.
8182Defaults to ` "~/.vim/bundle/scvim/bin/sc_dispatcher" ` . Change it if you
8283have installed the plugin in other location.
8384
84- Example ` .vimrc ` line for debian/ubuntu users:
85+ Example ` .vimrc ` line for gnome-terminal users:
8586
8687 let g:sclangTerm = "gnome-terminal -x $SHELL -ic"
8788
@@ -94,15 +95,15 @@ If for some reason vim can't find the path to the two launch scripts
9495Using it:
9596--------
9697To start open a file with the right extension : e foo.sc(d)
97- Enter ` :SClangStart ` and a terminal should open with a running sclang session.
98+ Enter ` :SClangStart ` and a terminal should open with a running sclang session.
9899
99- See the commands reference for general usage.
100+ See the commands reference for general usage.
100101
101102_ ctags support_ :
102103
103104run ` :SCTags ` from vim or ` SCVim.generateTagsFile() ` from sclang
104105
105- This gives you a couple of things:
106+ This gives you a couple of things:
106107
107108* You can jump to any known class or method
108109* You get tags completion with ctrl-x ctrl-] (use the vim supertab plugin if this is too
0 commit comments