##// END OF EJS Templates
Merge pull request #3189 from juhasch/improve-completer...
Merge pull request #3189 from juhasch/improve-completer fix notebook completer redraw on metakey press - set <select> tag to style="width: auto" to fit complete autocomplete string in drop down menu - handle special keys better, so shift, ctrl, pgup, pgdown et al work as expected in the drop down list (i.e. pgup/pgdown/home/end move selection, shift, ctrl, caps lock do not restart the drop down menu)

File last commit:

r8987:c06f654b
r10248:5e33c149 merge
Show More
.travis.yml
14 lines | 347 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
before_install:
- easy_install -q pyzmq
install:
- python setup.py install -q
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi