Re: sh vs bash syntax coloring

2011-08-01 Thread Simon Nicolussi
quired by POSIX. The /bin/sh in Solaris comes to mind. If you know you're using a compatible shell, you can specify: let g:is_posix = 1 -- Simon Nicolussi, http://homepage.uibk.ac.at/~csag9583/ pgpNA0iLYJ7Rq.pgp Description: PGP signature

Re: Consuming 'filetype' stuff from .vimrc

2011-08-26 Thread Simon Nicolussi
Russell Bateman wrote: > For example, if it's a Java file (.java), I'd like to make it 120 > columns wide, but leave it maybe 80 for all others. autocmd FileType java set columns=120 -- Simon Nicolussi, http://homepage.uibk.ac.at/~csag9583/ pgp6WU6e78VWd.pgp Description: PGP signature

Re: mixed syntax highlighting

2012-01-21 Thread Simon Nicolussi
Chris Lott wrote: > Is it possible to have a mixed syntax highlighting? Yes. Just set both of them as your filetype, separated by a dot: set filetype=c.doxygen -- Simon Nicolussi, http://www.sinic.name/ pgpSjzl7XHnQQ.pgp Description: PGP signature

Re: NERDTree: 1 file(s) could not be loaded into the NERD tree

2012-02-10 Thread Simon Nicolussi
Do you have any sockets in your home directory, maybe? NERD tree can't load these. The urxvt terminal daemon, for example, creates a socket at $HOME/.rxvt-unicode- by default. -- Simon Nicolussi, http://www.sinic.name/ pgp7ZKM3XWGii.pgp Description: PGP signature

Re: How to go back after *

2012-04-07 Thread Simon Nicolussi
Dotan Cohen wrote: > I was not in Insert mode in the last location so `. will not take me > there either. `. takes you back to the position where the last change was made, whereas `` takes you back to the position before the latest jump. -- Simon Nicolussi, http://www.sini