Tagged Questions
0
votes
2answers
45 views
How to install vimtrainer?
I'm trying to install vimtrainer.
First I did:
$ svn co https://vimtrainer.svn.sourceforge.net/svnroot/vimtrainer/trunk vimtrainer
$ cd vimtrainer
Then made sure ruby, rubygems, rake and vim with ...
1
vote
2answers
532 views
Building Vim with rbenv and Command-T on OSX
dyld: lazy symbol binding failed: Symbol not found: _rb_encdb_declare
Referenced from: /Users/sa125/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/x86_64-darwin10.8.0/enc/encdb.bundle
Expected in: flat ...
0
votes
1answer
366 views
Can I get vim to correctly indent this Ruby code (Nokogiri)?
The first XML Builder Example for Nokogiri looks like this:
builder = Nokogiri::XML::Builder.new do |xml|
xml.root {
xml.products {
xml.widget {
xml.id_ "10"
...
3
votes
1answer
414 views
Vim */dyn support
What does mean the plus sign before */dyn in the :version command's output, e.g.:
+python/dyn +python3/dyn +ruby/dyn +tcl/dyn
I didn't find any useful documentation on it. When I run :echo ...
5
votes
2answers
883 views
Vim: “brace matching” for languages without braces? (Ruby, Python, etc)
Vim is great at highlighting matching braces. But lately I'm working in Ruby, where method definitions generally start with do and end with end instead of { and }. Similarly, if statements and case ...
1
vote
1answer
24 views
how to define what characters are considered to be part of a tagname in vim?
when I'm using Ctrl-] to jump to a tagname in vim it ignores ! and ? characters which can be used in ruby as parts of identifiers. i.e. when trying to jump to 'empty?' tag it complains about missing ...